diff --git a/Account_SQLite/.config/dotnet-tools.json b/Account_SQLite/.config/dotnet-tools.json deleted file mode 100644 index 517f9b32..00000000 --- a/Account_SQLite/.config/dotnet-tools.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": {} -} \ No newline at end of file diff --git a/Account_SQLite/Account_SQLite.csproj b/Account_SQLite/Account_SQLite.csproj deleted file mode 100644 index 385c9385..00000000 --- a/Account_SQLite/Account_SQLite.csproj +++ /dev/null @@ -1,18 +0,0 @@ - - - - net6.0 - enable - enable - true - - - - - - - - - - - diff --git a/Account_SQLite/App.razor b/Account_SQLite/App.razor deleted file mode 100644 index b0cd24ae..00000000 --- a/Account_SQLite/App.razor +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Not found - -

Sorry, there's nothing at this address.

-
-
-
\ No newline at end of file diff --git a/Account_SQLite/Data/Account.cs b/Account_SQLite/Data/Account.cs deleted file mode 100644 index 022ad4a7..00000000 --- a/Account_SQLite/Data/Account.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Account_SQLite.Data -{ - public class Account - { - public int Id { get; set; } - public string Name { get; set; } = string.Empty; - } -} \ No newline at end of file diff --git a/Account_SQLite/Data/AccountContext.cs b/Account_SQLite/Data/AccountContext.cs deleted file mode 100644 index 3dbedf9e..00000000 --- a/Account_SQLite/Data/AccountContext.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Microsoft.EntityFrameworkCore; - -namespace Account_SQLite.Data -{ - public class AccountContext : DbContext - { - public AccountContext(DbContextOptions opts): base(opts) - { - - } - - public DbSet Accounts { get; set; } = null!; - } -} \ No newline at end of file diff --git a/Account_SQLite/Pages/Index.razor b/Account_SQLite/Pages/Index.razor deleted file mode 100644 index 53d0b3d9..00000000 --- a/Account_SQLite/Pages/Index.razor +++ /dev/null @@ -1,73 +0,0 @@ -@page "/" -@using SqliteWasmHelper -@using Account_SQLite.Data -@using Microsoft.EntityFrameworkCore -@inject ISqliteWasmDbContextFactory Factory - -Account_SQLite - -

Accounts

-

Type some account:

-  - - -@if (@busy) -{ -
💾 Scanning a floppy disk...
-} -else -{ - if (accounts.Length < 1) - { -

I see no-account.

- } - else - { -
    - @foreach (var account in accounts) - { -
  • @account.Name
  • - } -
- } -} - -Download backup: - - -@code { - private bool busy; - private BackupLink bl = null!; - private string newAccount = string.Empty; - private Account[] accounts = Array.Empty(); - - protected override async Task OnInitializedAsync() - { - await RefreshUiAsync(); - await base.OnInitializedAsync(); - } - - private async Task RefreshUiAsync() - { - using var ctx = await Factory.CreateDbContextAsync(); - busy = true; - accounts = await ctx.Accounts.ToArrayAsync(); - await bl.RefreshAsync(); - busy = false; - StateHasChanged(); - } - - private async Task AddAccountAsync() - { - if (!string.IsNullOrWhiteSpace(newAccount)) - { - using var ctx = await Factory.CreateDbContextAsync(); - ctx.Accounts.Add(new Account { Name = newAccount }); - busy = true; - await ctx.SaveChangesAsync(); - newAccount = string.Empty; - busy = false; - await RefreshUiAsync(); - } - } -} \ No newline at end of file diff --git a/Account_SQLite/Pages/_Host.razor b/Account_SQLite/Pages/_Host.razor deleted file mode 100644 index 9a98150c..00000000 --- a/Account_SQLite/Pages/_Host.razor +++ /dev/null @@ -1,2 +0,0 @@ -@page "/" -@using Account_SQLite.Pages diff --git a/Account_SQLite/Pages/_Layout.razor b/Account_SQLite/Pages/_Layout.razor deleted file mode 100644 index 92e0e8b9..00000000 --- a/Account_SQLite/Pages/_Layout.razor +++ /dev/null @@ -1,2 +0,0 @@ -@using Microsoft.AspNetCore.Components.Web -@using Account_SQLite.Pages \ No newline at end of file diff --git a/Account_SQLite/Program.cs b/Account_SQLite/Program.cs deleted file mode 100644 index eb9579e5..00000000 --- a/Account_SQLite/Program.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Account_SQLite; -using Account_SQLite.Data; -using Microsoft.AspNetCore.Components.Web; -using Microsoft.AspNetCore.Components.WebAssembly.Hosting; -using Microsoft.EntityFrameworkCore; -using SqliteWasmHelper; - -var builder = WebAssemblyHostBuilder.CreateDefault(args); -builder.RootComponents.Add("#app"); -builder.RootComponents.Add("head::after"); - -builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); -builder.Services.AddSqliteWasmDbContextFactory( - opts => opts.UseSqlite("Data Source=blazor_todo.sqlite3")); - -await builder.Build().RunAsync(); - -var app = builder.Build(); \ No newline at end of file diff --git a/Account_SQLite/Properties/launchSettings.json b/Account_SQLite/Properties/launchSettings.json deleted file mode 100644 index 8aa86f74..00000000 --- a/Account_SQLite/Properties/launchSettings.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:16190", - "sslPort": 44329 - } - }, - "profiles": { - "Account_SQLite": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", - "applicationUrl": "https://localhost:7055;http://localhost:5280", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - } - } -} diff --git a/Account_SQLite/Shared/MainLayout.razor b/Account_SQLite/Shared/MainLayout.razor deleted file mode 100644 index 004d486f..00000000 --- a/Account_SQLite/Shared/MainLayout.razor +++ /dev/null @@ -1,17 +0,0 @@ -@inherits LayoutComponentBase - -
- - -
-
- About -
- -
- @Body -
-
-
\ No newline at end of file diff --git a/Account_SQLite/Shared/MainLayout.razor.css b/Account_SQLite/Shared/MainLayout.razor.css deleted file mode 100644 index 0900fc80..00000000 --- a/Account_SQLite/Shared/MainLayout.razor.css +++ /dev/null @@ -1,81 +0,0 @@ -.page { - position: relative; - display: flex; - flex-direction: column; -} - -main { - flex: 1; -} - -.sidebar { - background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); -} - -.top-row { - background-color: #f7f7f7; - border-bottom: 1px solid #d6d5d5; - justify-content: flex-end; - height: 3.5rem; - display: flex; - align-items: center; -} - - .top-row ::deep a, .top-row ::deep .btn-link { - white-space: nowrap; - margin-left: 1.5rem; - text-decoration: none; - } - - .top-row ::deep a:hover, .top-row ::deep .btn-link:hover { - text-decoration: underline; - } - - .top-row ::deep a:first-child { - overflow: hidden; - text-overflow: ellipsis; - } - -@media (max-width: 640.98px) { - .top-row:not(.auth) { - display: none; - } - - .top-row.auth { - justify-content: space-between; - } - - .top-row ::deep a, .top-row ::deep .btn-link { - margin-left: 0; - } -} - -@media (min-width: 641px) { - .page { - flex-direction: row; - } - - .sidebar { - width: 250px; - height: 100vh; - position: sticky; - top: 0; - } - - .top-row { - position: sticky; - top: 0; - z-index: 1; - } - - .top-row.auth ::deep a:first-child { - flex: 1; - text-align: right; - width: 0; - } - - .top-row, article { - padding-left: 2rem !important; - padding-right: 1.5rem !important; - } -} \ No newline at end of file diff --git a/Account_SQLite/Shared/NavMenu.razor b/Account_SQLite/Shared/NavMenu.razor deleted file mode 100644 index 78ff0971..00000000 --- a/Account_SQLite/Shared/NavMenu.razor +++ /dev/null @@ -1,39 +0,0 @@ - - -
- -
- -@code { - private bool collapseNavMenu = true; - - private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null; - - private void ToggleNavMenu() - { - collapseNavMenu = !collapseNavMenu; - } -} \ No newline at end of file diff --git a/Account_SQLite/Shared/NavMenu.razor.css b/Account_SQLite/Shared/NavMenu.razor.css deleted file mode 100644 index 59359268..00000000 --- a/Account_SQLite/Shared/NavMenu.razor.css +++ /dev/null @@ -1,62 +0,0 @@ -.navbar-toggler { - background-color: rgba(255, 255, 255, 0.1); -} - -.top-row { - height: 3.5rem; - background-color: rgba(0,0,0,0.4); -} - -.navbar-brand { - font-size: 1.1rem; -} - -.oi { - width: 2rem; - font-size: 1.1rem; - vertical-align: text-top; - top: -2px; -} - -.nav-item { - font-size: 0.9rem; - padding-bottom: 0.5rem; -} - - .nav-item:first-of-type { - padding-top: 1rem; - } - - .nav-item:last-of-type { - padding-bottom: 1rem; - } - - .nav-item ::deep a { - color: #d7d7d7; - border-radius: 4px; - height: 3rem; - display: flex; - align-items: center; - line-height: 3rem; - } - -.nav-item ::deep a.active { - background-color: rgba(255,255,255,0.25); - color: white; -} - -.nav-item ::deep a:hover { - background-color: rgba(255,255,255,0.1); - color: white; -} - -@media (min-width: 641px) { - .navbar-toggler { - display: none; - } - - .collapse { - /* Never collapse the sidebar for wide screens */ - display: block; - } -} \ No newline at end of file diff --git a/Account_SQLite/_Imports.razor b/Account_SQLite/_Imports.razor deleted file mode 100644 index cc91ad66..00000000 --- a/Account_SQLite/_Imports.razor +++ /dev/null @@ -1,10 +0,0 @@ -@using System.Net.Http -@using System.Net.Http.Json -@using Microsoft.AspNetCore.Components.Forms -@using Microsoft.AspNetCore.Components.Routing -@using Microsoft.AspNetCore.Components.Web -@using Microsoft.AspNetCore.Components.Web.Virtualization -@using Microsoft.AspNetCore.Components.WebAssembly.Http -@using Microsoft.JSInterop -@using Account_SQLite -@using Account_SQLite.Shared diff --git a/Account_SQLite/appsettings.Development.json b/Account_SQLite/appsettings.Development.json deleted file mode 100644 index f042c671..00000000 --- a/Account_SQLite/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "DetailedErrors": true, - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/Account_SQLite/appsettings.json b/Account_SQLite/appsettings.json deleted file mode 100644 index 4d566948..00000000 --- a/Account_SQLite/appsettings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*" -} diff --git a/Account_SQLite/bin/Debug/net6.0/Account_SQLite 2.dll b/Account_SQLite/bin/Debug/net6.0/Account_SQLite 2.dll deleted file mode 100644 index 62037181..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Account_SQLite 2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Account_SQLite 2.pdb b/Account_SQLite/bin/Debug/net6.0/Account_SQLite 2.pdb deleted file mode 100644 index 625c3d0c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Account_SQLite 2.pdb and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.dll b/Account_SQLite/bin/Debug/net6.0/Account_SQLite.dll deleted file mode 100644 index 1fa0ca5b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.pdb b/Account_SQLite/bin/Debug/net6.0/Account_SQLite.pdb deleted file mode 100644 index 0c8ad345..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.pdb and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime 2.json b/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime 2.json deleted file mode 100644 index 094e628a..00000000 --- a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime 2.json +++ /dev/null @@ -1 +0,0 @@ -{"ContentRoots":["/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/","/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/","/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/"],"Root":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"browserCache.js"},"Patterns":null},"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"SqliteWasmHelper":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"browserCache.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Account_SQLite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Account_SQLite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime.json b/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime.json deleted file mode 100644 index 00a7c748..00000000 --- a/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime.json +++ /dev/null @@ -1 +0,0 @@ -{"ContentRoots":["/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/","/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/","/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/","/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/","/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/"],"Root":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"browserCache.js"},"Patterns":null},"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"SqliteWasmHelper":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"browserCache.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Radzen.Blazor":{"Children":{"css":{"Children":{"dark-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/dark-base.css"},"Patterns":null},"dark.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/dark.css"},"Patterns":null},"default-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/default-base.css"},"Patterns":null},"default.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/default.css"},"Patterns":null},"humanistic-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/humanistic-base.css"},"Patterns":null},"humanistic.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/humanistic.css"},"Patterns":null},"software-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/software-base.css"},"Patterns":null},"software.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/software.css"},"Patterns":null},"standard-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/standard-base.css"},"Patterns":null},"standard.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/standard.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"MaterialIcons-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/MaterialIcons-Regular.woff"},"Patterns":null},"roboto-v15-latin-300.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/roboto-v15-latin-300.woff"},"Patterns":null},"roboto-v15-latin-700.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/roboto-v15-latin-700.woff"},"Patterns":null},"roboto-v15-latin-regular.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/roboto-v15-latin-regular.woff"},"Patterns":null},"SourceSansPro-Black.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Black.woff"},"Patterns":null},"SourceSansPro-BlackIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-BlackIt.woff"},"Patterns":null},"SourceSansPro-Bold.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Bold.woff"},"Patterns":null},"SourceSansPro-BoldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-BoldIt.woff"},"Patterns":null},"SourceSansPro-ExtraLight.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-ExtraLight.woff"},"Patterns":null},"SourceSansPro-ExtraLightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-ExtraLightIt.woff"},"Patterns":null},"SourceSansPro-It.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-It.woff"},"Patterns":null},"SourceSansPro-Light.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Light.woff"},"Patterns":null},"SourceSansPro-LightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-LightIt.woff"},"Patterns":null},"SourceSansPro-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Regular.woff"},"Patterns":null},"SourceSansPro-Semibold.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Semibold.woff"},"Patterns":null},"SourceSansPro-SemiboldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-SemiboldIt.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"Radzen.Blazor.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Radzen.Blazor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Account_SQLite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"Account_SQLite.styles.css"},"Patterns":null},"_framework":{"Children":{"Microsoft.AspNetCore.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll"},"Patterns":null},"Microsoft.Data.Sqlite.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Data.Sqlite.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Abstractions.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.Relational.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Relational.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.Sqlite.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Sqlite.dll"},"Patterns":null},"Microsoft.Extensions.Caching.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Caching.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Memory.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.DependencyModel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyModel.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll"},"Patterns":null},"Microsoft.Extensions.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.dll"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Options.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Options.dll"},"Patterns":null},"Microsoft.Extensions.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll"},"Patterns":null},"Microsoft.JSInterop.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.dll"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll"},"Patterns":null},"Radzen.Blazor.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Radzen.Blazor.dll"},"Patterns":null},"SQLite.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLite.Net.dll"},"Patterns":null},"SQLitePCLRaw.batteries_v2.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.batteries_v2.dll"},"Patterns":null},"SQLitePCLRaw.core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.core.dll"},"Patterns":null},"SQLitePCLRaw.provider.e_sqlite3.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.provider.e_sqlite3.dll"},"Patterns":null},"SqliteWasmHelper.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SqliteWasmHelper.dll"},"Patterns":null},"System.IO.Pipelines.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipelines.dll"},"Patterns":null},"System.Linq.Dynamic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Dynamic.Core.dll"},"Patterns":null},"e_sqlite3.a":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/e_sqlite3.a"},"Patterns":null},"Microsoft.CSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.CSharp.dll"},"Patterns":null},"Microsoft.VisualBasic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll"},"Patterns":null},"Microsoft.VisualBasic.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.dll"},"Patterns":null},"Microsoft.Win32.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Primitives.dll"},"Patterns":null},"Microsoft.Win32.Registry.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Registry.dll"},"Patterns":null},"System.AppContext.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.AppContext.dll"},"Patterns":null},"System.Buffers.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Buffers.dll"},"Patterns":null},"System.Collections.Concurrent.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Concurrent.dll"},"Patterns":null},"System.Collections.Immutable.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Immutable.dll"},"Patterns":null},"System.Collections.NonGeneric.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.NonGeneric.dll"},"Patterns":null},"System.Collections.Specialized.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Specialized.dll"},"Patterns":null},"System.Collections.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.dll"},"Patterns":null},"System.ComponentModel.Annotations.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Annotations.dll"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll"},"Patterns":null},"System.ComponentModel.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Primitives.dll"},"Patterns":null},"System.ComponentModel.TypeConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll"},"Patterns":null},"System.ComponentModel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.dll"},"Patterns":null},"System.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Configuration.dll"},"Patterns":null},"System.Console.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Console.dll"},"Patterns":null},"System.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Core.dll"},"Patterns":null},"System.Data.Common.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.Common.dll"},"Patterns":null},"System.Data.DataSetExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.DataSetExtensions.dll"},"Patterns":null},"System.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.dll"},"Patterns":null},"System.Diagnostics.Contracts.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Contracts.dll"},"Patterns":null},"System.Diagnostics.Debug.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Debug.dll"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll"},"Patterns":null},"System.Diagnostics.Process.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Process.dll"},"Patterns":null},"System.Diagnostics.StackTrace.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.StackTrace.dll"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll"},"Patterns":null},"System.Diagnostics.Tools.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tools.dll"},"Patterns":null},"System.Diagnostics.TraceSource.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TraceSource.dll"},"Patterns":null},"System.Diagnostics.Tracing.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tracing.dll"},"Patterns":null},"System.Drawing.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.Primitives.dll"},"Patterns":null},"System.Drawing.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.dll"},"Patterns":null},"System.Dynamic.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Dynamic.Runtime.dll"},"Patterns":null},"System.Formats.Asn1.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Formats.Asn1.dll"},"Patterns":null},"System.Globalization.Calendars.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Calendars.dll"},"Patterns":null},"System.Globalization.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Extensions.dll"},"Patterns":null},"System.Globalization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.dll"},"Patterns":null},"System.IO.Compression.Brotli.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.Brotli.dll"},"Patterns":null},"System.IO.Compression.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.FileSystem.dll"},"Patterns":null},"System.IO.Compression.ZipFile.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.ZipFile.dll"},"Patterns":null},"System.IO.Compression.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.dll"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll"},"Patterns":null},"System.IO.FileSystem.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll"},"Patterns":null},"System.IO.FileSystem.Watcher.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll"},"Patterns":null},"System.IO.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.dll"},"Patterns":null},"System.IO.IsolatedStorage.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.IsolatedStorage.dll"},"Patterns":null},"System.IO.MemoryMappedFiles.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll"},"Patterns":null},"System.IO.Pipes.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll"},"Patterns":null},"System.IO.Pipes.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.dll"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll"},"Patterns":null},"System.IO.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.dll"},"Patterns":null},"System.Linq.Expressions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Expressions.dll"},"Patterns":null},"System.Linq.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Parallel.dll"},"Patterns":null},"System.Linq.Queryable.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Queryable.dll"},"Patterns":null},"System.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.dll"},"Patterns":null},"System.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Memory.dll"},"Patterns":null},"System.Net.Http.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.Json.dll"},"Patterns":null},"System.Net.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.dll"},"Patterns":null},"System.Net.HttpListener.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.HttpListener.dll"},"Patterns":null},"System.Net.Mail.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Mail.dll"},"Patterns":null},"System.Net.NameResolution.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NameResolution.dll"},"Patterns":null},"System.Net.NetworkInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NetworkInformation.dll"},"Patterns":null},"System.Net.Ping.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Ping.dll"},"Patterns":null},"System.Net.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Primitives.dll"},"Patterns":null},"System.Net.Quic.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Quic.dll"},"Patterns":null},"System.Net.Requests.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Requests.dll"},"Patterns":null},"System.Net.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Security.dll"},"Patterns":null},"System.Net.ServicePoint.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.ServicePoint.dll"},"Patterns":null},"System.Net.Sockets.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Sockets.dll"},"Patterns":null},"System.Net.WebClient.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebClient.dll"},"Patterns":null},"System.Net.WebHeaderCollection.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebHeaderCollection.dll"},"Patterns":null},"System.Net.WebProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebProxy.dll"},"Patterns":null},"System.Net.WebSockets.Client.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.Client.dll"},"Patterns":null},"System.Net.WebSockets.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.dll"},"Patterns":null},"System.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.dll"},"Patterns":null},"System.Numerics.Vectors.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.Vectors.dll"},"Patterns":null},"System.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.dll"},"Patterns":null},"System.ObjectModel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ObjectModel.dll"},"Patterns":null},"System.Private.DataContractSerialization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.DataContractSerialization.dll"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll"},"Patterns":null},"System.Private.Uri.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Uri.dll"},"Patterns":null},"System.Private.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.Linq.dll"},"Patterns":null},"System.Private.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.dll"},"Patterns":null},"System.Reflection.DispatchProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.DispatchProxy.dll"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll"},"Patterns":null},"System.Reflection.Emit.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.dll"},"Patterns":null},"System.Reflection.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Extensions.dll"},"Patterns":null},"System.Reflection.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Metadata.dll"},"Patterns":null},"System.Reflection.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Primitives.dll"},"Patterns":null},"System.Reflection.TypeExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.TypeExtensions.dll"},"Patterns":null},"System.Reflection.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.dll"},"Patterns":null},"System.Resources.Reader.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Reader.dll"},"Patterns":null},"System.Resources.ResourceManager.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.ResourceManager.dll"},"Patterns":null},"System.Resources.Writer.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Writer.dll"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll"},"Patterns":null},"System.Runtime.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Extensions.dll"},"Patterns":null},"System.Runtime.Handles.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Handles.dll"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll"},"Patterns":null},"System.Runtime.InteropServices.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.dll"},"Patterns":null},"System.Runtime.Intrinsics.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Intrinsics.dll"},"Patterns":null},"System.Runtime.Loader.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Loader.dll"},"Patterns":null},"System.Runtime.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Numerics.dll"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll"},"Patterns":null},"System.Runtime.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Json.dll"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll"},"Patterns":null},"System.Runtime.Serialization.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll"},"Patterns":null},"System.Runtime.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.dll"},"Patterns":null},"System.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.dll"},"Patterns":null},"System.Security.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.AccessControl.dll"},"Patterns":null},"System.Security.Claims.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Claims.dll"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll"},"Patterns":null},"System.Security.Cryptography.Cng.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Cng.dll"},"Patterns":null},"System.Security.Cryptography.Csp.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Csp.dll"},"Patterns":null},"System.Security.Cryptography.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll"},"Patterns":null},"System.Security.Cryptography.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll"},"Patterns":null},"System.Security.Principal.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.Windows.dll"},"Patterns":null},"System.Security.Principal.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.dll"},"Patterns":null},"System.Security.SecureString.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.SecureString.dll"},"Patterns":null},"System.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.dll"},"Patterns":null},"System.ServiceModel.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceModel.Web.dll"},"Patterns":null},"System.ServiceProcess.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceProcess.dll"},"Patterns":null},"System.Text.Encoding.CodePages.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.CodePages.dll"},"Patterns":null},"System.Text.Encoding.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.Extensions.dll"},"Patterns":null},"System.Text.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.dll"},"Patterns":null},"System.Text.Encodings.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encodings.Web.dll"},"Patterns":null},"System.Text.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Json.dll"},"Patterns":null},"System.Text.RegularExpressions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.RegularExpressions.dll"},"Patterns":null},"System.Threading.Channels.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Channels.dll"},"Patterns":null},"System.Threading.Overlapped.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Overlapped.dll"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll"},"Patterns":null},"System.Threading.Tasks.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll"},"Patterns":null},"System.Threading.Tasks.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll"},"Patterns":null},"System.Threading.Tasks.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.dll"},"Patterns":null},"System.Threading.Thread.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Thread.dll"},"Patterns":null},"System.Threading.ThreadPool.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.ThreadPool.dll"},"Patterns":null},"System.Threading.Timer.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Timer.dll"},"Patterns":null},"System.Threading.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.dll"},"Patterns":null},"System.Transactions.Local.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.Local.dll"},"Patterns":null},"System.Transactions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.dll"},"Patterns":null},"System.ValueTuple.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ValueTuple.dll"},"Patterns":null},"System.Web.HttpUtility.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.HttpUtility.dll"},"Patterns":null},"System.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.dll"},"Patterns":null},"System.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Windows.dll"},"Patterns":null},"System.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Linq.dll"},"Patterns":null},"System.Xml.ReaderWriter.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.ReaderWriter.dll"},"Patterns":null},"System.Xml.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Serialization.dll"},"Patterns":null},"System.Xml.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XDocument.dll"},"Patterns":null},"System.Xml.XPath.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.XDocument.dll"},"Patterns":null},"System.Xml.XPath.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.dll"},"Patterns":null},"System.Xml.XmlDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlDocument.dll"},"Patterns":null},"System.Xml.XmlSerializer.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlSerializer.dll"},"Patterns":null},"System.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.dll"},"Patterns":null},"System.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.dll"},"Patterns":null},"WindowsBase.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/WindowsBase.dll"},"Patterns":null},"mscorlib.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/mscorlib.dll"},"Patterns":null},"netstandard.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/netstandard.dll"},"Patterns":null},"System.Private.CoreLib.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.CoreLib.dll"},"Patterns":null},"dotnet.timezones.blat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.timezones.blat"},"Patterns":null},"icudt.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt.dat"},"Patterns":null},"icudt_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_CJK.dat"},"Patterns":null},"icudt_EFIGS.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_EFIGS.dat"},"Patterns":null},"icudt_no_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_no_CJK.dat"},"Patterns":null},"dotnet.wasm":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.wasm"},"Patterns":null},"dotnet..0qqpqpio55.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet..0qqpqpio55.js"},"Patterns":null},"Account_SQLite.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.dll"},"Patterns":null},"Account_SQLite.pdb":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.pdb"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll.gz"},"Patterns":null},"Microsoft.Data.Sqlite.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Data.Sqlite.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Abstractions.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.Relational.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Relational.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.Sqlite.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Sqlite.dll.gz"},"Patterns":null},"Microsoft.Extensions.Caching.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Caching.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Memory.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyModel.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Options.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Options.dll.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll.gz"},"Patterns":null},"Microsoft.JSInterop.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.dll.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll.gz"},"Patterns":null},"Radzen.Blazor.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Radzen.Blazor.dll.gz"},"Patterns":null},"SQLite.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLite.Net.dll.gz"},"Patterns":null},"SQLitePCLRaw.batteries_v2.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.batteries_v2.dll.gz"},"Patterns":null},"SQLitePCLRaw.core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.core.dll.gz"},"Patterns":null},"SQLitePCLRaw.provider.e_sqlite3.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.provider.e_sqlite3.dll.gz"},"Patterns":null},"SqliteWasmHelper.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SqliteWasmHelper.dll.gz"},"Patterns":null},"System.IO.Pipelines.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipelines.dll.gz"},"Patterns":null},"System.Linq.Dynamic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Dynamic.Core.dll.gz"},"Patterns":null},"e_sqlite3.a.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/e_sqlite3.a.gz"},"Patterns":null},"Microsoft.CSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.CSharp.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.dll.gz"},"Patterns":null},"Microsoft.Win32.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Primitives.dll.gz"},"Patterns":null},"Microsoft.Win32.Registry.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Registry.dll.gz"},"Patterns":null},"System.AppContext.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.AppContext.dll.gz"},"Patterns":null},"System.Buffers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Buffers.dll.gz"},"Patterns":null},"System.Collections.Concurrent.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Concurrent.dll.gz"},"Patterns":null},"System.Collections.Immutable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Immutable.dll.gz"},"Patterns":null},"System.Collections.NonGeneric.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.NonGeneric.dll.gz"},"Patterns":null},"System.Collections.Specialized.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Specialized.dll.gz"},"Patterns":null},"System.Collections.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.dll.gz"},"Patterns":null},"System.ComponentModel.Annotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Annotations.dll.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll.gz"},"Patterns":null},"System.ComponentModel.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Primitives.dll.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll.gz"},"Patterns":null},"System.ComponentModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.dll.gz"},"Patterns":null},"System.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Configuration.dll.gz"},"Patterns":null},"System.Console.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Console.dll.gz"},"Patterns":null},"System.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Core.dll.gz"},"Patterns":null},"System.Data.Common.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.Common.dll.gz"},"Patterns":null},"System.Data.DataSetExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.DataSetExtensions.dll.gz"},"Patterns":null},"System.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.dll.gz"},"Patterns":null},"System.Diagnostics.Contracts.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Contracts.dll.gz"},"Patterns":null},"System.Diagnostics.Debug.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Debug.dll.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll.gz"},"Patterns":null},"System.Diagnostics.Process.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Process.dll.gz"},"Patterns":null},"System.Diagnostics.StackTrace.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.StackTrace.dll.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll.gz"},"Patterns":null},"System.Diagnostics.Tools.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tools.dll.gz"},"Patterns":null},"System.Diagnostics.TraceSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TraceSource.dll.gz"},"Patterns":null},"System.Diagnostics.Tracing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tracing.dll.gz"},"Patterns":null},"System.Drawing.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.Primitives.dll.gz"},"Patterns":null},"System.Drawing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.dll.gz"},"Patterns":null},"System.Dynamic.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Dynamic.Runtime.dll.gz"},"Patterns":null},"System.Formats.Asn1.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Formats.Asn1.dll.gz"},"Patterns":null},"System.Globalization.Calendars.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Calendars.dll.gz"},"Patterns":null},"System.Globalization.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Extensions.dll.gz"},"Patterns":null},"System.Globalization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.dll.gz"},"Patterns":null},"System.IO.Compression.Brotli.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.Brotli.dll.gz"},"Patterns":null},"System.IO.Compression.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.FileSystem.dll.gz"},"Patterns":null},"System.IO.Compression.ZipFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.ZipFile.dll.gz"},"Patterns":null},"System.IO.Compression.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.dll.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll.gz"},"Patterns":null},"System.IO.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.dll.gz"},"Patterns":null},"System.IO.IsolatedStorage.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.IsolatedStorage.dll.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll.gz"},"Patterns":null},"System.IO.Pipes.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.dll.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll.gz"},"Patterns":null},"System.IO.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.dll.gz"},"Patterns":null},"System.Linq.Expressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Expressions.dll.gz"},"Patterns":null},"System.Linq.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Parallel.dll.gz"},"Patterns":null},"System.Linq.Queryable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Queryable.dll.gz"},"Patterns":null},"System.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.dll.gz"},"Patterns":null},"System.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Memory.dll.gz"},"Patterns":null},"System.Net.Http.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.Json.dll.gz"},"Patterns":null},"System.Net.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.dll.gz"},"Patterns":null},"System.Net.HttpListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.HttpListener.dll.gz"},"Patterns":null},"System.Net.Mail.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Mail.dll.gz"},"Patterns":null},"System.Net.NameResolution.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NameResolution.dll.gz"},"Patterns":null},"System.Net.NetworkInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NetworkInformation.dll.gz"},"Patterns":null},"System.Net.Ping.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Ping.dll.gz"},"Patterns":null},"System.Net.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Primitives.dll.gz"},"Patterns":null},"System.Net.Quic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Quic.dll.gz"},"Patterns":null},"System.Net.Requests.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Requests.dll.gz"},"Patterns":null},"System.Net.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Security.dll.gz"},"Patterns":null},"System.Net.ServicePoint.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.ServicePoint.dll.gz"},"Patterns":null},"System.Net.Sockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Sockets.dll.gz"},"Patterns":null},"System.Net.WebClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebClient.dll.gz"},"Patterns":null},"System.Net.WebHeaderCollection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebHeaderCollection.dll.gz"},"Patterns":null},"System.Net.WebProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebProxy.dll.gz"},"Patterns":null},"System.Net.WebSockets.Client.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.Client.dll.gz"},"Patterns":null},"System.Net.WebSockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.dll.gz"},"Patterns":null},"System.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.dll.gz"},"Patterns":null},"System.Numerics.Vectors.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.Vectors.dll.gz"},"Patterns":null},"System.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.dll.gz"},"Patterns":null},"System.ObjectModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ObjectModel.dll.gz"},"Patterns":null},"System.Private.DataContractSerialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.DataContractSerialization.dll.gz"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz"},"Patterns":null},"System.Private.Uri.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Uri.dll.gz"},"Patterns":null},"System.Private.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.Linq.dll.gz"},"Patterns":null},"System.Private.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.dll.gz"},"Patterns":null},"System.Reflection.DispatchProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.DispatchProxy.dll.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll.gz"},"Patterns":null},"System.Reflection.Emit.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.dll.gz"},"Patterns":null},"System.Reflection.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Extensions.dll.gz"},"Patterns":null},"System.Reflection.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Metadata.dll.gz"},"Patterns":null},"System.Reflection.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Primitives.dll.gz"},"Patterns":null},"System.Reflection.TypeExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.TypeExtensions.dll.gz"},"Patterns":null},"System.Reflection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.dll.gz"},"Patterns":null},"System.Resources.Reader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Reader.dll.gz"},"Patterns":null},"System.Resources.ResourceManager.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.ResourceManager.dll.gz"},"Patterns":null},"System.Resources.Writer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Writer.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll.gz"},"Patterns":null},"System.Runtime.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Extensions.dll.gz"},"Patterns":null},"System.Runtime.Handles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Handles.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.dll.gz"},"Patterns":null},"System.Runtime.Intrinsics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Intrinsics.dll.gz"},"Patterns":null},"System.Runtime.Loader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Loader.dll.gz"},"Patterns":null},"System.Runtime.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Numerics.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Json.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll.gz"},"Patterns":null},"System.Runtime.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.dll.gz"},"Patterns":null},"System.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.dll.gz"},"Patterns":null},"System.Security.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.AccessControl.dll.gz"},"Patterns":null},"System.Security.Claims.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Claims.dll.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Cng.dll.gz"},"Patterns":null},"System.Security.Cryptography.Csp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Csp.dll.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll.gz"},"Patterns":null},"System.Security.Principal.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.Windows.dll.gz"},"Patterns":null},"System.Security.Principal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.dll.gz"},"Patterns":null},"System.Security.SecureString.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.SecureString.dll.gz"},"Patterns":null},"System.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.dll.gz"},"Patterns":null},"System.ServiceModel.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceModel.Web.dll.gz"},"Patterns":null},"System.ServiceProcess.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceProcess.dll.gz"},"Patterns":null},"System.Text.Encoding.CodePages.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.CodePages.dll.gz"},"Patterns":null},"System.Text.Encoding.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.Extensions.dll.gz"},"Patterns":null},"System.Text.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.dll.gz"},"Patterns":null},"System.Text.Encodings.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encodings.Web.dll.gz"},"Patterns":null},"System.Text.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Json.dll.gz"},"Patterns":null},"System.Text.RegularExpressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.RegularExpressions.dll.gz"},"Patterns":null},"System.Threading.Channels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Channels.dll.gz"},"Patterns":null},"System.Threading.Overlapped.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Overlapped.dll.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll.gz"},"Patterns":null},"System.Threading.Tasks.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.dll.gz"},"Patterns":null},"System.Threading.Thread.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Thread.dll.gz"},"Patterns":null},"System.Threading.ThreadPool.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.ThreadPool.dll.gz"},"Patterns":null},"System.Threading.Timer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Timer.dll.gz"},"Patterns":null},"System.Threading.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.dll.gz"},"Patterns":null},"System.Transactions.Local.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.Local.dll.gz"},"Patterns":null},"System.Transactions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.dll.gz"},"Patterns":null},"System.ValueTuple.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ValueTuple.dll.gz"},"Patterns":null},"System.Web.HttpUtility.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.HttpUtility.dll.gz"},"Patterns":null},"System.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.dll.gz"},"Patterns":null},"System.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Windows.dll.gz"},"Patterns":null},"System.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Linq.dll.gz"},"Patterns":null},"System.Xml.ReaderWriter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.ReaderWriter.dll.gz"},"Patterns":null},"System.Xml.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Serialization.dll.gz"},"Patterns":null},"System.Xml.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.dll.gz"},"Patterns":null},"System.Xml.XmlDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlDocument.dll.gz"},"Patterns":null},"System.Xml.XmlSerializer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlSerializer.dll.gz"},"Patterns":null},"System.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.dll.gz"},"Patterns":null},"System.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.dll.gz"},"Patterns":null},"WindowsBase.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/WindowsBase.dll.gz"},"Patterns":null},"mscorlib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/mscorlib.dll.gz"},"Patterns":null},"netstandard.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/netstandard.dll.gz"},"Patterns":null},"System.Private.CoreLib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.CoreLib.dll.gz"},"Patterns":null},"dotnet.timezones.blat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.timezones.blat.gz"},"Patterns":null},"icudt.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt.dat.gz"},"Patterns":null},"icudt_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_CJK.dat.gz"},"Patterns":null},"icudt_EFIGS.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_EFIGS.dat.gz"},"Patterns":null},"icudt_no_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_no_CJK.dat.gz"},"Patterns":null},"dotnet.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.wasm.gz"},"Patterns":null},"dotnet..0qqpqpio55.js.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet..0qqpqpio55.js.gz"},"Patterns":null},"Account_SQLite.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.dll.gz"},"Patterns":null},"Account_SQLite.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.pdb.gz"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/blazor.webassembly.js.gz"},"Patterns":null},"blazor.boot.json":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/blazor.boot.json"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization 2.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization 2.dll deleted file mode 100755 index 5acdb6ad..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization 2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll deleted file mode 100755 index 1fa064d5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms 2.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms 2.dll deleted file mode 100755 index 65e2258b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms 2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll deleted file mode 100755 index e76bd3f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll deleted file mode 100755 index 8398e8fd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll deleted file mode 100755 index 208c9a52..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll deleted file mode 100755 index 39d088cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata 2.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata 2.dll deleted file mode 100755 index 61fb030c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata 2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll deleted file mode 100755 index dfcf1459..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.CSharp.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.CSharp.dll deleted file mode 100755 index f5f0a6c2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.CSharp.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll deleted file mode 100755 index fba00567..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100755 index d8432077..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100755 index 59568a73..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll deleted file mode 100755 index 03c756b5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100755 index eb1d630e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll deleted file mode 100755 index 94eedf18..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100755 index 42eb85f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100755 index 9a24516f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100755 index 845cab83..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll deleted file mode 100755 index 160814d3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll deleted file mode 100755 index 1c9ba240..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll deleted file mode 100755 index 4c0a93b3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100755 index b4ee93da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100755 index 97525f7e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll deleted file mode 100755 index abf0306e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll deleted file mode 100755 index d1045b65..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll deleted file mode 100755 index e712dbe6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll deleted file mode 100755 index 61c4e0c5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100755 index a42ea834..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll deleted file mode 100755 index 9e2d7f94..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Options.dll deleted file mode 100755 index 604b6027..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll deleted file mode 100755 index 1b2c43af..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop 2.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop 2.dll deleted file mode 100755 index 8ff5e51d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop 2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly 2.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly 2.dll deleted file mode 100755 index 438471f3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly 2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll deleted file mode 100755 index 322834ad..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.dll deleted file mode 100755 index 73fb23fa..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll deleted file mode 100755 index 6c03bf54..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.dll deleted file mode 100755 index 482a9234..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll deleted file mode 100755 index 388243f3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Registry.dll b/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Registry.dll deleted file mode 100755 index aa71daf6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/Radzen.Blazor.dll b/Account_SQLite/bin/Debug/net6.0/Radzen.Blazor.dll deleted file mode 100755 index 03b7b8cc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/Radzen.Blazor.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/SQLite.Net.dll b/Account_SQLite/bin/Debug/net6.0/SQLite.Net.dll deleted file mode 100755 index 9c6bfc77..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/SQLite.Net.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll b/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll deleted file mode 100755 index b98e9a9e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.core.dll b/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.core.dll deleted file mode 100755 index 3bab4bca..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll b/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll deleted file mode 100755 index 39a5bef0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/SqliteWasmHelper.dll b/Account_SQLite/bin/Debug/net6.0/SqliteWasmHelper.dll deleted file mode 100755 index 85062a5b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/SqliteWasmHelper.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.AppContext.dll b/Account_SQLite/bin/Debug/net6.0/System.AppContext.dll deleted file mode 100755 index daf2466d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.AppContext.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Buffers.dll b/Account_SQLite/bin/Debug/net6.0/System.Buffers.dll deleted file mode 100755 index 597456d5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Buffers.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Collections.Concurrent.dll b/Account_SQLite/bin/Debug/net6.0/System.Collections.Concurrent.dll deleted file mode 100755 index 4371de05..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Collections.Concurrent.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Collections.Immutable.dll b/Account_SQLite/bin/Debug/net6.0/System.Collections.Immutable.dll deleted file mode 100755 index f136a372..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Collections.Immutable.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Collections.NonGeneric.dll b/Account_SQLite/bin/Debug/net6.0/System.Collections.NonGeneric.dll deleted file mode 100755 index 644a45fc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Collections.Specialized.dll b/Account_SQLite/bin/Debug/net6.0/System.Collections.Specialized.dll deleted file mode 100755 index 5b446351..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Collections.Specialized.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Collections.dll b/Account_SQLite/bin/Debug/net6.0/System.Collections.dll deleted file mode 100755 index 5e3092f0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Collections.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Annotations.dll b/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Annotations.dll deleted file mode 100755 index 701fc3e4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll b/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll deleted file mode 100755 index 43d27c40..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll b/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll deleted file mode 100755 index 324b2a9a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Primitives.dll deleted file mode 100755 index def88464..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll b/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll deleted file mode 100755 index d00d0ba2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.dll b/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.dll deleted file mode 100755 index 6d580e01..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Configuration.dll b/Account_SQLite/bin/Debug/net6.0/System.Configuration.dll deleted file mode 100755 index 36342f1d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Configuration.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Console.dll b/Account_SQLite/bin/Debug/net6.0/System.Console.dll deleted file mode 100755 index f030f15b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Console.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Core.dll b/Account_SQLite/bin/Debug/net6.0/System.Core.dll deleted file mode 100755 index 08c6803d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Data.Common.dll b/Account_SQLite/bin/Debug/net6.0/System.Data.Common.dll deleted file mode 100755 index 8069649d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Data.Common.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Data.DataSetExtensions.dll b/Account_SQLite/bin/Debug/net6.0/System.Data.DataSetExtensions.dll deleted file mode 100755 index 70840051..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Data.dll b/Account_SQLite/bin/Debug/net6.0/System.Data.dll deleted file mode 100755 index 03de38f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Data.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Contracts.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Contracts.dll deleted file mode 100755 index 223a4439..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Debug.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Debug.dll deleted file mode 100755 index 9a388533..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll deleted file mode 100755 index fb219a69..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll deleted file mode 100755 index 08d6ae3e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Process.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Process.dll deleted file mode 100755 index 998fafec..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Process.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll deleted file mode 100755 index b52b02ff..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100755 index 486a9ed1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tools.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tools.dll deleted file mode 100755 index e582425a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll deleted file mode 100755 index 186ce44d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tracing.dll b/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tracing.dll deleted file mode 100755 index 7aba2a40..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Drawing.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/System.Drawing.Primitives.dll deleted file mode 100755 index 78e6e6b3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Drawing.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Drawing.dll b/Account_SQLite/bin/Debug/net6.0/System.Drawing.dll deleted file mode 100755 index ddebc9f0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Drawing.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Dynamic.Runtime.dll b/Account_SQLite/bin/Debug/net6.0/System.Dynamic.Runtime.dll deleted file mode 100755 index 92ac4ef0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Formats.Asn1.dll b/Account_SQLite/bin/Debug/net6.0/System.Formats.Asn1.dll deleted file mode 100755 index f1717645..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Formats.Asn1.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Globalization.Calendars.dll b/Account_SQLite/bin/Debug/net6.0/System.Globalization.Calendars.dll deleted file mode 100755 index 561cdb92..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Globalization.Calendars.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Globalization.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/System.Globalization.Extensions.dll deleted file mode 100755 index a5a766da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Globalization.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Globalization.dll b/Account_SQLite/bin/Debug/net6.0/System.Globalization.dll deleted file mode 100755 index d13728f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Globalization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.Brotli.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.Brotli.dll deleted file mode 100755 index c450d69d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll deleted file mode 100755 index 953c9239..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll deleted file mode 100755 index 6a5b5c9b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.dll deleted file mode 100755 index 16d99eb8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll deleted file mode 100755 index 36242b47..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll deleted file mode 100755 index b75698bd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll deleted file mode 100755 index 28473f1c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll deleted file mode 100755 index 724f6abd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.dll deleted file mode 100755 index 38811f89..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.IsolatedStorage.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.IsolatedStorage.dll deleted file mode 100755 index a59ab04c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll deleted file mode 100755 index 0f54f433..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines 2.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines 2.dll deleted file mode 100755 index 8ee4dfdd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines 2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines.dll deleted file mode 100755 index e978399d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll deleted file mode 100755 index 6ee69ca4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.dll deleted file mode 100755 index fccb8f9d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll deleted file mode 100755 index 1f3f4af3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.IO.dll b/Account_SQLite/bin/Debug/net6.0/System.IO.dll deleted file mode 100755 index 1e2349b7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.IO.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll b/Account_SQLite/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll deleted file mode 100755 index 3d5c26b5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Linq.Expressions.dll b/Account_SQLite/bin/Debug/net6.0/System.Linq.Expressions.dll deleted file mode 100755 index d65786da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Linq.Expressions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Linq.Parallel.dll b/Account_SQLite/bin/Debug/net6.0/System.Linq.Parallel.dll deleted file mode 100755 index e674bbb4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Linq.Parallel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Linq.Queryable.dll b/Account_SQLite/bin/Debug/net6.0/System.Linq.Queryable.dll deleted file mode 100755 index 7138e63c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Linq.Queryable.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Linq.dll b/Account_SQLite/bin/Debug/net6.0/System.Linq.dll deleted file mode 100755 index add8c531..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Linq.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Memory.dll b/Account_SQLite/bin/Debug/net6.0/System.Memory.dll deleted file mode 100755 index ea3f04ae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Memory.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Http.Json.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Http.Json.dll deleted file mode 100755 index 140c3ef0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Http.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Http.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Http.dll deleted file mode 100755 index 34d757d7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Http.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.HttpListener.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.HttpListener.dll deleted file mode 100755 index a252b014..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.HttpListener.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Mail.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Mail.dll deleted file mode 100755 index d911ff6b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Mail.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.NameResolution.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.NameResolution.dll deleted file mode 100755 index 0bb1015d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.NameResolution.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.NetworkInformation.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.NetworkInformation.dll deleted file mode 100755 index f384906d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Ping.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Ping.dll deleted file mode 100755 index 02c8e07b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Ping.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Primitives.dll deleted file mode 100755 index 9a4866bc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Quic.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Quic.dll deleted file mode 100755 index 3fc55394..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Quic.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Requests.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Requests.dll deleted file mode 100755 index c892633c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Requests.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Security.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Security.dll deleted file mode 100755 index 9067c331..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Security.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.ServicePoint.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.ServicePoint.dll deleted file mode 100755 index 09601be6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.ServicePoint.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.Sockets.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.Sockets.dll deleted file mode 100755 index ffc20ad0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.Sockets.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.WebClient.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.WebClient.dll deleted file mode 100755 index fbf34d41..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.WebClient.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll deleted file mode 100755 index a599ca45..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.WebProxy.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.WebProxy.dll deleted file mode 100755 index 01b25d19..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.WebProxy.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.Client.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.Client.dll deleted file mode 100755 index 05bb209c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.dll deleted file mode 100755 index c2c43cce..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Net.dll b/Account_SQLite/bin/Debug/net6.0/System.Net.dll deleted file mode 100755 index 74d70200..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Net.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Numerics.Vectors.dll b/Account_SQLite/bin/Debug/net6.0/System.Numerics.Vectors.dll deleted file mode 100755 index 87bd7fae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Numerics.Vectors.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Numerics.dll b/Account_SQLite/bin/Debug/net6.0/System.Numerics.dll deleted file mode 100755 index a7747a65..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Numerics.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ObjectModel.dll b/Account_SQLite/bin/Debug/net6.0/System.ObjectModel.dll deleted file mode 100755 index eb63164a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ObjectModel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Private.CoreLib.dll b/Account_SQLite/bin/Debug/net6.0/System.Private.CoreLib.dll deleted file mode 100755 index a04ee0e4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Private.CoreLib.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Private.DataContractSerialization.dll b/Account_SQLite/bin/Debug/net6.0/System.Private.DataContractSerialization.dll deleted file mode 100755 index 171fa922..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll b/Account_SQLite/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll deleted file mode 100755 index c356b2b0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Private.Uri.dll b/Account_SQLite/bin/Debug/net6.0/System.Private.Uri.dll deleted file mode 100755 index fd5cc3da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Private.Uri.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.Linq.dll b/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.Linq.dll deleted file mode 100755 index ec91023a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.dll b/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.dll deleted file mode 100755 index cc54a163..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll deleted file mode 100755 index 3589b97f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll deleted file mode 100755 index 864f1221..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll deleted file mode 100755 index 5c14758d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.dll deleted file mode 100755 index e7877c36..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.Extensions.dll deleted file mode 100755 index e7585bda..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Metadata.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.Metadata.dll deleted file mode 100755 index 0871dbf7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Metadata.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.Primitives.dll deleted file mode 100755 index 87871a9d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll deleted file mode 100755 index b2b92b4b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Reflection.dll b/Account_SQLite/bin/Debug/net6.0/System.Reflection.dll deleted file mode 100755 index f9f0b5f0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Reflection.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Resources.Reader.dll b/Account_SQLite/bin/Debug/net6.0/System.Resources.Reader.dll deleted file mode 100755 index 05009c7d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Resources.Reader.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Resources.ResourceManager.dll b/Account_SQLite/bin/Debug/net6.0/System.Resources.ResourceManager.dll deleted file mode 100755 index 5b97f146..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Resources.Writer.dll b/Account_SQLite/bin/Debug/net6.0/System.Resources.Writer.dll deleted file mode 100755 index ab8acc3f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Resources.Writer.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100755 index 46d3c1d0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100755 index 6b9972bd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Extensions.dll deleted file mode 100755 index bae340d3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Handles.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Handles.dll deleted file mode 100755 index e3f60849..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Handles.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100755 index 8369e4f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.dll deleted file mode 100755 index ace5d0a0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Intrinsics.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Intrinsics.dll deleted file mode 100755 index a174dacb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Loader.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Loader.dll deleted file mode 100755 index 10754c86..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Loader.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Numerics.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Numerics.dll deleted file mode 100755 index 83af62ec..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Numerics.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll deleted file mode 100755 index 144b60fb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll deleted file mode 100755 index ab015cbe..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll deleted file mode 100755 index 2058fd38..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll deleted file mode 100755 index 357c46cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.dll deleted file mode 100755 index 687a02ae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Runtime.dll b/Account_SQLite/bin/Debug/net6.0/System.Runtime.dll deleted file mode 100755 index fb58247d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Runtime.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.AccessControl.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.AccessControl.dll deleted file mode 100755 index e1ab25ee..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.AccessControl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Claims.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Claims.dll deleted file mode 100755 index 074340f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Claims.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll deleted file mode 100755 index d7dc7a78..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll deleted file mode 100755 index f7a5cdc6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll deleted file mode 100755 index 8a40b757..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll deleted file mode 100755 index 8098d5b1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll deleted file mode 100755 index a3b219ae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll deleted file mode 100755 index 81500588..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll deleted file mode 100755 index 583fe5e6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.Windows.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.Windows.dll deleted file mode 100755 index fcfb3a2b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.dll deleted file mode 100755 index 5fb56c86..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.SecureString.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.SecureString.dll deleted file mode 100755 index 0c798a2c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.SecureString.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Security.dll b/Account_SQLite/bin/Debug/net6.0/System.Security.dll deleted file mode 100755 index 45fa0dc9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Security.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ServiceModel.Web.dll b/Account_SQLite/bin/Debug/net6.0/System.ServiceModel.Web.dll deleted file mode 100755 index fe4bdf31..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ServiceModel.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ServiceProcess.dll b/Account_SQLite/bin/Debug/net6.0/System.ServiceProcess.dll deleted file mode 100755 index 39c62431..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ServiceProcess.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll b/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll deleted file mode 100755 index 991d4096..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll deleted file mode 100755 index bb384c5b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.dll b/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.dll deleted file mode 100755 index df18e7c0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Text.Encodings.Web.dll b/Account_SQLite/bin/Debug/net6.0/System.Text.Encodings.Web.dll deleted file mode 100755 index b25307be..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Text.Json.dll b/Account_SQLite/bin/Debug/net6.0/System.Text.Json.dll deleted file mode 100755 index c57c3145..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Text.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Text.RegularExpressions.dll b/Account_SQLite/bin/Debug/net6.0/System.Text.RegularExpressions.dll deleted file mode 100755 index 5f8e1280..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Channels.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Channels.dll deleted file mode 100755 index 8e83716f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Channels.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Overlapped.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Overlapped.dll deleted file mode 100755 index a7b624a6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Overlapped.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll deleted file mode 100755 index a20fee32..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll deleted file mode 100755 index 6c3b5b00..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll deleted file mode 100755 index 6e37d045..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.dll deleted file mode 100755 index 22aacedb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Thread.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Thread.dll deleted file mode 100755 index 3dc7544f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Thread.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.ThreadPool.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.ThreadPool.dll deleted file mode 100755 index ba27bb08..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.Timer.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.Timer.dll deleted file mode 100755 index 2a5857cc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.Timer.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Threading.dll b/Account_SQLite/bin/Debug/net6.0/System.Threading.dll deleted file mode 100755 index 55ed953f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Threading.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Transactions.Local.dll b/Account_SQLite/bin/Debug/net6.0/System.Transactions.Local.dll deleted file mode 100755 index 9136892d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Transactions.Local.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Transactions.dll b/Account_SQLite/bin/Debug/net6.0/System.Transactions.dll deleted file mode 100755 index 9f1ff8c0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Transactions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.ValueTuple.dll b/Account_SQLite/bin/Debug/net6.0/System.ValueTuple.dll deleted file mode 100755 index 245c4f47..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.ValueTuple.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Web.HttpUtility.dll b/Account_SQLite/bin/Debug/net6.0/System.Web.HttpUtility.dll deleted file mode 100755 index e0e4d547..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Web.HttpUtility.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Web.dll b/Account_SQLite/bin/Debug/net6.0/System.Web.dll deleted file mode 100755 index 34f0ffd7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Windows.dll b/Account_SQLite/bin/Debug/net6.0/System.Windows.dll deleted file mode 100755 index a73d5d18..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Windows.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.Linq.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.Linq.dll deleted file mode 100755 index 4d4caf1d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.Linq.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.ReaderWriter.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.ReaderWriter.dll deleted file mode 100755 index 1fe6e7f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.Serialization.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.Serialization.dll deleted file mode 100755 index 0bb4c2a3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.Serialization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.XDocument.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.XDocument.dll deleted file mode 100755 index 587afd87..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.XDocument.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll deleted file mode 100755 index e7353920..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.dll deleted file mode 100755 index 263e5416..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlDocument.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlDocument.dll deleted file mode 100755 index d47ea370..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlSerializer.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlSerializer.dll deleted file mode 100755 index 35254fcd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.Xml.dll b/Account_SQLite/bin/Debug/net6.0/System.Xml.dll deleted file mode 100755 index 79247fe6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.Xml.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/System.dll b/Account_SQLite/bin/Debug/net6.0/System.dll deleted file mode 100755 index 820fbbd2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/System.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/WindowsBase.dll b/Account_SQLite/bin/Debug/net6.0/WindowsBase.dll deleted file mode 100755 index 18f7cb7e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/WindowsBase.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/appsettings.Development.json b/Account_SQLite/bin/Debug/net6.0/appsettings.Development.json deleted file mode 100644 index f042c671..00000000 --- a/Account_SQLite/bin/Debug/net6.0/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "DetailedErrors": true, - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/Account_SQLite/bin/Debug/net6.0/appsettings.json b/Account_SQLite/bin/Debug/net6.0/appsettings.json deleted file mode 100644 index 4d566948..00000000 --- a/Account_SQLite/bin/Debug/net6.0/appsettings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*" -} diff --git a/Account_SQLite/bin/Debug/net6.0/dotnet.timezones.blat b/Account_SQLite/bin/Debug/net6.0/dotnet.timezones.blat deleted file mode 100755 index 4500d17a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/dotnet.timezones.blat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/e_sqlite3.a b/Account_SQLite/bin/Debug/net6.0/e_sqlite3.a deleted file mode 100755 index 01e102cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/e_sqlite3.a and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/icudt.dat b/Account_SQLite/bin/Debug/net6.0/icudt.dat deleted file mode 100755 index 7281a276..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/icudt.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/icudt_CJK.dat b/Account_SQLite/bin/Debug/net6.0/icudt_CJK.dat deleted file mode 100755 index a4ef6d70..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/icudt_CJK.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/icudt_EFIGS.dat b/Account_SQLite/bin/Debug/net6.0/icudt_EFIGS.dat deleted file mode 100755 index 4b39b3fa..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/icudt_EFIGS.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/icudt_no_CJK.dat b/Account_SQLite/bin/Debug/net6.0/icudt_no_CJK.dat deleted file mode 100755 index bab52e7a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/icudt_no_CJK.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/mscorlib.dll b/Account_SQLite/bin/Debug/net6.0/mscorlib.dll deleted file mode 100755 index 1538e2f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/mscorlib.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/netstandard.dll b/Account_SQLite/bin/Debug/net6.0/netstandard.dll deleted file mode 100755 index b12dda4b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/netstandard.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll deleted file mode 100644 index 1fa0ca5b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll.gz deleted file mode 100644 index ea6e6fad..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb deleted file mode 100644 index 0c8ad345..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb.gz deleted file mode 100644 index 4f094734..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll deleted file mode 100755 index 1fa064d5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz deleted file mode 100644 index 04301fc9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll deleted file mode 100755 index e76bd3f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz deleted file mode 100644 index 9fc2ce97..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll deleted file mode 100755 index 8398e8fd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz deleted file mode 100644 index fe971ddd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll deleted file mode 100755 index 208c9a52..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz deleted file mode 100644 index f2f5d32d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll deleted file mode 100755 index 39d088cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz deleted file mode 100644 index a6efd270..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll deleted file mode 100755 index dfcf1459..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz deleted file mode 100644 index da3db480..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll deleted file mode 100755 index f5f0a6c2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz deleted file mode 100644 index 845d3278..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll deleted file mode 100755 index fba00567..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll.gz deleted file mode 100644 index 463b515d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100755 index d8432077..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll.gz deleted file mode 100644 index adfa14b9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100755 index 59568a73..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll.gz deleted file mode 100644 index e8a69bb4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll deleted file mode 100755 index 03c756b5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll.gz deleted file mode 100644 index 7e8e6851..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll deleted file mode 100755 index eb1d630e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll.gz deleted file mode 100644 index 326ac977..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll deleted file mode 100755 index 94eedf18..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz deleted file mode 100644 index 77d187dc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100755 index 42eb85f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll.gz deleted file mode 100644 index 1d4749f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100755 index 9a24516f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz deleted file mode 100644 index 3d7e29ea..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100755 index 845cab83..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz deleted file mode 100644 index 93a73c35..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll deleted file mode 100755 index 160814d3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz deleted file mode 100644 index bbf68757..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll deleted file mode 100755 index 1c9ba240..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz deleted file mode 100644 index 6ecae334..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll deleted file mode 100755 index 4c0a93b3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz deleted file mode 100644 index 8a8d8a2d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100755 index b4ee93da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz deleted file mode 100644 index 1dcc1b3e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100755 index 97525f7e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz deleted file mode 100644 index 794f338b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll deleted file mode 100755 index abf0306e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll.gz deleted file mode 100644 index 80fedafc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll deleted file mode 100755 index d1045b65..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz deleted file mode 100644 index 433c1484..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll deleted file mode 100755 index e712dbe6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz deleted file mode 100644 index 33d6c66d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll deleted file mode 100755 index 61c4e0c5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz deleted file mode 100644 index 66d40a4d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100755 index a42ea834..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz deleted file mode 100644 index fce16d46..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll deleted file mode 100755 index 9e2d7f94..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz deleted file mode 100644 index 20e2a77f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll deleted file mode 100755 index 604b6027..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz deleted file mode 100644 index b47daccd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll deleted file mode 100755 index 1b2c43af..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz deleted file mode 100644 index 1ae18e67..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll deleted file mode 100755 index 322834ad..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz deleted file mode 100644 index 210039f6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll deleted file mode 100755 index 73fb23fa..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz deleted file mode 100644 index 1b803110..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll deleted file mode 100755 index 6c03bf54..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz deleted file mode 100644 index e69ed55d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll deleted file mode 100755 index 482a9234..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz deleted file mode 100644 index d7d0a3f1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll deleted file mode 100755 index 388243f3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz deleted file mode 100644 index 03873c42..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll deleted file mode 100755 index aa71daf6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz deleted file mode 100644 index 645211b4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll deleted file mode 100755 index 03b7b8cc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll.gz deleted file mode 100644 index 263d4883..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll deleted file mode 100755 index 9c6bfc77..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll.gz deleted file mode 100644 index 0f31cb18..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll deleted file mode 100755 index b98e9a9e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll.gz deleted file mode 100644 index ba10a393..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll deleted file mode 100755 index 3bab4bca..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll.gz deleted file mode 100644 index 063f7ff6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll deleted file mode 100755 index 39a5bef0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll.gz deleted file mode 100644 index a44057d7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll deleted file mode 100755 index 85062a5b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll.gz deleted file mode 100644 index 861bd518..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll deleted file mode 100755 index daf2466d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz deleted file mode 100644 index 7a0102dc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll deleted file mode 100755 index 597456d5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz deleted file mode 100644 index 6c46fbef..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll deleted file mode 100755 index 4371de05..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz deleted file mode 100644 index 99b0768e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll deleted file mode 100755 index f136a372..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz deleted file mode 100644 index 4b001bc3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll deleted file mode 100755 index 644a45fc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz deleted file mode 100644 index d4ccd67f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll deleted file mode 100755 index 5b446351..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz deleted file mode 100644 index 300fad82..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll deleted file mode 100755 index 5e3092f0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz deleted file mode 100644 index 3a3f1df8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll deleted file mode 100755 index 701fc3e4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz deleted file mode 100644 index 23b4ca6e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll deleted file mode 100755 index 43d27c40..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz deleted file mode 100644 index 0fe7e3f4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll deleted file mode 100755 index 324b2a9a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz deleted file mode 100644 index 03870874..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll deleted file mode 100755 index def88464..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz deleted file mode 100644 index 20a6a0a3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll deleted file mode 100755 index d00d0ba2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz deleted file mode 100644 index 36586699..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll deleted file mode 100755 index 6d580e01..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz deleted file mode 100644 index c4811de3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll deleted file mode 100755 index 36342f1d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz deleted file mode 100644 index 8d59691d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll deleted file mode 100755 index f030f15b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz deleted file mode 100644 index 728a92bf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll deleted file mode 100755 index 08c6803d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz deleted file mode 100644 index 13ac0a41..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll deleted file mode 100755 index 8069649d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz deleted file mode 100644 index d6644265..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll deleted file mode 100755 index 70840051..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz deleted file mode 100644 index 05bdbc9a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll deleted file mode 100755 index 03de38f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz deleted file mode 100644 index d69cb29e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll deleted file mode 100755 index 223a4439..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz deleted file mode 100644 index 363523d8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll deleted file mode 100755 index 9a388533..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz deleted file mode 100644 index 269c8def..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll deleted file mode 100755 index fb219a69..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz deleted file mode 100644 index dd8f25b6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll deleted file mode 100755 index 08d6ae3e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz deleted file mode 100644 index 843bc9ce..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll deleted file mode 100755 index 998fafec..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz deleted file mode 100644 index a7af8feb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll deleted file mode 100755 index b52b02ff..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz deleted file mode 100644 index 75c01d4e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100755 index 486a9ed1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz deleted file mode 100644 index e0385cbf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll deleted file mode 100755 index e582425a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz deleted file mode 100644 index 9f6faac5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll deleted file mode 100755 index 186ce44d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz deleted file mode 100644 index 37e4da66..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll deleted file mode 100755 index 7aba2a40..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz deleted file mode 100644 index 48d707de..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll deleted file mode 100755 index 78e6e6b3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz deleted file mode 100644 index 6a25e55a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll deleted file mode 100755 index ddebc9f0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz deleted file mode 100644 index 85bfc72f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll deleted file mode 100755 index 92ac4ef0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz deleted file mode 100644 index da396bc4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll deleted file mode 100755 index f1717645..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz deleted file mode 100644 index e3c7207d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll deleted file mode 100755 index 561cdb92..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz deleted file mode 100644 index fb441c9c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll deleted file mode 100755 index a5a766da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz deleted file mode 100644 index ec25f4a7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll deleted file mode 100755 index d13728f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz deleted file mode 100644 index c03155cc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll deleted file mode 100755 index c450d69d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz deleted file mode 100644 index e9f320b1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll deleted file mode 100755 index 953c9239..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz deleted file mode 100644 index 181a420f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll deleted file mode 100755 index 6a5b5c9b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz deleted file mode 100644 index 47d752d2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll deleted file mode 100755 index 16d99eb8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz deleted file mode 100644 index d4f51f40..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll deleted file mode 100755 index 36242b47..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz deleted file mode 100644 index 67e8720d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll deleted file mode 100755 index b75698bd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz deleted file mode 100644 index 62c3e9ed..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll deleted file mode 100755 index 28473f1c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz deleted file mode 100644 index 0b490718..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll deleted file mode 100755 index 724f6abd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz deleted file mode 100644 index 14f88fb5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll deleted file mode 100755 index 38811f89..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz deleted file mode 100644 index 6a8f320f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll deleted file mode 100755 index a59ab04c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz deleted file mode 100644 index 686a30f9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll deleted file mode 100755 index 0f54f433..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz deleted file mode 100644 index d346e172..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll deleted file mode 100755 index e978399d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz deleted file mode 100644 index 005c3f48..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll deleted file mode 100755 index 6ee69ca4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz deleted file mode 100644 index 45d72b57..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll deleted file mode 100755 index fccb8f9d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz deleted file mode 100644 index 15fc7a08..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll deleted file mode 100755 index 1f3f4af3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz deleted file mode 100644 index d603e641..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll deleted file mode 100755 index 1e2349b7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz deleted file mode 100644 index 88b39f38..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll deleted file mode 100755 index 3d5c26b5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll.gz deleted file mode 100644 index 30c54716..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll deleted file mode 100755 index d65786da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz deleted file mode 100644 index dfcad5ba..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll deleted file mode 100755 index e674bbb4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz deleted file mode 100644 index 8d6d0645..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll deleted file mode 100755 index 7138e63c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz deleted file mode 100644 index 2058fd24..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll deleted file mode 100755 index add8c531..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz deleted file mode 100644 index 2d4b1dc4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll deleted file mode 100755 index ea3f04ae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz deleted file mode 100644 index e2b87673..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll deleted file mode 100755 index 140c3ef0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz deleted file mode 100644 index 35c11a08..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll deleted file mode 100755 index 34d757d7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz deleted file mode 100644 index b77c31ee..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll deleted file mode 100755 index a252b014..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz deleted file mode 100644 index cdaddea0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll deleted file mode 100755 index d911ff6b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz deleted file mode 100644 index 89d5299a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll deleted file mode 100755 index 0bb1015d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz deleted file mode 100644 index 2f5486e0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll deleted file mode 100755 index f384906d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz deleted file mode 100644 index db40331c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll deleted file mode 100755 index 02c8e07b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz deleted file mode 100644 index e184392e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll deleted file mode 100755 index 9a4866bc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz deleted file mode 100644 index 9347e7ef..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll deleted file mode 100755 index 3fc55394..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz deleted file mode 100644 index 59f424eb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll deleted file mode 100755 index c892633c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz deleted file mode 100644 index f3f7d82d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll deleted file mode 100755 index 9067c331..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz deleted file mode 100644 index 36a568c6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll deleted file mode 100755 index 09601be6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz deleted file mode 100644 index 93a1dae4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll deleted file mode 100755 index ffc20ad0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz deleted file mode 100644 index 92292813..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll deleted file mode 100755 index fbf34d41..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz deleted file mode 100644 index 50346fe5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll deleted file mode 100755 index a599ca45..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz deleted file mode 100644 index b22cde33..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll deleted file mode 100755 index 01b25d19..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz deleted file mode 100644 index b3ba4a0b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll deleted file mode 100755 index 05bb209c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz deleted file mode 100644 index 7317c4f2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll deleted file mode 100755 index c2c43cce..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz deleted file mode 100644 index 3e0a2640..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll deleted file mode 100755 index 74d70200..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz deleted file mode 100644 index 69d74a59..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll deleted file mode 100755 index 87bd7fae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz deleted file mode 100644 index 8ce0ea97..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll deleted file mode 100755 index a7747a65..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz deleted file mode 100644 index a357d812..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll deleted file mode 100755 index eb63164a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz deleted file mode 100644 index afe06294..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll deleted file mode 100755 index a04ee0e4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz deleted file mode 100644 index d4ab3b4b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll deleted file mode 100755 index 171fa922..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz deleted file mode 100644 index 1d933408..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll deleted file mode 100755 index c356b2b0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz deleted file mode 100644 index 31972096..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll deleted file mode 100755 index fd5cc3da..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz deleted file mode 100644 index 801c4b10..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll deleted file mode 100755 index ec91023a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz deleted file mode 100644 index 6de91e1c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll deleted file mode 100755 index cc54a163..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz deleted file mode 100644 index 3e1eea29..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll deleted file mode 100755 index 3589b97f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz deleted file mode 100644 index e1a73f0e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll deleted file mode 100755 index 864f1221..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz deleted file mode 100644 index 125fdbb9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll deleted file mode 100755 index 5c14758d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz deleted file mode 100644 index 72a8adc3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll deleted file mode 100755 index e7877c36..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz deleted file mode 100644 index 4887af21..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll deleted file mode 100755 index e7585bda..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz deleted file mode 100644 index b5c3ae5a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll deleted file mode 100755 index 0871dbf7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz deleted file mode 100644 index ba125393..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll deleted file mode 100755 index 87871a9d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz deleted file mode 100644 index fd11c5f9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll deleted file mode 100755 index b2b92b4b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz deleted file mode 100644 index 9db86fae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll deleted file mode 100755 index f9f0b5f0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz deleted file mode 100644 index 9d414bf8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll deleted file mode 100755 index 05009c7d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz deleted file mode 100644 index d9b3f6f9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll deleted file mode 100755 index 5b97f146..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz deleted file mode 100644 index f41de3f6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll deleted file mode 100755 index ab8acc3f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz deleted file mode 100644 index 0345e5ff..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100755 index 46d3c1d0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz deleted file mode 100644 index 63dd4f11..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100755 index 6b9972bd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz deleted file mode 100644 index 2085e09a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll deleted file mode 100755 index bae340d3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz deleted file mode 100644 index 512d6d98..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll deleted file mode 100755 index e3f60849..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz deleted file mode 100644 index 5159ea5a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100755 index 8369e4f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz deleted file mode 100644 index 2166e345..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll deleted file mode 100755 index ace5d0a0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz deleted file mode 100644 index a4aea805..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll deleted file mode 100755 index a174dacb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz deleted file mode 100644 index b17cb078..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll deleted file mode 100755 index 10754c86..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz deleted file mode 100644 index cc515261..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll deleted file mode 100755 index 83af62ec..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz deleted file mode 100644 index cbab94c0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll deleted file mode 100755 index 144b60fb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz deleted file mode 100644 index 4b1a75d1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll deleted file mode 100755 index ab015cbe..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz deleted file mode 100644 index 5caaba21..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll deleted file mode 100755 index 2058fd38..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz deleted file mode 100644 index 76de839a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll deleted file mode 100755 index 357c46cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz deleted file mode 100644 index a427c49c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll deleted file mode 100755 index 687a02ae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz deleted file mode 100644 index 0d8fc21a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll deleted file mode 100755 index fb58247d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz deleted file mode 100644 index c123472f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll deleted file mode 100755 index e1ab25ee..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz deleted file mode 100644 index c11e0b62..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll deleted file mode 100755 index 074340f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz deleted file mode 100644 index 18d18443..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll deleted file mode 100755 index d7dc7a78..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz deleted file mode 100644 index 0b32527c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll deleted file mode 100755 index f7a5cdc6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz deleted file mode 100644 index dce68734..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll deleted file mode 100755 index 8a40b757..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz deleted file mode 100644 index 3a0e293e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll deleted file mode 100755 index 8098d5b1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz deleted file mode 100644 index f6ddd3cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll deleted file mode 100755 index a3b219ae..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz deleted file mode 100644 index 14636b46..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll deleted file mode 100755 index 81500588..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz deleted file mode 100644 index d00f7aec..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll deleted file mode 100755 index 583fe5e6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz deleted file mode 100644 index 1b167511..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll deleted file mode 100755 index fcfb3a2b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz deleted file mode 100644 index 3da8b345..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll deleted file mode 100755 index 5fb56c86..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz deleted file mode 100644 index ee5bca3a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll deleted file mode 100755 index 0c798a2c..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz deleted file mode 100644 index 4db742d1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll deleted file mode 100755 index 45fa0dc9..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz deleted file mode 100644 index f58dcd60..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll deleted file mode 100755 index fe4bdf31..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz deleted file mode 100644 index b94b47f5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll deleted file mode 100755 index 39c62431..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz deleted file mode 100644 index 8ecd4024..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll deleted file mode 100755 index 991d4096..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz deleted file mode 100644 index 9693a86f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll deleted file mode 100755 index bb384c5b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz deleted file mode 100644 index 86777043..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll deleted file mode 100755 index df18e7c0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz deleted file mode 100644 index 131a68cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll deleted file mode 100755 index b25307be..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz deleted file mode 100644 index 71af6bc6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll deleted file mode 100755 index c57c3145..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz deleted file mode 100644 index 1b5b7181..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll deleted file mode 100755 index 5f8e1280..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz deleted file mode 100644 index ae2b859f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll deleted file mode 100755 index 8e83716f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz deleted file mode 100644 index fbd779e5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll deleted file mode 100755 index a7b624a6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz deleted file mode 100644 index 55264f69..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll deleted file mode 100755 index a20fee32..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz deleted file mode 100644 index 04b14df1..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll deleted file mode 100755 index 6c3b5b00..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz deleted file mode 100644 index ec85a01e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll deleted file mode 100755 index 6e37d045..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz deleted file mode 100644 index 4f6d28bf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll deleted file mode 100755 index 22aacedb..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz deleted file mode 100644 index cdcd4555..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll deleted file mode 100755 index 3dc7544f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz deleted file mode 100644 index cb3f0c2f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll deleted file mode 100755 index ba27bb08..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz deleted file mode 100644 index 81f47a44..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll deleted file mode 100755 index 2a5857cc..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz deleted file mode 100644 index 16ccaf2b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll deleted file mode 100755 index 55ed953f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz deleted file mode 100644 index e2105018..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll deleted file mode 100755 index 9136892d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz deleted file mode 100644 index 46ecf908..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll deleted file mode 100755 index 9f1ff8c0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz deleted file mode 100644 index e2a10d6b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll deleted file mode 100755 index 245c4f47..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz deleted file mode 100644 index f1f0d142..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll deleted file mode 100755 index e0e4d547..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz deleted file mode 100644 index 7372ec44..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll deleted file mode 100755 index 34f0ffd7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz deleted file mode 100644 index ecf7087b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll deleted file mode 100755 index a73d5d18..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz deleted file mode 100644 index 18ab8916..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll deleted file mode 100755 index 4d4caf1d..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz deleted file mode 100644 index cc703da7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll deleted file mode 100755 index 1fe6e7f7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz deleted file mode 100644 index eebcbe74..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll deleted file mode 100755 index 0bb4c2a3..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz deleted file mode 100644 index 91683384..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll deleted file mode 100755 index 587afd87..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz deleted file mode 100644 index 3d1fbd31..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll deleted file mode 100755 index e7353920..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz deleted file mode 100644 index 96bfc5b7..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll deleted file mode 100755 index 263e5416..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz deleted file mode 100644 index 9c6a9079..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll deleted file mode 100755 index d47ea370..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz deleted file mode 100644 index 85ff1da4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll deleted file mode 100755 index 35254fcd..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz deleted file mode 100644 index c8124ae8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll deleted file mode 100755 index 79247fe6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz deleted file mode 100644 index fe352a9e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll deleted file mode 100755 index 820fbbd2..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz deleted file mode 100644 index 8ccb5ed5..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll deleted file mode 100755 index 18f7cb7e..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz deleted file mode 100644 index cd70c8db..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json deleted file mode 100644 index edb63e01..00000000 --- a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "cacheBootResources": true, - "config": [ ], - "debugBuild": true, - "entryAssembly": "Account_SQLite", - "icuDataMode": 0, - "linkerEnabled": false, - "resources": { - "assembly": { - "Microsoft.AspNetCore.Authorization.dll": "sha256-34F+BnSts\/TON8s8cSZc6roVw6IntMd\/sTrN8WOXiy8=", - "Microsoft.AspNetCore.Components.dll": "sha256-F+JMphRzIMZdciqr5Yf8CXeTA11n\/doTnAdObTPxNm8=", - "Microsoft.AspNetCore.Components.Forms.dll": "sha256-WApptBNmFJ1+dCg+jm360NFshcv7dvfzyBGl8rECTt8=", - "Microsoft.AspNetCore.Components.Web.dll": "sha256-Za1yJA2MY8T6DwapDEeBN9xCYb62MctrT1HKsNSePoE=", - "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-izxJlD6frDIMfvXz53B+rqp7FpLgQypiJO+1kqTMPf4=", - "Microsoft.AspNetCore.Metadata.dll": "sha256-iqHFPB3TeviSbUBknWFRzrVtYoeM5yjCHZzUVHF8vuc=", - "Microsoft.Data.Sqlite.dll": "sha256-2APhdoJiRh+A9T+uyJsqGt0JHq3RdNSC3fPoSSe91YE=", - "Microsoft.EntityFrameworkCore.dll": "sha256-KR5QxHOsgza\/t3BPKA8odzRIa3Js0wrbNVrGelvoZSI=", - "Microsoft.EntityFrameworkCore.Abstractions.dll": "sha256-UJ1JMLF3tbjK8Do2sbQwuFmLe08qMLv3y+TkkAHRKk4=", - "Microsoft.EntityFrameworkCore.Relational.dll": "sha256-9row\/IjY5yIxPIkKlF\/BajMoZ4AAioTVcJw48rwKctQ=", - "Microsoft.EntityFrameworkCore.Sqlite.dll": "sha256-XEzuSft3Ntqm6zzICOw4rsa2NAiLInTH\/+dH7nNzMxQ=", - "Microsoft.Extensions.Caching.Abstractions.dll": "sha256-WLcZIKlgct2nj4hpaBvZXfHorQG9DH9B\/FZ2IKePG2I=", - "Microsoft.Extensions.Caching.Memory.dll": "sha256-aOJetx2rPupAGsXg2NCRL5p+\/xdzMyUSbmn24txWfQw=", - "Microsoft.Extensions.Configuration.dll": "sha256-c8yYhfrOBLEnOBglLTu9peXSbJDwFpuT4UQiXSv28Og=", - "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-5Otet+KKVUjNkE\/hqcNWmt75H1K2VNuKPFagpRd6Ces=", - "Microsoft.Extensions.Configuration.Binder.dll": "sha256-wNKhG3Ovx8jqxbscz2AALlsTLfI6GL2dyDhe63mSsoM=", - "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-n2fRP2\/1tGNzaCF5PU4hgTSlHK886OviBf2YAds3NdE=", - "Microsoft.Extensions.Configuration.Json.dll": "sha256-R28\/ywLWxIcFxKtDIj0IxC+bXi4urX6BHeLL24R+vTQ=", - "Microsoft.Extensions.DependencyInjection.dll": "sha256-KqgYK1NWqMxcNfw2Qah+gUhX2Nm+OZrHjyYDQ3VNCeA=", - "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-nM2DA1GqKLxoPU+NHO\/Z5yQWH5ctJb+2Tu5b9VxIxeM=", - "Microsoft.Extensions.DependencyModel.dll": "sha256-tkBiVGV6aPhN9weYepMZ2vvS6Ggf0uOE88fuWINRAHg=", - "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-7PzvEcQvpK1c8tTX9VPI8AF+XrekqbAytNBQXJjvTvQ=", - "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-sXujvGMZDgBBZ9HqfcEq9XsM0pvwyhPt60NA9qLDzGI=", - "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-viiXOG0fwhWobT0TQ1ZOJiZBdRvYRlWbDtjz+6d8sQI=", - "Microsoft.Extensions.Logging.dll": "sha256-GDZQCBtVHfrZZ6fL95lGoinLeUWLjQShLbfESwO7mrc=", - "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-w+c+xfLh8QIAwluhugyPc8sPvAmmIC\/UTxnugT7Oido=", - "Microsoft.Extensions.Options.dll": "sha256-eGESyy9mRu8RcCGajAu4E8nxSmeB5nxiZkFPVaZ5Vl0=", - "Microsoft.Extensions.Primitives.dll": "sha256-jOmoWSfsdQexH\/6QCA56gR1RMEqeix2iDDUBWbpAOQI=", - "Microsoft.JSInterop.dll": "sha256-jk2\/Vyub2GwMGkeIaCH7i0wYYpcirlDPEBjrjmB47Es=", - "Microsoft.JSInterop.WebAssembly.dll": "sha256-9fmAKBOzIs7ySpwatFoAUhMgaJtTQvGN5+TArCHX9QE=", - "Radzen.Blazor.dll": "sha256-LUFpEkTpWClcEgwi3jvF4mmtg3CXyEmtNSZ0TNXNGtU=", - "SQLite.Net.dll": "sha256-2JdeuuhWXpz2DJFN3PmHVVLUtY++p54qPl6s1XtX9NY=", - "SQLitePCLRaw.batteries_v2.dll": "sha256-2QeGG\/\/WYKByIDzfutVzVUIdJQlHIlsXQwuQbTEOHoo=", - "SQLitePCLRaw.core.dll": "sha256-2FeknlBhJjPV1l5KbRBUXq1SNikSYFuSNXNmUSJQCOM=", - "SQLitePCLRaw.provider.e_sqlite3.dll": "sha256-liT7Qp0A3+\/bLUGJS9pNaH05jhO1mPcdTQTRoT8\/OdU=", - "SqliteWasmHelper.dll": "sha256-T91sHAM03+urZ2Y5OUYvogUE9spoqnl+VATi57siEWw=", - "System.IO.Pipelines.dll": "sha256-OXr1SqT\/FRQmnxVa6n811yUyJraU4tzQs5skNCiDmiM=", - "System.Linq.Dynamic.Core.dll": "sha256-+dlU8yi5zWnF9GeqOTl26t\/y5vllHc9O3mEwXdQjP7M=", - "Microsoft.CSharp.dll": "sha256-8UVF1TWUPxCBkipcI2XYSzpBv6v4U1oxvfrtuFpsZTI=", - "Microsoft.VisualBasic.Core.dll": "sha256-gOD5eyh0aM7C6A5ksyLWh2fDaTqfXiUJuOFFTeXz06U=", - "Microsoft.VisualBasic.dll": "sha256-ZgRq7Bi5L8\/sfQpBDMpurdhGGHrZsIojDBGBMJQPMj0=", - "Microsoft.Win32.Primitives.dll": "sha256-ZhVCFyk90FvLWdNLHg0816DLrv7oR64RYIFZktcYy44=", - "Microsoft.Win32.Registry.dll": "sha256-jpp3MYN\/4PplF\/bWmN8r+SWWnrYqto21REW7kqvSa\/I=", - "System.AppContext.dll": "sha256-FkC2fSdTB8v2YqBpVZ8IhcF8\/rwlsoc0S0C1O30Cj3A=", - "System.Buffers.dll": "sha256-RQzP+ZZgTQSsdVebQQr7rM3ybH4zMetX3ogViLMzKkc=", - "System.Collections.Concurrent.dll": "sha256-K5IYtPDpLmuajtkSJNiUtnGH4rcdfbnrFNKHx210zdY=", - "System.Collections.Immutable.dll": "sha256-V5G0k+87iocc4excGjwhOUnjdyt6d\/pViYxHsYvLtj4=", - "System.Collections.NonGeneric.dll": "sha256-ongTSqO+\/xwUXZ4E7L6qywEkY2NhrWHyg94aQ6lineo=", - "System.Collections.Specialized.dll": "sha256-FMogW7rW1H9l47Yx\/xv2ViQdhjjwRygx3TGnvDuPwsg=", - "System.Collections.dll": "sha256-z\/JnKzuXTD9rSeqPGZanuExp9nYphV\/K7k0b21AbQAg=", - "System.ComponentModel.Annotations.dll": "sha256-nKXO2oZme4LHLCJaTDhQ608MrcBM4odeWDTrdp95U+o=", - "System.ComponentModel.DataAnnotations.dll": "sha256-UQz1oXs2qNu34UWchEpK6CR0nvqhlqA2r0lpnK4PfTU=", - "System.ComponentModel.EventBasedAsync.dll": "sha256-L0yAMXk\/MGAfLFCOSv7C3spS9pQ8W6xZK5PrHnUWomo=", - "System.ComponentModel.Primitives.dll": "sha256-4XsPZYDIPP+Q3WDzaI0mGZj\/ISyHxAXfOab9ePAphok=", - "System.ComponentModel.TypeConverter.dll": "sha256-fQ54odFT8ZZT2pSvSALxTStO4zzGe5W6TEk++5dnSjU=", - "System.ComponentModel.dll": "sha256-Ywx4WFekhhw12Yu\/9NYmZqjo6We7nbzZ4Qbyqmfj0hA=", - "System.Configuration.dll": "sha256-pPLCkjVdnZWXplVAqYSwWlwK3233h\/iVw4RViSHbiOk=", - "System.Console.dll": "sha256-FEoQMhWI3PBEsDOi7bLsNHHZfElUCYTGmvj8N5RT2x0=", - "System.Core.dll": "sha256-H2eJ1+TAiHt8fkT37FdrWsTt6tILlC7tq1gl37p0Iv8=", - "System.Data.Common.dll": "sha256-QisFeEtPDQZT0vBlu+5YqQzck2fyDJoIzN+qR3SaSIs=", - "System.Data.DataSetExtensions.dll": "sha256-uGWJYi+eaImPEaJXOsBMBccFMRi4a0mPSzvKAlSnS54=", - "System.Data.dll": "sha256-gPYtercnm4lF230hqn9fkT8posbAeAxhR9Dylx\/oqFM=", - "System.Diagnostics.Contracts.dll": "sha256-BB2Izzth5DOv7CDvogmsCoyUI9GqjkH91ph\/cDjTROI=", - "System.Diagnostics.Debug.dll": "sha256-tUCd3ov7QrjYob8AA39SBAWbfsyggNbtPbO0AdFH2tY=", - "System.Diagnostics.DiagnosticSource.dll": "sha256-KmexLyYxoBsrDcwIHKgdc+3ZjwVk\/04zgZHORvFywCU=", - "System.Diagnostics.FileVersionInfo.dll": "sha256-+rTrw6ZymS88lOGWBojD\/d5Q5Dr63Q2GTvHldLu1lFI=", - "System.Diagnostics.Process.dll": "sha256-LhaRms3k8eUqXZLx1JWieR7NRwbtLCshNxa9juH4pIw=", - "System.Diagnostics.StackTrace.dll": "sha256-AK6nct1P1ggikg5WmDA6jT+xrqy\/HcXjh\/GN+ZWVBCc=", - "System.Diagnostics.TextWriterTraceListener.dll": "sha256-W0pyYKIb6Fs07PP3J5fWXNj13MCk39BGibsPbVscVxs=", - "System.Diagnostics.Tools.dll": "sha256-U7rcMfQYKo0e7rkziq29kEfwg6MmwnHHRQCZcYU+ADo=", - "System.Diagnostics.TraceSource.dll": "sha256-yNLYFuXxWdRQIlF84O8kDfn4AEA+xcThh0nC8cC9EnQ=", - "System.Diagnostics.Tracing.dll": "sha256-7svI2U48ItP6T41wPkVqMUlYkL0bIEaPLYHG4O03wdQ=", - "System.Drawing.Primitives.dll": "sha256-9hOmIWYgbRR6Pd067I4yjh6i5F9xlrD61QkoXynAPKc=", - "System.Drawing.dll": "sha256-7vgwJ4b\/T\/zsHYCXbAU7+qfEmGT6kIYlGib4JVOf9yA=", - "System.Dynamic.Runtime.dll": "sha256-C2cmGpKGlEZKs6w\/9vZkNURc7UJVVgzdt0KQ7jrGzKY=", - "System.Formats.Asn1.dll": "sha256-n9PAyaGVES2R6oc\/OrJ27AQOqqjUW3FHaeb00MJ0CDE=", - "System.Globalization.Calendars.dll": "sha256-QsR77tu42\/c9puyoFYn1Bqylq+bcLYEqGeMsZ8p67e0=", - "System.Globalization.Extensions.dll": "sha256-C\/PU2EvSH4CW9T+zdaqnveGIaWjzmzUjCyIifW24hmQ=", - "System.Globalization.dll": "sha256-XDfXwPWWLXu87fgoYs36Ahe+DV3BwYOq8Lo5Xwayn+s=", - "System.IO.Compression.Brotli.dll": "sha256-6aa2E3sdTiRGrkZwAma375sQd0Bu9ubuZdoO\/r48foE=", - "System.IO.Compression.FileSystem.dll": "sha256-MsW4P3qcM1YezdWwVsuJ5DVxCPgDkiyE9euV5E5za+E=", - "System.IO.Compression.ZipFile.dll": "sha256-SKC03Y5QjVMaGOy\/p23yyiMDGS6Q1rMTttLKzkm+\/cc=", - "System.IO.Compression.dll": "sha256-WoxloWnKqGzBlHfeWpLKdB31HOxspWGlMvd53f5uvSU=", - "System.IO.FileSystem.AccessControl.dll": "sha256-9lZ0fFg+9FgWEdGCGmpZJhSuGUOxtz+c6mKLG\/DMC1s=", - "System.IO.FileSystem.DriveInfo.dll": "sha256-Tve4l6w0buDpClDycjPW3iWyhcX1vhQIsHklups\/xI4=", - "System.IO.FileSystem.Primitives.dll": "sha256-FlZgUtpHH8KaWL7cdFs0TgXr9cIULio9YeDx7+oNVBU=", - "System.IO.FileSystem.Watcher.dll": "sha256-EvGvYNCiAn9YN3rkGTrGtLzCqb4grFSPsvY4A3oh1qQ=", - "System.IO.FileSystem.dll": "sha256-UkYgxpxY0338XGkxEO0CuZSflBXGAFKJXFR2R5z4P+8=", - "System.IO.IsolatedStorage.dll": "sha256-G8vUFtVjayiR8lHIAd\/YTsXoGKTkrWosThz76TI5F6I=", - "System.IO.MemoryMappedFiles.dll": "sha256-D4pZCClKeaBLhFoZ19iIAR6k2uHrrxVmtllhpctJv18=", - "System.IO.Pipes.AccessControl.dll": "sha256-E97VOGg\/r00sGq\/if6QLd9G7fQgVxMStkNdzKWosBc0=", - "System.IO.Pipes.dll": "sha256-C4IQAozM5w0\/FzeDCkfeUrlr8ZbYWUlmA7b6YHmfzS4=", - "System.IO.UnmanagedMemoryStream.dll": "sha256-OUEezfn7qJPkmgv4oFieC43+gdSR4IudWEmfZknpAvQ=", - "System.IO.dll": "sha256-lU8eZnIIizp3eeaB2d6Kln6nZwHW9R3jnEQZeD2V8xY=", - "System.Linq.Expressions.dll": "sha256-zOUJ1nU7gjDpiSNWaXa++X+GFzzGd7HsZvFfoOSFcwY=", - "System.Linq.Parallel.dll": "sha256-g9AG3FtD2iW0twp9gTsZ5eQxWPIwm1ebWRt1syV2LO4=", - "System.Linq.Queryable.dll": "sha256-9cwWew044xx3RqpdN3D79nxgEwSwPzod5T7drMNjz+c=", - "System.Linq.dll": "sha256-hdUKXrCbkbu0ZY0BVkcDwDephHAi7rCtPRuQsdcCtTk=", - "System.Memory.dll": "sha256-AfU9x5Gpyg13j+B1PLHFxhhkkgw\/7\/0tkUegOpuoEgU=", - "System.Net.Http.Json.dll": "sha256-iZlVaOgQCi58jRLdGxFiuaSpSssYMPS6GEiaKEqfhvU=", - "System.Net.Http.dll": "sha256-4yR1bmSBPbSKjxxAAS1Upz+lTblciEJH\/gCyWsauhas=", - "System.Net.HttpListener.dll": "sha256-ZQPq5fFUP0U8VYI5I0LtpDEUBxFCBXIG6jug5RaBwqw=", - "System.Net.Mail.dll": "sha256-MnSACm3tpx\/5bG+9+Fj\/i7AgK4i\/kvKWetkpt1g5t40=", - "System.Net.NameResolution.dll": "sha256-xeLOrtJGrxG1k1+u\/\/VEdRIe7hv2Ru3AJwlkqZDou10=", - "System.Net.NetworkInformation.dll": "sha256-PcZfOJfDIKZVhBhhMYebuxJpS2oaBXxwwv6eyBwZVEU=", - "System.Net.Ping.dll": "sha256-QGS3dgEF5FB4BGN1fKCwav+QYs4R8O4Oi01sYdXOW7E=", - "System.Net.Primitives.dll": "sha256-W04UfAzwxt9SY8kQoha\/R1k+yN2b5K+Z6ROtfEH8Pbw=", - "System.Net.Quic.dll": "sha256-IG6H+TIOb0bqDtFw9Qn0WjURUeZaZh05tleDP0Igyr8=", - "System.Net.Requests.dll": "sha256-7CinPBQRcnARva3fSxfa7b2Remh2M5mQANlhaLYNfc4=", - "System.Net.Security.dll": "sha256-FHAitcg1uQQSb2SCr+wV9vYHGbvxw6VVeHUu2Ll9uv8=", - "System.Net.ServicePoint.dll": "sha256-fZTDp1TP4cEV3IdM3nQadlZkiaZM+n2I1WNzePpzYCA=", - "System.Net.Sockets.dll": "sha256-NKDS334ykrgbEjXjTZ2mjdUyjLTbM8gHkJaaVyPuPLY=", - "System.Net.WebClient.dll": "sha256-+SoKAblCRPa6zmP3csrtTtbV9Wa92HxrzWTF149IlSU=", - "System.Net.WebHeaderCollection.dll": "sha256-uFOxHUjZnrZiDEoPGY9qwrsV7E+89W1ID0eGSgMdWi0=", - "System.Net.WebProxy.dll": "sha256-TeZoPKtofT0O2G7V0v+fC6H8P0Ug3moY0kcfbxnpqLk=", - "System.Net.WebSockets.Client.dll": "sha256-4ldQzLTe51J9nNPKx5uELr73Hzsj6E17qjtmoK1BhH0=", - "System.Net.WebSockets.dll": "sha256-YmBhXsxhj80n+eSad3ZTWRoWfcbqEP\/KPuLgVfuPRsw=", - "System.Net.dll": "sha256-YaKR6k7O3yzCeLAiTXyPSBw3zE\/dQLD38ASz8Vht9Ko=", - "System.Numerics.Vectors.dll": "sha256-mIgktrtOR72ylnu3SgMu3+0pm8szgOJrbLTc04idj6U=", - "System.Numerics.dll": "sha256-d9Rg5OLNjNKZkOTmbDY227k2hz0xNAWwZ\/33tOHN6DM=", - "System.ObjectModel.dll": "sha256-K12wC9\/+TxL\/3vzgANLwoCdnrapAbHnwzFX1\/zxyP4w=", - "System.Private.DataContractSerialization.dll": "sha256-T7MUMTyqvKubR6+D73kfs79Im4Sy4I1XdD5OM9iwkPM=", - "System.Private.Runtime.InteropServices.JavaScript.dll": "sha256-UyoXi6gzj6HkKcApx2qdOfvzAGv+PWa78VfNwSOdre8=", - "System.Private.Uri.dll": "sha256-J5bDSvm4jX7qFtcDn5OKJzNZbccp0Eocg5C3sXdfm8A=", - "System.Private.Xml.Linq.dll": "sha256-peKWRW2\/BSbZluHiwctIgwX44RUBcFlsjmzet3Oa1HI=", - "System.Private.Xml.dll": "sha256-WDaYzzP27HZ6zwijWZaEzarfWpYWMdCqIO66Jq+M8RQ=", - "System.Reflection.DispatchProxy.dll": "sha256-Kzb0rjUfXmtZ+uoohuIj6XG+IrIweKvIRMTcQtCQoUU=", - "System.Reflection.Emit.ILGeneration.dll": "sha256-pE1ZqtWtc3jcDQjJCHDfjmXRY27TcRX+YkRLJiTiqnM=", - "System.Reflection.Emit.Lightweight.dll": "sha256-PaNMU3ap\/8MItfqbF3LmTkkfsz2gbW3nn2aJcSsCCvs=", - "System.Reflection.Emit.dll": "sha256-XDgOnN+Ec5h+eb1bydVHHbZfUjvnRkKYIMlwh7K3kj8=", - "System.Reflection.Extensions.dll": "sha256-JKsTDJDSh5j9L\/WSxfipyo5VSwC+gt16DlIombV9JnQ=", - "System.Reflection.Metadata.dll": "sha256-Xvh75GrTyfErSp1eI5LnieGuksDwYVKvvXqttpdslds=", - "System.Reflection.Primitives.dll": "sha256-UvRlMpUS5pFfgKpchtV5yGODNSvSkO9XiiCCtITN+cI=", - "System.Reflection.TypeExtensions.dll": "sha256-q7H4U8NhV+IWEjmFbs7mPuUNLafE1NDii\/cAdVBXH+c=", - "System.Reflection.dll": "sha256-wU8NawkqHDchmF\/VaeIG8FLqLhdJXPqDZTYedfL2zM4=", - "System.Resources.Reader.dll": "sha256-rw\/+UpkqHo4rZvq32d1RdOSuR0hSQcSHupVq6NT1kXQ=", - "System.Resources.ResourceManager.dll": "sha256-zRBUrRgOkncVucHAXjBzrCMnmcNzZOvDCT+4etzTlWU=", - "System.Resources.Writer.dll": "sha256-EvevOqU6vp9dPJh6J\/l6QBezz22jY4iD9YPVSIFDb6s=", - "System.Runtime.CompilerServices.Unsafe.dll": "sha256-6K17V0W6VfnLiVg43QkSRUprOwfgapoZjHugwvuas0M=", - "System.Runtime.CompilerServices.VisualC.dll": "sha256-APa2rEQRuinyhpVkZ6KdD3iq0mEZIIIsv9XKEtHXGmM=", - "System.Runtime.Extensions.dll": "sha256-L2OMWQXRmvNpPocbC5pYLpbFdHj0FRuZkf2G33\/eoxE=", - "System.Runtime.Handles.dll": "sha256-n+MSIB4tQURkY7y12zb\/p8ZJbOszbezVR8TafPNrIsQ=", - "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-ZpFzbXgj3C5thUR+JOZH2saVJ6L6cGR+IkMWTdUo0zM=", - "System.Runtime.InteropServices.dll": "sha256-ZAfmG7mOtiTn\/\/KUyMrTFLy9q4nZr0noyyN8c1OhMi4=", - "System.Runtime.Intrinsics.dll": "sha256-EklfSpodEL4U2vHU3yQIBfs\/KaD1UslJItmf5WaKFzg=", - "System.Runtime.Loader.dll": "sha256-2JXo5DlrfJnRqqnmRp19HJbGqfCdFq3CMIwKCqhlHsQ=", - "System.Runtime.Numerics.dll": "sha256-W39hmZWKCKHsAoSsAYHc118MstJCwhGxdBvG1E0Y3h4=", - "System.Runtime.Serialization.Formatters.dll": "sha256-iIIhgtsbM\/1S9zc\/A2v5GL+mkZ9PIOmpzp5p5PAdLDA=", - "System.Runtime.Serialization.Json.dll": "sha256-gOe6QckUOG+ZzGfIUkE1yZQ5p3Vd7fIv0MM0NMG2+eg=", - "System.Runtime.Serialization.Primitives.dll": "sha256-E\/MN\/FdXTQFLd752DDurxJ3rLlac3OAJNiSqRUAC2Wc=", - "System.Runtime.Serialization.Xml.dll": "sha256-Eb+Bz6dqvV0QHj4hfC54n4fTFVQBej7g9qCQmB\/jQR0=", - "System.Runtime.Serialization.dll": "sha256-PhOVm+iUnZSLUKLKT7nJjkJ8dsuVVPQLGG3viCcmyME=", - "System.Runtime.dll": "sha256-nGmRByhcm6aLgKxHcPE7nXeD3\/vQJL2W6LbGkZ3jg8Y=", - "System.Security.AccessControl.dll": "sha256-KfxuXhcCl\/9Pmcl9FxOK2EX9U8rs\/0wy0oqrquXH5Uc=", - "System.Security.Claims.dll": "sha256-czRguTF9jKcB8T\/1fmKdMOCE8Np5jX+qLadC0n2v9hw=", - "System.Security.Cryptography.Algorithms.dll": "sha256-E6hIIvnYR+\/npcHrwVFG475bsSHGJ86dSpsD4rOpZ8U=", - "System.Security.Cryptography.Cng.dll": "sha256-cyGHGhH089lmlh7LsIcpbh0tBBalLhCnQSrnCxZPHNQ=", - "System.Security.Cryptography.Csp.dll": "sha256-cN0WAURvTnWTBj8ynoeKwdFPxx3QdpChZsWNFNYKPsk=", - "System.Security.Cryptography.Encoding.dll": "sha256-OKKqVj9kJ3Y1dkQSm1GZwcxwdVctR4lyfufvdOi2jjk=", - "System.Security.Cryptography.OpenSsl.dll": "sha256-52dV2B6OvEo59T9KyNotsyzjiayyJ+tdCrt3joYnOWk=", - "System.Security.Cryptography.Primitives.dll": "sha256-+gyCRDm6zbGjr\/A22iw7WCheMKs\/u3yPSVtnk8G0rIw=", - "System.Security.Cryptography.X509Certificates.dll": "sha256-rgRoBgWthPnK4ksHZoZBv9jh8ja7LyHcEYb3mr51EL0=", - "System.Security.Principal.Windows.dll": "sha256-gleQbVzK9IsJCVC8Pbdd7THYYyHvaOAPcPxHWL+lWT0=", - "System.Security.Principal.dll": "sha256-PvxVqzoAtUucsuUg+UlNjmQDoXQFAcmgd26iFc61X7k=", - "System.Security.SecureString.dll": "sha256-S5\/yBMMXJpWduYNdCHGBMcaHPUO0T1BNdA7n3zpz6JY=", - "System.Security.dll": "sha256-m9vbgGP4MLvRh8Ofa+\/GSS6yHHMZc1AikOXU\/FLeTHg=", - "System.ServiceModel.Web.dll": "sha256-KQfgXJ67+pR4yf+\/Egw1GuyOY4+pVGLv+ykG0MLi2+c=", - "System.ServiceProcess.dll": "sha256-j7NKDkjuaEOrTqTwf+wuXD5ecvV8hG0AL0H8ajGFxxs=", - "System.Text.Encoding.CodePages.dll": "sha256-DFJcVE5YoUsUTZDRTdi+8q1vcpIGZnI\/UbCf+4GdJ+0=", - "System.Text.Encoding.Extensions.dll": "sha256-ud04p\/IgOICKQ4hRKHn1B3qZeLYRc8X1FlUvhkoNFvM=", - "System.Text.Encoding.dll": "sha256-H9If4AVIBLCmSf4xTCdSH7qKas173BKxErN6IzYpdO0=", - "System.Text.Encodings.Web.dll": "sha256-P7DpDcIuZ9ctgcXD3CQ9b7rdLW9+jEL4vx9vKHYyxXo=", - "System.Text.Json.dll": "sha256-Z\/DhRhO1eT1cOMbPzDFqRIZCh3Ii5r37+mshMLLlID0=", - "System.Text.RegularExpressions.dll": "sha256-1epmmxLCRGJneOMTLFg5zryW96chWg9pBq+Rrya7gcY=", - "System.Threading.Channels.dll": "sha256-vBdrcTcL01LAZftbe6V\/MHW53fwnSnAvX7rvGPTHMD4=", - "System.Threading.Overlapped.dll": "sha256-CT9PucBLgFGf3wJ+LfWMJNI0YS2uEGgZIQEHgeLxSeU=", - "System.Threading.Tasks.Dataflow.dll": "sha256-V0gELODyuzGogxSSQc4h0p5tGA6TYEuNkSi6JaN2Bq8=", - "System.Threading.Tasks.Extensions.dll": "sha256-gbflKKrV044ELtapmrcITXsiZKK9ag8ia3+\/yxKI\/74=", - "System.Threading.Tasks.Parallel.dll": "sha256-NMkD5rsWmNqYTO8rqEdHHWhcJMuNfe9KMoMXcoy8P\/M=", - "System.Threading.Tasks.dll": "sha256-c1IdXHP1+ttWv2Lk3l5e9wt+xWA3UTlJzEp4YZA3jHM=", - "System.Threading.Thread.dll": "sha256-7JrNNGNseUTd8aBQ+46M75DDKegFxP4Mfj6EdGEO7e8=", - "System.Threading.ThreadPool.dll": "sha256-\/VtLkPxzg03axqV1AWU0y6rtPzUtE7Covhtz35Gd4WI=", - "System.Threading.Timer.dll": "sha256-9Sfga8ftnPShNk6TfvBN7pJttKTqoeB8Dh5Dl6Jj+0A=", - "System.Threading.dll": "sha256-\/qU2wLSHAm5M80qWvcUHegm58B5PE8jHz+vRhG0oyWk=", - "System.Transactions.Local.dll": "sha256-PwLEaoYIUqnhSUuBmLeg7Z9xdp3xeN\/KeLbl5KGWddM=", - "System.Transactions.dll": "sha256-Hw7yQFO6s2F7tSF28ZqbYVZYU8C0E2t3Tl3td0j03jA=", - "System.ValueTuple.dll": "sha256-bROgzdvXEX2kG+3mUsg2DaitY8orpKTci0LXGrkggmw=", - "System.Web.HttpUtility.dll": "sha256-T53rVtP58TtoQh2Fbp56OkN09vIEpHkmDEnRT3rgPaY=", - "System.Web.dll": "sha256-n\/Yffqf1O7pklzkAhoBOrgu3ctNf+N1BjZlI1XJ73OQ=", - "System.Windows.dll": "sha256-Wvaw3qXl5ky\/d9vKfUHusZKKAm7p6DXWjVUAdEtr0FQ=", - "System.Xml.Linq.dll": "sha256-cqkrXv5FQ\/CFEUI0TUq1XLudTpbl+ylbtK4MgrjjCn0=", - "System.Xml.ReaderWriter.dll": "sha256-LdOx6fdRyfImo076YqJswg5T\/kz0W35zY5Bxzvu4bg0=", - "System.Xml.Serialization.dll": "sha256-jDgvUAJcbga4YBf85rlJS+mBa9PPfEq5xPpWi0Yy7vU=", - "System.Xml.XDocument.dll": "sha256-379HQGCc7jcbJBv3EZ9oThRs4+KytL4+4grGGXK0NAE=", - "System.Xml.XPath.XDocument.dll": "sha256-HDoYy88J2a\/d03AAgJYAoU7SCO9fSuyRu9sUzFg5cSA=", - "System.Xml.XPath.dll": "sha256-zdO8KHqhw4CvshzXavUPMftdzNGO3P6RsoqiWIkB9VY=", - "System.Xml.XmlDocument.dll": "sha256-9mzmBNe2e7m9RnR3Pk+Rzkq8X3jVmuZoVaJ+aDtZ1vE=", - "System.Xml.XmlSerializer.dll": "sha256-7IG747ObsbU0F1XE1cPzo5stiK3+Bzu5QJTsbNp1ghw=", - "System.Xml.dll": "sha256-Pk6SFlpcUa9rGuzLsrYMxXBJ5+z27OyyFJ9LRlnopzM=", - "System.dll": "sha256-38ae8SoDtR6ynwmRtxV4XYa77mxCTS97Wi4r655aIGI=", - "WindowsBase.dll": "sha256-KvLLadWLn60MfIz5AYXq00L9kT67VsOzuR4tAm4vUow=", - "mscorlib.dll": "sha256-zNVxhWqav+Wvwc8mjOqsl40bhVLw78MhgITrphqoROc=", - "netstandard.dll": "sha256-yQ7oiuGXRX47V21EibXbfTPXOkJGOgCJhW9YF6e4hw0=", - "System.Private.CoreLib.dll": "sha256-Ug2\/rd8Ck7Dls6uaZNmrqc7EvE8f41iX96qdX57LStQ=", - "Account_SQLite.dll": "sha256-huZPl9JvS5hXgLcmNbcyCiWI\/3h5MVMsJScrLQuIGDw=" - }, - "extensions": null, - "lazyAssembly": null, - "libraryInitializers": null, - "pdb": { - "Account_SQLite.pdb": "sha256-HUdQaXaMhj97f6DyUgBc1KQlVH7sT2rk0vZfraEWGuw=" - }, - "runtime": { - "dotnet.timezones.blat": "sha256-44J\/Hf\/X8VbgiBAazDB8c0FaVrAFYOb4BbGyQwuzNyk=", - "icudt.dat": "sha256-Zuq0dWAsBm6\/2lSOsz7+H9PvFaRn61KIXHMMwXDfvyE=", - "icudt_CJK.dat": "sha256-WPyI4hWDPnOw62Nr27FkzGjdbucZnQD+Ph+GOPhAedw=", - "icudt_EFIGS.dat": "sha256-4RwaPx87Z4dvn77ie\/ro3\/QzyS+\/gGmO3Y\/0CSAXw4k=", - "icudt_no_CJK.dat": "sha256-OxylFgLJlFqixsj+nLxYVsv5iZLvfIKMpLf9hrWaChA=", - "dotnet.wasm": "sha256-3xQeIRtu\/DogglGK8zEoSxKRD\/1bIBBowMgkcGf9dKs=", - "dotnet..0qqpqpio55.js": "sha256-qCSLMmIabrtbMnfRF0pXcNjoDs32EPFTuLEZ0FHxHGI=" - }, - "satelliteResources": null - } -} \ No newline at end of file diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js deleted file mode 100755 index f8897437..00000000 --- a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js +++ /dev/null @@ -1 +0,0 @@ -(()=>{"use strict";var e,t,n;!function(e){window.DotNet=e;const t=[],n=new Map,r=new Map,o="__jsObjectId",s="__byte[]";class a{constructor(e){this._jsObject=e,this._cachedFunctions=new Map}findFunction(e){const t=this._cachedFunctions.get(e);if(t)return t;let n,r=this._jsObject;if(e.split(".").forEach((t=>{if(!(t in r))throw new Error(`Could not find '${e}' ('${t}' was undefined).`);n=r,r=r[t]})),r instanceof Function)return r=r.bind(n),this._cachedFunctions.set(e,r),r;throw new Error(`The value '${e}' is not a function.`)}getWrappedObject(){return this._jsObject}}const i={},c={0:new a(window)};c[0]._cachedFunctions.set("import",(e=>("string"==typeof e&&e.startsWith("./")&&(e=document.baseURI+e.substr(2)),import(e))));let l,u=1,d=1,f=null;function m(e){t.push(e)}function h(e){if(e&&"object"==typeof e){c[d]=new a(e);const t={[o]:d};return d++,t}throw new Error(`Cannot create a JSObjectReference from the value '${e}'.`)}function p(e){let t=-1;if(e instanceof ArrayBuffer&&(e=new Uint8Array(e)),e instanceof Blob)t=e.size;else{if(!(e.buffer instanceof ArrayBuffer))throw new Error("Supplied value is not a typed array or blob.");if(void 0===e.byteLength)throw new Error(`Cannot create a JSStreamReference from the value '${e}' as it doesn't have a byteLength.`);t=e.byteLength}const n={__jsStreamReferenceLength:t};try{const t=h(e);n.__jsObjectId=t.__jsObjectId}catch{throw new Error(`Cannot create a JSStreamReference from the value '${e}'.`)}return n}function y(e){return e?JSON.parse(e,((e,n)=>t.reduce(((t,n)=>n(e,t)),n))):null}function g(e,t,n,r){const o=w();if(o.invokeDotNetFromJS){const s=O(r),a=o.invokeDotNetFromJS(e,t,n,s);return a?y(a):null}throw new Error("The current dispatcher does not support synchronous calls from JS to .NET. Use invokeMethodAsync instead.")}function b(e,t,n,r){if(e&&n)throw new Error(`For instance method calls, assemblyName should be null. Received '${e}'.`);const o=u++,s=new Promise(((e,t)=>{i[o]={resolve:e,reject:t}}));try{const s=O(r);w().beginInvokeDotNetFromJS(o,e,t,n,s)}catch(e){v(o,!1,e)}return s}function w(){if(null!==f)return f;throw new Error("No .NET call dispatcher has been set.")}function v(e,t,n){if(!i.hasOwnProperty(e))throw new Error(`There is no pending async call with ID ${e}.`);const r=i[e];delete i[e],t?r.resolve(n):r.reject(n)}function E(e){return e instanceof Error?`${e.message}\n${e.stack}`:e?e.toString():"null"}function _(e,t){let n=c[t];if(n)return n.findFunction(e);throw new Error(`JS object instance with ID ${t} does not exist (has it been disposed?).`)}function I(e){delete c[e]}e.attachDispatcher=function(e){f=e},e.attachReviver=m,e.invokeMethod=function(e,t,...n){return g(e,t,null,n)},e.invokeMethodAsync=function(e,t,...n){return b(e,t,null,n)},e.createJSObjectReference=h,e.createJSStreamReference=p,e.disposeJSObjectReference=function(e){const t=e&&e.__jsObjectId;"number"==typeof t&&I(t)},function(e){e[e.Default=0]="Default",e[e.JSObjectReference=1]="JSObjectReference",e[e.JSStreamReference=2]="JSStreamReference",e[e.JSVoidResult=3]="JSVoidResult"}(l=e.JSCallResultType||(e.JSCallResultType={})),e.jsCallDispatcher={findJSFunction:_,disposeJSObjectReferenceById:I,invokeJSFromDotNet:(e,t,n,r)=>{const o=S(_(e,r).apply(null,y(t)),n);return null==o?null:O(o)},beginInvokeJSFromDotNet:(e,t,n,r,o)=>{const s=new Promise((e=>{e(_(t,o).apply(null,y(n)))}));e&&s.then((t=>w().endInvokeJSFromDotNet(e,!0,O([e,!0,S(t,r)]))),(t=>w().endInvokeJSFromDotNet(e,!1,JSON.stringify([e,!1,E(t)]))))},endInvokeDotNetFromJS:(e,t,n)=>{const r=t?y(n):new Error(n);v(parseInt(e),t,r)},receiveByteArray:(e,t)=>{n.set(e,t)},supplyDotNetStream:(e,t)=>{if(r.has(e)){const n=r.get(e);r.delete(e),n.resolve(t)}else{const n=new A;n.resolve(t),r.set(e,n)}}};class N{constructor(e){this._id=e}invokeMethod(e,...t){return g(null,e,this._id,t)}invokeMethodAsync(e,...t){return b(null,e,this._id,t)}dispose(){b(null,"__Dispose",this._id,null).catch((e=>console.error(e)))}serializeAsArg(){return{__dotNetObject:this._id}}}e.DotNetObject=N,m((function(e,t){if(t&&"object"==typeof t){if(t.hasOwnProperty("__dotNetObject"))return new N(t.__dotNetObject);if(t.hasOwnProperty(o)){const e=t.__jsObjectId,n=c[e];if(n)return n.getWrappedObject();throw new Error(`JS object instance with Id '${e}' does not exist. It may have been disposed.`)}if(t.hasOwnProperty(s)){const e=t["__byte[]"],r=n.get(e);if(void 0===r)throw new Error(`Byte array index '${e}' does not exist.`);return n.delete(e),r}if(t.hasOwnProperty("__dotNetStream"))return new C(t.__dotNetStream)}return t}));class C{constructor(e){var t;if(r.has(e))this._streamPromise=null===(t=r.get(e))||void 0===t?void 0:t.streamPromise,r.delete(e);else{const t=new A;r.set(e,t),this._streamPromise=t.streamPromise}}stream(){return this._streamPromise}async arrayBuffer(){return new Response(await this.stream()).arrayBuffer()}}class A{constructor(){this.streamPromise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}function S(e,t){switch(t){case l.Default:return e;case l.JSObjectReference:return h(e);case l.JSStreamReference:return p(e);case l.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${t}'.`)}}let R=0;function O(e){return R=0,JSON.stringify(e,k)}function k(e,t){if(t instanceof N)return t.serializeAsArg();if(t instanceof Uint8Array){f.sendByteArray(R,t);const e={[s]:R};return R++,e}return t}}(e||(e={})),function(e){e[e.prependFrame=1]="prependFrame",e[e.removeFrame=2]="removeFrame",e[e.setAttribute=3]="setAttribute",e[e.removeAttribute=4]="removeAttribute",e[e.updateText=5]="updateText",e[e.stepIn=6]="stepIn",e[e.stepOut=7]="stepOut",e[e.updateMarkup=8]="updateMarkup",e[e.permutationListEntry=9]="permutationListEntry",e[e.permutationListEnd=10]="permutationListEnd"}(t||(t={})),function(e){e[e.element=1]="element",e[e.text=2]="text",e[e.attribute=3]="attribute",e[e.component=4]="component",e[e.region=5]="region",e[e.elementReferenceCapture=6]="elementReferenceCapture",e[e.markup=8]="markup"}(n||(n={}));class r{constructor(e,t){this.componentId=e,this.fieldValue=t}static fromEvent(e,t){const n=t.target;if(n instanceof Element){const t=function(e){return e instanceof HTMLInputElement?e.type&&"checkbox"===e.type.toLowerCase()?{value:e.checked}:{value:e.value}:e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement?{value:e.value}:null}(n);if(t)return new r(e,t.value)}return null}}const o=new Map,s=new Map,a=[];function i(e){return o.get(e)}function c(e){const t=o.get(e);return(null==t?void 0:t.browserEventName)||e}function l(e,t){e.forEach((e=>o.set(e,t)))}function u(e){const t=[];for(let n=0;ne.selected)).map((e=>e.value))}}return{value:function(e){return!!e&&"INPUT"===e.tagName&&"checkbox"===e.getAttribute("type")}(t)?!!t.checked:t.value}}}),l(["copy","cut","paste"],{createEventArgs:e=>({type:e.type})}),l(["drag","dragend","dragenter","dragleave","dragover","dragstart","drop"],{createEventArgs:e=>{return{...d(t=e),dataTransfer:t.dataTransfer?{dropEffect:t.dataTransfer.dropEffect,effectAllowed:t.dataTransfer.effectAllowed,files:Array.from(t.dataTransfer.files).map((e=>e.name)),items:Array.from(t.dataTransfer.items).map((e=>({kind:e.kind,type:e.type}))),types:t.dataTransfer.types}:null};var t}}),l(["focus","blur","focusin","focusout"],{createEventArgs:e=>({type:e.type})}),l(["keydown","keyup","keypress"],{createEventArgs:e=>{return{key:(t=e).key,code:t.code,location:t.location,repeat:t.repeat,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["contextmenu","click","mouseover","mouseout","mousemove","mousedown","mouseup","dblclick"],{createEventArgs:e=>d(e)}),l(["error"],{createEventArgs:e=>{return{message:(t=e).message,filename:t.filename,lineno:t.lineno,colno:t.colno,type:t.type};var t}}),l(["loadstart","timeout","abort","load","loadend","progress"],{createEventArgs:e=>{return{lengthComputable:(t=e).lengthComputable,loaded:t.loaded,total:t.total,type:t.type};var t}}),l(["touchcancel","touchend","touchmove","touchenter","touchleave","touchstart"],{createEventArgs:e=>{return{detail:(t=e).detail,touches:u(t.touches),targetTouches:u(t.targetTouches),changedTouches:u(t.changedTouches),ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["gotpointercapture","lostpointercapture","pointercancel","pointerdown","pointerenter","pointerleave","pointermove","pointerout","pointerover","pointerup"],{createEventArgs:e=>{return{...d(t=e),pointerId:t.pointerId,width:t.width,height:t.height,pressure:t.pressure,tiltX:t.tiltX,tiltY:t.tiltY,pointerType:t.pointerType,isPrimary:t.isPrimary};var t}}),l(["wheel","mousewheel"],{createEventArgs:e=>{return{...d(t=e),deltaX:t.deltaX,deltaY:t.deltaY,deltaZ:t.deltaZ,deltaMode:t.deltaMode};var t}}),l(["toggle"],{createEventArgs:()=>({})});const f=["date","datetime-local","month","time","week"],m=new Map;let h,p,y=0;const g={async add(e,t,n){if(!n)throw new Error("initialParameters must be an object, even if empty.");const r="__bl-dynamic-root:"+(++y).toString();m.set(r,e);const o=await v().invokeMethodAsync("AddRootComponent",t,r),s=new w(o,p[t]);return await s.setParameters(n),s}};class b{invoke(e){return this._callback(e)}setCallback(t){this._selfJSObjectReference||(this._selfJSObjectReference=e.createJSObjectReference(this)),this._callback=t}getJSObjectReference(){return this._selfJSObjectReference}dispose(){this._selfJSObjectReference&&e.disposeJSObjectReference(this._selfJSObjectReference)}}class w{constructor(e,t){this._jsEventCallbackWrappers=new Map,this._componentId=e;for(const e of t)"eventcallback"===e.type&&this._jsEventCallbackWrappers.set(e.name.toLowerCase(),new b)}setParameters(e){const t={},n=Object.entries(e||{}),r=n.length;for(const[e,r]of n){const n=this._jsEventCallbackWrappers.get(e.toLowerCase());n&&r?(n.setCallback(r),t[e]=n.getJSObjectReference()):t[e]=r}return v().invokeMethodAsync("SetRootComponentParameters",this._componentId,r,t)}async dispose(){if(null!==this._componentId){await v().invokeMethodAsync("RemoveRootComponent",this._componentId),this._componentId=null;for(const e of this._jsEventCallbackWrappers.values())e.dispose()}}}function v(){if(!h)throw new Error("Dynamic root components have not been enabled in this application.");return h}const E=new Map;let _;const I=new Promise((e=>{_=e}));function N(e,t,n){return A(e,t.eventHandlerId,(()=>C(e).invokeMethodAsync("DispatchEventAsync",t,n)))}function C(e){const t=E.get(e);if(!t)throw new Error(`No interop methods are registered for renderer ${e}`);return t}let A=(e,t,n)=>n();const S=F(["abort","blur","canplay","canplaythrough","change","cuechange","durationchange","emptied","ended","error","focus","load","loadeddata","loadedmetadata","loadend","loadstart","mouseenter","mouseleave","pause","play","playing","progress","ratechange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeupdate","toggle","unload","volumechange","waiting","DOMNodeInsertedIntoDocument","DOMNodeRemovedFromDocument"]),R={submit:!0},O=F(["click","dblclick","mousedown","mousemove","mouseup"]);class k{constructor(e){this.browserRendererId=e,this.afterClickCallbacks=[];const t=++k.nextEventDelegatorId;this.eventsCollectionKey=`_blazorEvents_${t}`,this.eventInfoStore=new D(this.onGlobalEvent.bind(this))}setListener(e,t,n,r){const o=this.getEventHandlerInfosForElement(e,!0),s=o.getHandler(t);if(s)this.eventInfoStore.update(s.eventHandlerId,n);else{const s={element:e,eventName:t,eventHandlerId:n,renderingComponentId:r};this.eventInfoStore.add(s),o.setHandler(t,s)}}getHandler(e){return this.eventInfoStore.get(e)}removeListener(e){const t=this.eventInfoStore.remove(e);if(t){const e=t.element,n=this.getEventHandlerInfosForElement(e,!1);n&&n.removeHandler(t.eventName)}}notifyAfterClick(e){this.afterClickCallbacks.push(e),this.eventInfoStore.addGlobalListener("click")}setStopPropagation(e,t,n){this.getEventHandlerInfosForElement(e,!0).stopPropagation(t,n)}setPreventDefault(e,t,n){this.getEventHandlerInfosForElement(e,!0).preventDefault(t,n)}onGlobalEvent(e){if(!(e.target instanceof Element))return;this.dispatchGlobalEventToAllElements(e.type,e);const t=(n=e.type,s.get(n));var n;t&&t.forEach((t=>this.dispatchGlobalEventToAllElements(t,e))),"click"===e.type&&this.afterClickCallbacks.forEach((t=>t(e)))}dispatchGlobalEventToAllElements(e,t){const n=t.composedPath();let o=n.shift(),s=null,a=!1;const c=S.hasOwnProperty(e);let l=!1;for(;o;){const f=o,m=this.getEventHandlerInfosForElement(f,!1);if(m){const n=m.getHandler(e);if(n&&(u=f,d=t.type,!((u instanceof HTMLButtonElement||u instanceof HTMLInputElement||u instanceof HTMLTextAreaElement||u instanceof HTMLSelectElement)&&O.hasOwnProperty(d)&&u.disabled))){if(!a){const n=i(e);s=(null==n?void 0:n.createEventArgs)?n.createEventArgs(t):{},a=!0}R.hasOwnProperty(t.type)&&t.preventDefault(),N(this.browserRendererId,{eventHandlerId:n.eventHandlerId,eventName:e,eventFieldInfo:r.fromEvent(n.renderingComponentId,t)},s)}m.stopPropagation(e)&&(l=!0),m.preventDefault(e)&&t.preventDefault()}o=c||l?void 0:n.shift()}var u,d}getEventHandlerInfosForElement(e,t){return e.hasOwnProperty(this.eventsCollectionKey)?e[this.eventsCollectionKey]:t?e[this.eventsCollectionKey]=new B:null}}k.nextEventDelegatorId=0;class D{constructor(e){this.globalListener=e,this.infosByEventHandlerId={},this.countByEventName={},a.push(this.handleEventNameAliasAdded.bind(this))}add(e){if(this.infosByEventHandlerId[e.eventHandlerId])throw new Error(`Event ${e.eventHandlerId} is already tracked`);this.infosByEventHandlerId[e.eventHandlerId]=e,this.addGlobalListener(e.eventName)}get(e){return this.infosByEventHandlerId[e]}addGlobalListener(e){if(e=c(e),this.countByEventName.hasOwnProperty(e))this.countByEventName[e]++;else{this.countByEventName[e]=1;const t=S.hasOwnProperty(e);document.addEventListener(e,this.globalListener,t)}}update(e,t){if(this.infosByEventHandlerId.hasOwnProperty(t))throw new Error(`Event ${t} is already tracked`);const n=this.infosByEventHandlerId[e];delete this.infosByEventHandlerId[e],n.eventHandlerId=t,this.infosByEventHandlerId[t]=n}remove(e){const t=this.infosByEventHandlerId[e];if(t){delete this.infosByEventHandlerId[e];const n=c(t.eventName);0==--this.countByEventName[n]&&(delete this.countByEventName[n],document.removeEventListener(n,this.globalListener))}return t}handleEventNameAliasAdded(e,t){if(this.countByEventName.hasOwnProperty(e)){const n=this.countByEventName[e];delete this.countByEventName[e],document.removeEventListener(e,this.globalListener),this.addGlobalListener(t),this.countByEventName[t]+=n-1}}}class B{constructor(){this.handlers={},this.preventDefaultFlags=null,this.stopPropagationFlags=null}getHandler(e){return this.handlers.hasOwnProperty(e)?this.handlers[e]:null}setHandler(e,t){this.handlers[e]=t}removeHandler(e){delete this.handlers[e]}preventDefault(e,t){return void 0!==t&&(this.preventDefaultFlags=this.preventDefaultFlags||{},this.preventDefaultFlags[e]=t),!!this.preventDefaultFlags&&this.preventDefaultFlags[e]}stopPropagation(e,t){return void 0!==t&&(this.stopPropagationFlags=this.stopPropagationFlags||{},this.stopPropagationFlags[e]=t),!!this.stopPropagationFlags&&this.stopPropagationFlags[e]}}function F(e){const t={};return e.forEach((e=>{t[e]=!0})),t}const T=Y("_blazorLogicalChildren"),M=Y("_blazorLogicalParent"),j=Y("_blazorLogicalEnd");function L(e,t){if(e.childNodes.length>0&&!t)throw new Error("New logical elements must start empty, or allowExistingContents must be true");return T in e||(e[T]=[]),e}function P(e,t){const n=document.createComment("!");return x(n,e,t),n}function x(e,t,n){const r=e;if(e instanceof Comment&&z(r)&&z(r).length>0)throw new Error("Not implemented: inserting non-empty logical container");if($(r))throw new Error("Not implemented: moving existing logical children");const o=z(t);if(n0;)H(n,0)}const r=n;r.parentNode.removeChild(r)}function $(e){return e[M]||null}function J(e,t){return z(e)[t]}function U(e){var t=W(e);return"http://www.w3.org/2000/svg"===t.namespaceURI&&"foreignObject"!==t.tagName}function z(e){return e[T]}function G(e,t){const n=z(e);t.forEach((e=>{e.moveRangeStart=n[e.fromSiblingIndex],e.moveRangeEnd=X(e.moveRangeStart)})),t.forEach((t=>{const r=t.moveToBeforeMarker=document.createComment("marker"),o=n[t.toSiblingIndex+1];o?o.parentNode.insertBefore(r,o):V(r,e)})),t.forEach((e=>{const t=e.moveToBeforeMarker,n=t.parentNode,r=e.moveRangeStart,o=e.moveRangeEnd;let s=r;for(;s;){const e=s.nextSibling;if(n.insertBefore(s,t),s===o)break;s=e}n.removeChild(t)})),t.forEach((e=>{n[e.toSiblingIndex]=e.moveRangeStart}))}function W(e){if(e instanceof Element||e instanceof DocumentFragment)return e;if(e instanceof Comment)return e.parentNode;throw new Error("Not a valid logical element")}function K(e){const t=z($(e));return t[Array.prototype.indexOf.call(t,e)+1]||null}function V(e,t){if(t instanceof Element||t instanceof DocumentFragment)t.appendChild(e);else{if(!(t instanceof Comment))throw new Error(`Cannot append node because the parent is not a valid logical element. Parent: ${t}`);{const n=K(t);n?n.parentNode.insertBefore(e,n):V(e,$(t))}}}function X(e){if(e instanceof Element||e instanceof DocumentFragment)return e;const t=K(e);if(t)return t.previousSibling;{const t=$(e);return t instanceof Element||t instanceof DocumentFragment?t.lastChild:X(t)}}function Y(e){return"function"==typeof Symbol?Symbol():e}function q(e){return`_bl_${e}`}e.attachReviver(((e,t)=>t&&"object"==typeof t&&t.hasOwnProperty("__internalId")&&"string"==typeof t.__internalId?function(e){const t=`[${q(e)}]`;return document.querySelector(t)}(t.__internalId):t));const Z="_blazorDeferredValue",Q=document.createElement("template"),ee=document.createElementNS("http://www.w3.org/2000/svg","g"),te={},ne="__internal_",re="preventDefault_",oe="stopPropagation_";class se{constructor(e){this.rootComponentIds=new Set,this.childComponentLocations={},this.eventDelegator=new k(e),this.eventDelegator.notifyAfterClick((e=>{if(!he)return;if(0!==e.button||function(e){return e.ctrlKey||e.shiftKey||e.altKey||e.metaKey}(e))return;if(e.defaultPrevented)return;const t=function(e){const t=!window._blazorDisableComposedPath&&e.composedPath&&e.composedPath();if(t){for(let e=0;eve(!1))))},enableNavigationInterception:function(){he=!0},navigateTo:be,getBaseURI:()=>document.baseURI,getLocationHref:()=>location.href};function be(e,t,n=!1){const r=_e(e),o=t instanceof Object?t:{forceLoad:t,replaceHistoryEntry:n};!o.forceLoad&&Ne(r)?we(r,!1,o.replaceHistoryEntry):function(e,t){if(location.href===e){const t=e+"?";history.replaceState(null,"",t),location.replace(e)}else t?location.replace(e):location.href=e}(e,o.replaceHistoryEntry)}function we(e,t,n){fe=!0,n?history.replaceState(null,"",e):history.pushState(null,"",e),ve(t)}async function ve(e){ye&&await ye(location.href,e)}let Ee;function _e(e){return Ee=Ee||document.createElement("a"),Ee.href=e,Ee.href}function Ie(e,t){return e?e.tagName===t?e:Ie(e.parentElement,t):null}function Ne(e){const t=(n=document.baseURI).substr(0,n.lastIndexOf("/")+1);var n;return e.startsWith(t)}const Ce={focus:function(e,t){if(e instanceof HTMLElement)e.focus({preventScroll:t});else{if(!(e instanceof SVGElement))throw new Error("Unable to focus an invalid element.");if(!e.hasAttribute("tabindex"))throw new Error("Unable to focus an SVG element that does not have a tabindex.");e.focus({preventScroll:t})}},focusBySelector:function(e){const t=document.querySelector(e);t&&(t.hasAttribute("tabindex")||(t.tabIndex=-1),t.focus())}},Ae={init:function(e,t,n,r=50){const o=Re(t);(o||document.documentElement).style.overflowAnchor="none";const s=document.createRange();u(n.parentElement)&&(t.style.display="table-row",n.style.display="table-row");const a=new IntersectionObserver((function(r){r.forEach((r=>{var o;if(!r.isIntersecting)return;s.setStartAfter(t),s.setEndBefore(n);const a=s.getBoundingClientRect().height,i=null===(o=r.rootBounds)||void 0===o?void 0:o.height;r.target===t?e.invokeMethodAsync("OnSpacerBeforeVisible",r.intersectionRect.top-r.boundingClientRect.top,a,i):r.target===n&&n.offsetHeight>0&&e.invokeMethodAsync("OnSpacerAfterVisible",r.boundingClientRect.bottom-r.intersectionRect.bottom,a,i)}))}),{root:o,rootMargin:`${r}px`});a.observe(t),a.observe(n);const i=l(t),c=l(n);function l(e){const t={attributes:!0},n=new MutationObserver(((n,r)=>{u(e.parentElement)&&(r.disconnect(),e.style.display="table-row",r.observe(e,t)),a.unobserve(e),a.observe(e)}));return n.observe(e,t),n}function u(e){return null!==e&&(e instanceof HTMLTableElement&&""===e.style.display||"table"===e.style.display||e instanceof HTMLTableSectionElement&&""===e.style.display||"table-row-group"===e.style.display)}Se[e._id]={intersectionObserver:a,mutationObserverBefore:i,mutationObserverAfter:c}},dispose:function(e){const t=Se[e._id];t&&(t.intersectionObserver.disconnect(),t.mutationObserverBefore.disconnect(),t.mutationObserverAfter.disconnect(),e.dispose(),delete Se[e._id])}},Se={};function Re(e){return e?"visible"!==getComputedStyle(e).overflowY?e:Re(e.parentElement):null}const Oe={getAndRemoveExistingTitle:function(){var e;const t=document.getElementsByTagName("title");if(0===t.length)return null;let n=null;for(let r=t.length-1;r>=0;r--){const o=t[r],s=o.previousSibling;s instanceof Comment&&null!==$(s)||(null===n&&(n=o.textContent),null===(e=o.parentNode)||void 0===e||e.removeChild(o))}return n}},ke={init:function(e,t){t._blazorInputFileNextFileId=0,t.addEventListener("click",(function(){t.value=""})),t.addEventListener("change",(function(){t._blazorFilesById={};const n=Array.prototype.map.call(t.files,(function(e){const n={id:++t._blazorInputFileNextFileId,lastModified:new Date(e.lastModified).toISOString(),name:e.name,size:e.size,contentType:e.type,readPromise:void 0,arrayBuffer:void 0,blob:e};return t._blazorFilesById[n.id]=n,n}));e.invokeMethodAsync("NotifyChange",n)}))},toImageFile:async function(e,t,n,r,o){const s=De(e,t),a=await new Promise((function(e){const t=new Image;t.onload=function(){URL.revokeObjectURL(t.src),e(t)},t.onerror=function(){t.onerror=null,URL.revokeObjectURL(t.src)},t.src=URL.createObjectURL(s.blob)})),i=await new Promise((function(e){var t;const s=Math.min(1,r/a.width),i=Math.min(1,o/a.height),c=Math.min(s,i),l=document.createElement("canvas");l.width=Math.round(a.width*c),l.height=Math.round(a.height*c),null===(t=l.getContext("2d"))||void 0===t||t.drawImage(a,0,0,l.width,l.height),l.toBlob(e,n)})),c={id:++e._blazorInputFileNextFileId,lastModified:s.lastModified,name:s.name,size:(null==i?void 0:i.size)||0,contentType:n,blob:i||s.blob};return e._blazorFilesById[c.id]=c,c},readFileData:async function(e,t){return De(e,t).blob}};function De(e,t){const n=e._blazorFilesById[t];if(!n)throw new Error(`There is no file with ID ${t}. The file list may have changed.`);return n}const Be=new Map,Fe={navigateTo:be,registerCustomEventType:function(e,t){if(!t)throw new Error("The options parameter is required.");if(o.has(e))throw new Error(`The event '${e}' is already registered.`);if(t.browserEventName){const n=s.get(t.browserEventName);n?n.push(e):s.set(t.browserEventName,[e]),a.forEach((n=>n(e,t.browserEventName)))}o.set(e,t)},rootComponents:g,_internal:{navigationManager:ge,domWrapper:Ce,Virtualize:Ae,PageTitle:Oe,InputFile:ke,getJSDataStreamChunk:async function(e,t,n){return e instanceof Blob?await async function(e,t,n){const r=e.slice(t,t+n),o=await r.arrayBuffer();return new Uint8Array(o)}(e,t,n):function(e,t,n){return new Uint8Array(e.buffer,e.byteOffset+t,n)}(e,t,n)},receiveDotNetDataStream:function(t,n,r,o){let s=Be.get(t);if(!s){const n=new ReadableStream({start(e){Be.set(t,e),s=e}});e.jsCallDispatcher.supplyDotNetStream(t,n)}o?(s.error(o),Be.delete(t)):0===r?(s.close(),Be.delete(t)):s.enqueue(n.length===r?n:n.subarray(0,r))},attachWebRendererInterop:function(t,n,r,o){if(E.has(t))throw new Error(`Interop methods are already registered for renderer ${t}`);E.set(t,n),Object.keys(r).length>0&&function(t,n,r){if(h)throw new Error("Dynamic root components have already been enabled.");h=t,p=n;for(const[t,o]of Object.entries(r)){const r=e.jsCallDispatcher.findJSFunction(t,0);for(const e of o)r(e,n[e])}}(C(t),r,o),_()}}};let Te;function Me(e){return Te=e,Te}window.Blazor=Fe;const je=window.chrome&&navigator.userAgent.indexOf("Edge")<0;let Le=!1,Pe=!1;function xe(){return(Le||Pe)&&je}let He=!1;async function $e(){let e=document.querySelector("#blazor-error-ui");e&&(e.style.display="block"),He||(He=!0,document.querySelectorAll("#blazor-error-ui .reload").forEach((e=>{e.onclick=function(e){location.reload(),e.preventDefault()}})),document.querySelectorAll("#blazor-error-ui .dismiss").forEach((e=>{e.onclick=function(e){const t=document.querySelector("#blazor-error-ui");t&&(t.style.display="none"),e.preventDefault()}})))}class Je{constructor(e,t){this.bootConfig=e,this.applicationEnvironment=t}static async initAsync(e,t){const n=void 0!==e?e("manifest","blazor.boot.json","_framework/blazor.boot.json",""):a("_framework/blazor.boot.json"),r=n instanceof Promise?await n:await a(null!=n?n:"_framework/blazor.boot.json"),o=t||r.headers.get("Blazor-Environment")||"Production",s=await r.json();return s.modifiableAssemblies=r.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES"),s.aspnetCoreBrowserTools=r.headers.get("ASPNETCORE-BROWSER-TOOLS"),new Je(s,o);async function a(e){return fetch(e,{method:"GET",credentials:"include",cache:"no-cache"})}}}var Ue;let ze;!function(e){e[e.Sharded=0]="Sharded",e[e.All=1]="All",e[e.Invariant=2]="Invariant"}(Ue||(Ue={}));const Ge=Math.pow(2,32),We=Math.pow(2,21)-1;let Ke=null;function Ve(e){return Module.HEAP32[e>>2]}const Xe={start:function(t){return new Promise(((n,r)=>{(function(e){Le=!!e.bootConfig.resources.pdb,Pe=e.bootConfig.debugBuild;const t=navigator.platform.match(/^Mac/i)?"Cmd":"Alt";xe()&&console.info(`Debugging hotkey: Shift+${t}+D (when application has focus)`),document.addEventListener("keydown",(e=>{e.shiftKey&&(e.metaKey||e.altKey)&&"KeyD"===e.code&&(Pe||Le?je?function(){const e=document.createElement("a");e.href=`_framework/debug?url=${encodeURIComponent(location.href)}`,e.target="_blank",e.rel="noopener noreferrer",e.click()}():console.error("Currently, only Microsoft Edge (80+), or Google Chrome, are supported for debugging."):console.error("Cannot start debugging, because the application was not compiled with debugging enabled."))}))})(t),window.Browser={init:()=>{}},function(o){const s=document.createElement("script");window.__wasmmodulecallback__=()=>{window.Module=function(t,n,r){const o=t.bootConfig.resources,s=window.Module||{},a=["DEBUGGING ENABLED"];s.print=e=>a.indexOf(e)<0&&console.log(e),s.printErr=e=>{console.error(e),$e()},s.preRun=s.preRun||[],s.postRun=s.postRun||[],s.preloadPlugins=[];const i="dotnet.wasm",c=t.loadResources(o.assembly,(e=>`_framework/${e}`),"assembly"),l=t.loadResources(o.pdb||{},(e=>`_framework/${e}`),"pdb"),u=t.loadResource(i,"_framework/dotnet.wasm",t.bootConfig.resources.runtime["dotnet.wasm"],"dotnetwasm"),d="dotnet.timezones.blat";let f,m;if(t.bootConfig.resources.runtime.hasOwnProperty(d)&&(f=t.loadResource(d,"_framework/dotnet.timezones.blat",t.bootConfig.resources.runtime["dotnet.timezones.blat"],"globalization")),t.bootConfig.icuDataMode!=Ue.Invariant){const e=t.startOptions.applicationCulture||navigator.languages&&navigator.languages[0],n=function(e,t){if(!t||e.icuDataMode===Ue.All)return"icudt.dat";const n=t.split("-")[0];return["en","fr","it","de","es"].includes(n)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(n)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t.bootConfig,e);m=t.loadResource(n,`_framework/${n}`,t.bootConfig.resources.runtime[n],"globalization")}return s.instantiateWasm=(e,t)=>((async()=>{let n;try{const t=await u;n=await async function(e,t){if("function"==typeof WebAssembly.instantiateStreaming)try{return(await WebAssembly.instantiateStreaming(e.response,t)).instance}catch(e){console.info("Streaming compilation failed. Falling back to ArrayBuffer instantiation. ",e)}const n=await e.response.then((e=>e.arrayBuffer()));return(await WebAssembly.instantiate(n,t)).instance}(t,e)}catch(e){throw s.printErr(e.toString()),e}t(n)})(),[]),s.onRuntimeInitialized=()=>{m||MONO.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1")},s.preRun.push((()=>{ze=cwrap("mono_wasm_add_assembly",null,["string","number","number"]),MONO.loaded_files=[],f&&async function(e){const t="blazor:timezonedata";addRunDependency(t);const n=await e.response,r=await n.arrayBuffer();Module.FS_createPath("/","usr",!0,!0),Module.FS_createPath("/usr/","share",!0,!0),Module.FS_createPath("/usr/share/","zoneinfo",!0,!0),MONO.mono_wasm_load_data_archive(new Uint8Array(r),"/usr/share/zoneinfo/"),removeRunDependency(t)}(f),m&&async function(e){const t="blazor:icudata";addRunDependency(t);const n=await e.response,r=new Uint8Array(await n.arrayBuffer()),o=MONO.mono_wasm_load_bytes_into_heap(r);if(!MONO.mono_wasm_load_icu_data(o))throw new Error("Error loading ICU asset.");removeRunDependency(t)}(m),c.forEach((e=>h(e,et(e.name,".dll")))),l.forEach((e=>h(e,e.name))),Fe._internal.dotNetCriticalError=e=>{s.printErr(BINDING.conv_string(e)||"(null)")},Fe._internal.getSatelliteAssemblies=e=>{const n=BINDING.mono_array_to_js_array(e),r=t.bootConfig.resources.satelliteResources;if(t.startOptions.applicationCulture||navigator.languages&&navigator.languages[0],r){const e=Promise.all(n.filter((e=>r.hasOwnProperty(e))).map((e=>t.loadResources(r[e],(e=>`_framework/${e}`),"assembly"))).reduce(((e,t)=>e.concat(t)),new Array).map((async e=>(await e.response).arrayBuffer())));return BINDING.js_to_mono_obj(e.then((e=>(e.length&&(Fe._internal.readSatelliteAssemblies=()=>{const t=BINDING.mono_obj_array_new(e.length);for(var n=0;n{const r=BINDING.mono_array_to_js_array(n),o=t.bootConfig.resources.lazyAssembly;if(!o)throw new Error("No assemblies have been marked as lazy-loadable. Use the 'BlazorWebAssemblyLazyLoad' item group in your project file to enable lazy loading an assembly.");var s=r.filter((e=>o.hasOwnProperty(e)));if(s.length!=r.length){var a=r.filter((e=>!s.includes(e)));throw new Error(`${a.join()} must be marked with 'BlazorWebAssemblyLazyLoad' item group in your project file to allow lazy-loading.`)}let i;if(xe()){const e=t.bootConfig.resources.pdb,n=s.map((e=>et(e,".pdb")));e&&(i=Promise.all(n.map((e=>o.hasOwnProperty(e)?t.loadResource(e,`_framework/${e}`,o[e],"pdb"):null)).map((async e=>e?(await e.response).arrayBuffer():null))))}const c=Promise.all(s.map((e=>t.loadResource(e,`_framework/${e}`,o[e],"assembly"))).map((async e=>(await e.response).arrayBuffer())));return BINDING.js_to_mono_obj(Promise.all([c,i]).then((t=>(e.assemblies=t[0],e.pdbs=t[1],e.assemblies.length&&(Fe._internal.readLazyAssemblies=()=>{const{assemblies:t}=e;if(!t)return BINDING.mono_obj_array_new(0);const n=BINDING.mono_obj_array_new(t.length);for(let e=0;e{const{assemblies:t,pdbs:n}=e;if(!t)return BINDING.mono_obj_array_new(0);const r=BINDING.mono_obj_array_new(t.length);for(let e=0;e{t.bootConfig.debugBuild&&t.bootConfig.cacheBootResources&&t.logToConsole(),t.purgeUnusedCacheEntriesAsync(),t.bootConfig.icuDataMode===Ue.Sharded&&(MONO.mono_wasm_setenv("__BLAZOR_SHARDED_ICU","1"),t.startOptions.applicationCulture&&MONO.mono_wasm_setenv("LANG",`${t.startOptions.applicationCulture}.UTF-8`));let r="UTC";try{r=Intl.DateTimeFormat().resolvedOptions().timeZone}catch{}MONO.mono_wasm_setenv("TZ",r||"UTC"),t.bootConfig.modifiableAssemblies&&MONO.mono_wasm_setenv("DOTNET_MODIFIABLE_ASSEMBLIES",t.bootConfig.modifiableAssemblies),t.bootConfig.aspnetCoreBrowserTools&&MONO.mono_wasm_setenv("__ASPNETCORE_BROWSER_TOOLS",t.bootConfig.aspnetCoreBrowserTools),cwrap("mono_wasm_load_runtime",null,["string","number"])("appBinDir",xe()?-1:0),MONO.mono_wasm_runtime_ready(),function(){const t=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","InvokeDotNet"),n=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","BeginInvokeDotNet"),r=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","EndInvokeJS"),o=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","NotifyByteArrayAvailable");e.attachDispatcher({beginInvokeDotNetFromJS:(e,t,r,o,s)=>{if(tt(),!o&&!t)throw new Error("Either assemblyName or dotNetObjectId must have a non null value.");const a=o?o.toString():t;n(e?e.toString():null,a,r,s)},endInvokeJSFromDotNet:(e,t,n)=>{r(n)},sendByteArray:(e,t)=>{Qe=t,o(e)},invokeDotNetFromJS:(e,n,r,o)=>(tt(),t(e||null,n,r?r.toString():null,o))})}(),n()})),s;async function h(e,t){const n=`blazor:${e.name}`;addRunDependency(n);try{const n=await e.response.then((e=>e.arrayBuffer())),r=new Uint8Array(n),s=Module._malloc(r.length);new Uint8Array(Module.HEAPU8.buffer,s,r.length).set(r),ze(t,s,r.length),MONO.loaded_files.push((o=e.url,Ye.href=o,Ye.href))}catch(e){return void r(e)}var o;removeRunDependency(n)}}(t,n,r),function(e){if("undefined"==typeof WebAssembly||!WebAssembly.validate)throw new Error("This browser does not support WebAssembly.");const t=Object.keys(e.bootConfig.resources.runtime).filter((e=>e.startsWith("dotnet.")&&e.endsWith(".js")))[0],n=e.bootConfig.resources.runtime[t],r=document.createElement("script");if(r.src=`_framework/${t}`,r.defer=!0,e.bootConfig.cacheBootResources&&(r.integrity=n,r.crossOrigin="anonymous"),e.startOptions.loadBootResource){const o="dotnetjs",s=e.startOptions.loadBootResource(o,t,r.src,n);if("string"==typeof s)r.src=s;else if(s)throw new Error(`For a ${o} resource, custom loaders must supply a URI string.`)}document.body.appendChild(r)}(t)},s.text="var Module; window.__wasmmodulecallback__(); delete window.__wasmmodulecallback__;",document.body.appendChild(s)}()}))},callEntryPoint:async function(e){const t=[[]];try{await BINDING.call_assembly_entry_point(e,t,"m")}catch(e){console.error(e),$e()}},toUint8Array:function(e){const t=qe(e),n=Ve(t),r=new Uint8Array(n);return r.set(Module.HEAPU8.subarray(t+4,t+4+n)),r},getArrayLength:function(e){return Ve(qe(e))},getArrayEntryPtr:function(e,t,n){return qe(e)+4+t*n},getObjectFieldsBaseAddress:function(e){return e+8},readInt16Field:function(e,t){return n=e+(t||0),Module.HEAP16[n>>1];var n},readInt32Field:function(e,t){return Ve(e+(t||0))},readUint64Field:function(e,t){return function(e){const t=e>>2,n=Module.HEAPU32[t+1];if(n>We)throw new Error(`Cannot read uint64 with high order part ${n}, because the result would exceed Number.MAX_SAFE_INTEGER.`);return n*Ge+Module.HEAPU32[t]}(e+(t||0))},readFloatField:function(e,t){return n=e+(t||0),Module.HEAPF32[n>>2];var n},readObjectField:function(e,t){return Ve(e+(t||0))},readStringField:function(e,t,n){const r=Ve(e+(t||0));if(0===r)return null;if(n){const e=BINDING.unbox_mono_obj(r);return"boolean"==typeof e?e?"":null:e}let o;return Ke?(o=Ke.stringCache.get(r),void 0===o&&(o=BINDING.conv_string(r),Ke.stringCache.set(r,o))):o=BINDING.conv_string(r),o},readStructField:function(e,t){return e+(t||0)},beginHeapLock:function(){return tt(),Ke=new nt,Ke},invokeWhenHeapUnlocked:function(e){Ke?Ke.enqueuePostReleaseAction(e):e()}},Ye=document.createElement("a");function qe(e){return e+12}function Ze(e,t,n){const r=`[${e}] ${t}:${n}`;return BINDING.bind_static_method(r)}let Qe=null;function et(e,t){const n=e.lastIndexOf(".");if(n<0)throw new Error(`No extension to replace in '${e}'`);return e.substr(0,n)+t}function tt(){if(Ke)throw new Error("Assertion failed - heap is currently locked")}class nt{constructor(){this.stringCache=new Map}enqueuePostReleaseAction(e){this.postReleaseActions||(this.postReleaseActions=[]),this.postReleaseActions.push(e)}release(){var e;if(Ke!==this)throw new Error("Trying to release a lock which isn't current");for(Ke=null;null===(e=this.postReleaseActions)||void 0===e?void 0:e.length;)this.postReleaseActions.shift()(),tt()}}class rt{constructor(e){this.batchAddress=e,this.arrayRangeReader=ot,this.arrayBuilderSegmentReader=st,this.diffReader=at,this.editReader=it,this.frameReader=ct}updatedComponents(){return Te.readStructField(this.batchAddress,0)}referenceFrames(){return Te.readStructField(this.batchAddress,ot.structLength)}disposedComponentIds(){return Te.readStructField(this.batchAddress,2*ot.structLength)}disposedEventHandlerIds(){return Te.readStructField(this.batchAddress,3*ot.structLength)}updatedComponentsEntry(e,t){return lt(e,t,at.structLength)}referenceFramesEntry(e,t){return lt(e,t,ct.structLength)}disposedComponentIdsEntry(e,t){const n=lt(e,t,4);return Te.readInt32Field(n)}disposedEventHandlerIdsEntry(e,t){const n=lt(e,t,8);return Te.readUint64Field(n)}}const ot={structLength:8,values:e=>Te.readObjectField(e,0),count:e=>Te.readInt32Field(e,4)},st={structLength:12,values:e=>{const t=Te.readObjectField(e,0),n=Te.getObjectFieldsBaseAddress(t);return Te.readObjectField(n,0)},offset:e=>Te.readInt32Field(e,4),count:e=>Te.readInt32Field(e,8)},at={structLength:4+st.structLength,componentId:e=>Te.readInt32Field(e,0),edits:e=>Te.readStructField(e,4),editsEntry:(e,t)=>lt(e,t,it.structLength)},it={structLength:20,editType:e=>Te.readInt32Field(e,0),siblingIndex:e=>Te.readInt32Field(e,4),newTreeIndex:e=>Te.readInt32Field(e,8),moveToSiblingIndex:e=>Te.readInt32Field(e,8),removedAttributeName:e=>Te.readStringField(e,16)},ct={structLength:36,frameType:e=>Te.readInt16Field(e,4),subtreeLength:e=>Te.readInt32Field(e,8),elementReferenceCaptureId:e=>Te.readStringField(e,16),componentId:e=>Te.readInt32Field(e,12),elementName:e=>Te.readStringField(e,16),textContent:e=>Te.readStringField(e,16),markupContent:e=>Te.readStringField(e,16),attributeName:e=>Te.readStringField(e,16),attributeValue:e=>Te.readStringField(e,24,!0),attributeEventHandlerId:e=>Te.readUint64Field(e,8)};function lt(e,t,n){return Te.getArrayEntryPtr(e,t,n)}class ut{constructor(e,t,n){this.bootConfig=e,this.cacheIfUsed=t,this.startOptions=n,this.usedCacheKeys={},this.networkLoads={},this.cacheLoads={}}static async initAsync(e,t){const n=await async function(e){if(!e.cacheBootResources||"undefined"==typeof caches)return null;if(!1===window.isSecureContext)return null;const t=`blazor-resources-${document.baseURI.substring(document.location.origin.length)}`;try{return await caches.open(t)||null}catch{return null}}(e);return new ut(e,n,t)}loadResources(e,t,n){return Object.keys(e).map((r=>this.loadResource(r,t(r),e[r],n)))}loadResource(e,t,n,r){return{name:e,url:t,response:this.cacheIfUsed?this.loadResourceWithCaching(this.cacheIfUsed,e,t,n,r):this.loadResourceWithoutCaching(e,t,n,r)}}logToConsole(){const e=Object.values(this.cacheLoads),t=Object.values(this.networkLoads),n=dt(e),r=dt(t),o=n+r;if(0===o)return;const s=this.bootConfig.linkerEnabled?"%c":"\n%cThis application was built with linking (tree shaking) disabled. Published applications will be significantly smaller.";console.groupCollapsed(`%cblazor%c Loaded ${ft(o)} resources${s}`,"background: purple; color: white; padding: 1px 3px; border-radius: 3px;","font-weight: bold;","font-weight: normal;"),e.length&&(console.groupCollapsed(`Loaded ${ft(n)} resources from cache`),console.table(this.cacheLoads),console.groupEnd()),t.length&&(console.groupCollapsed(`Loaded ${ft(r)} resources from network`),console.table(this.networkLoads),console.groupEnd()),console.groupEnd()}async purgeUnusedCacheEntriesAsync(){const e=this.cacheIfUsed;if(e){const t=(await e.keys()).map((async t=>{t.url in this.usedCacheKeys||await e.delete(t)}));await Promise.all(t)}}async loadResourceWithCaching(e,t,n,r,o){if(!r||0===r.length)throw new Error("Content hash is required");const s=_e(`${n}.${r}`);let a;this.usedCacheKeys[s]=!0;try{a=await e.match(s)}catch{}if(a){const e=parseInt(a.headers.get("content-length")||"0");return this.cacheLoads[t]={responseBytes:e},a}{const a=await this.loadResourceWithoutCaching(t,n,r,o);return this.addToCacheAsync(e,t,s,a),a}}loadResourceWithoutCaching(e,t,n,r){if(this.startOptions.loadBootResource){const o=this.startOptions.loadBootResource(r,e,t,n);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}return fetch(t,{cache:"no-cache",integrity:this.bootConfig.cacheBootResources?n:void 0})}async addToCacheAsync(e,t,n,r){const o=await r.clone().arrayBuffer(),s=function(e){if("undefined"!=typeof performance)return performance.getEntriesByName(e)[0]}(r.url),a=s&&s.encodedBodySize||void 0;this.networkLoads[t]={responseBytes:a};const i=new Response(o,{headers:{"content-type":r.headers.get("content-type")||"","content-length":(a||r.headers.get("content-length")||"").toString()}});try{await e.put(n,i)}catch{}}}function dt(e){return e.reduce(((e,t)=>e+(t.responseBytes||0)),0)}function ft(e){return`${(e/1048576).toFixed(2)} MB`}class mt{static async initAsync(e){Fe._internal.getApplicationEnvironment=()=>BINDING.js_string_to_mono_string(e.applicationEnvironment);const t=await Promise.all((e.bootConfig.config||[]).filter((t=>"appsettings.json"===t||t===`appsettings.${e.applicationEnvironment}.json`)).map((async e=>({name:e,content:await n(e)}))));async function n(e){const t=await fetch(e,{method:"GET",credentials:"include",cache:"no-cache"});return new Uint8Array(await t.arrayBuffer())}Fe._internal.getConfig=e=>{const n=BINDING.conv_string(e),r=t.find((e=>e.name===n));return r?BINDING.js_typed_array_to_array(r.content):void 0}}}class ht{constructor(e){this.preregisteredComponents=e;const t={};for(let n=0;no.push(e))),e[M]=r,t&&(e[j]=t,L(t)),L(e)}(this.componentsById[t].start,this.componentsById[t].end)}getParameterValues(e){return this.componentsById[e].parameterValues}getParameterDefinitions(e){return this.componentsById[e].parameterDefinitions}getTypeName(e){return this.componentsById[e].typeName}getAssembly(e){return this.componentsById[e].assembly}getId(e){return this.preregisteredComponents[e].id}getCount(){return this.preregisteredComponents.length}}const pt=/^\s*Blazor-Component-State:(?[a-zA-Z0-9\+\/=]+)$/;function yt(e){var t;if(e.nodeType===Node.COMMENT_NODE){const n=e.textContent||"",r=pt.exec(n),o=r&&r.groups&&r.groups.state;return o&&(null===(t=e.parentNode)||void 0===t||t.removeChild(e)),o}if(!e.hasChildNodes())return;const n=e.childNodes;for(let e=0;e.*)$/);function wt(e,t){const n=e.currentElement;if(n&&n.nodeType===Node.COMMENT_NODE&&n.textContent){const r=bt.exec(n.textContent),o=r&&r.groups&&r.groups.descriptor;if(!o)return;try{const r=function(e){const t=JSON.parse(e),{type:n}=t;if("server"!==n&&"webassembly"!==n)throw new Error(`Invalid component type '${n}'.`);return t}(o);switch(t){case"webassembly":return function(e,t,n){const{type:r,assembly:o,typeName:s,parameterDefinitions:a,parameterValues:i,prerenderId:c}=e;if("webassembly"===r){if(!o)throw new Error("assembly must be defined when using a descriptor.");if(!s)throw new Error("typeName must be defined when using a descriptor.");if(c){const e=vt(c,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t,prerenderId:c,end:e}}return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t}}}(r,n,e);case"server":return function(e,t,n){const{type:r,descriptor:o,sequence:s,prerenderId:a}=e;if("server"===r){if(!o)throw new Error("descriptor must be defined when using a descriptor.");if(void 0===s)throw new Error("sequence must be defined when using a descriptor.");if(!Number.isInteger(s))throw new Error(`Error parsing the sequence '${s}' for component '${JSON.stringify(e)}'`);if(a){const e=vt(a,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,sequence:s,descriptor:o,start:t,prerenderId:a,end:e}}return{type:r,sequence:s,descriptor:o,start:t}}}(r,n,e)}}catch(e){throw new Error(`Found malformed component comment at ${n.textContent}`)}}}function vt(e,t){for(;t.next()&&t.currentElement;){const n=t.currentElement;if(n.nodeType!==Node.COMMENT_NODE)continue;if(!n.textContent)continue;const r=bt.exec(n.textContent),o=r&&r[1];if(o)return Et(o,e),n}}function Et(e,t){const n=JSON.parse(e);if(1!==Object.keys(n).length)throw new Error(`Invalid end of component comment: '${e}'`);const r=n.prerenderId;if(!r)throw new Error(`End of component comment must have a value for the prerendered property: '${e}'`);if(r!==t)throw new Error(`End of component comment prerendered property must match the start comment prerender id: '${t}', '${r}'`)}class _t{constructor(e){this.childNodes=e,this.currentIndex=-1,this.length=e.length}next(){return this.currentIndex++,this.currentIndexasync function(e,n){const r=function(e){const t=document.baseURI;return t.endsWith("/")?`${t}${e}`:`${t}/${e}`}(n),o=await import(r);if(void 0===o)return;const{beforeStart:s,afterStarted:a}=o;return a&&e.afterStartedCallbacks.push(a),s?s(...t):void 0}(this,e))))}async invokeAfterStartedCallbacks(e){await I,await Promise.all(this.afterStartedCallbacks.map((t=>t(e))))}}let Ct=!1;async function At(t){if(Ct)throw new Error("Blazor has already started.");Ct=!0,function(){if(window.parent!==window&&!window.opener&&window.frameElement){const e=window.sessionStorage&&window.sessionStorage["Microsoft.AspNetCore.Components.WebAssembly.Authentication.CachedAuthSettings"],t=e&&JSON.parse(e);return t&&t.redirect_uri&&location.href.startsWith(t.redirect_uri)}return!1}()&&await new Promise((()=>{})),A=(e,t,n)=>{(function(e){return de[e]})(e).eventDelegator.getHandler(t)&&Xe.invokeWhenHeapUnlocked(n)},Fe._internal.applyHotReload=(t,n,r,o)=>{e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","ApplyHotReloadDelta",t,n,r,o)},Fe._internal.getApplyUpdateCapabilities=()=>e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","GetApplyUpdateCapabilities"),Fe._internal.invokeJSFromDotNet=St,Fe._internal.endInvokeDotNetFromJS=Rt,Fe._internal.receiveByteArray=Ot,Fe._internal.retrieveByteArray=kt;const n=Me(Xe);Fe.platform=n,Fe._internal.renderBatch=(e,t)=>{const n=Xe.beginHeapLock();try{!function(e,t){const n=de[e];if(!n)throw new Error(`There is no browser renderer with ID ${e}.`);const r=t.arrayRangeReader,o=t.updatedComponents(),s=r.values(o),a=r.count(o),i=t.referenceFrames(),c=r.values(i),l=t.diffReader;for(let e=0;eBINDING.js_string_to_mono_string(r()),Fe._internal.navigationManager.getUnmarshalledLocationHref=()=>BINDING.js_string_to_mono_string(o()),Fe._internal.navigationManager.listenForNavigationEvents((async(t,n)=>{await e.invokeMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChanged",t,n)}));const s=null!=t?t:{},a=s.environment,i=Je.initAsync(s.loadBootResource,a),c=function(e,t){return function(e){const t=gt(e,"webassembly"),n=[];for(let e=0;ee.id-t.id))}(e)}(document),l=new ht(c);Fe._internal.registeredComponents={getRegisteredComponentsCount:()=>l.getCount(),getId:e=>l.getId(e),getAssembly:e=>BINDING.js_string_to_mono_string(l.getAssembly(e)),getTypeName:e=>BINDING.js_string_to_mono_string(l.getTypeName(e)),getParameterDefinitions:e=>BINDING.js_string_to_mono_string(l.getParameterDefinitions(e)||""),getParameterValues:e=>BINDING.js_string_to_mono_string(l.getParameterValues(e)||"")},Fe._internal.getPersistedState=()=>BINDING.js_string_to_mono_string(yt(document)||""),Fe._internal.attachRootComponentToElement=(e,t,n)=>{const r=l.resolveRegisteredElement(e);r?me(n,r,t,!1):function(e,t,n){const r="::after";let o=!1;if(e.endsWith(r))e=e.slice(0,-r.length),o=!0;else if(e.endsWith("::before"))throw new Error("The '::before' selector is not supported.");const s=function(e){const t=m.get(e);if(t)return m.delete(e),t}(e)||document.querySelector(e);if(!s)throw new Error(`Could not find any element matching selector '${e}'.`);me(n||0,L(s,!0),t,o)}(e,t,n)};const u=await i,d=await async function(e,t){const n=e.resources.libraryInitializers,r=new Nt;return n&&await r.importInitializersAsync(Object.keys(n),[t,e.resources.extensions]),r}(u.bootConfig,s),[f]=await Promise.all([ut.initAsync(u.bootConfig,s||{}),mt.initAsync(u)]);try{await n.start(f)}catch(e){throw new Error(`Failed to start platform. Reason: ${e}`)}n.callEntryPoint(f.bootConfig.entryAssembly),d.invokeAfterStartedCallbacks(Fe)}function St(t,n,r,o){const s=Xe.readStringField(t,0),a=Xe.readInt32Field(t,4),i=Xe.readStringField(t,8),c=Xe.readUint64Field(t,20);if(null!==i){const n=Xe.readUint64Field(t,12);if(0!==n)return e.jsCallDispatcher.beginInvokeJSFromDotNet(n,s,i,a,c),0;{const t=e.jsCallDispatcher.invokeJSFromDotNet(s,i,a,c);return null===t?0:BINDING.js_string_to_mono_string(t)}}{const t=e.jsCallDispatcher.findJSFunction(s,c).call(null,n,r,o);switch(a){case e.JSCallResultType.Default:return t;case e.JSCallResultType.JSObjectReference:return e.createJSObjectReference(t).__jsObjectId;case e.JSCallResultType.JSStreamReference:const n=e.createJSStreamReference(t),r=JSON.stringify(n);return BINDING.js_string_to_mono_string(r);case e.JSCallResultType.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${a}'.`)}}}function Rt(t,n,r){const o=BINDING.conv_string(t),s=0!==n,a=BINDING.conv_string(r);e.jsCallDispatcher.endInvokeDotNetFromJS(o,s,a)}function Ot(t,n){const r=t,o=Xe.toUint8Array(n);e.jsCallDispatcher.receiveByteArray(r,o)}function kt(){if(null===Qe)throw new Error("Byte array not available for transfer");return BINDING.js_typed_array_to_array(Qe)}Fe.start=At,document&&document.currentScript&&"false"!==document.currentScript.getAttribute("autostart")&&At().catch((e=>{"undefined"!=typeof Module&&Module.printErr?Module.printErr(e):console.error(e)}))})(); \ No newline at end of file diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz deleted file mode 100644 index 41ac5bf0..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js deleted file mode 100644 index 137042ed..00000000 --- a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js +++ /dev/null @@ -1,10692 +0,0 @@ - - -// The Module object: Our interface to the outside world. We import -// and export values on it. There are various ways Module can be used: -// 1. Not defined. We create it here -// 2. A function parameter, function(Module) { ..generated code.. } -// 3. pre-run appended it, var Module = {}; ..generated code.. -// 4. External script tag defines var Module. -// We need to check if Module already exists (e.g. case 3 above). -// Substitution will be replaced with actual code on later stage of the build, -// this way Closure Compiler will not mangle it (e.g. case 4. above). -// Note that if you want to run closure, and also to use Module -// after the generated code, you will need to define var Module = {}; -// before the code. Then that object will be used in the code, and you -// can continue to use Module afterwards as well. -var Module = typeof Module !== 'undefined' ? Module : {}; - -// --pre-jses are emitted after the Module integration code, so that they can -// refer to Module (if they choose; they can also define Module) -// {{PRE_JSES}} - -// Sometimes an existing Module object exists with properties -// meant to overwrite the default module functionality. Here -// we collect those properties and reapply _after_ we configure -// the current environment's defaults to avoid having to be so -// defensive during initialization. -var moduleOverrides = {}; -var key; -for (key in Module) { - if (Module.hasOwnProperty(key)) { - moduleOverrides[key] = Module[key]; - } -} - -var arguments_ = []; -var thisProgram = './this.program'; -var quit_ = function(status, toThrow) { - throw toThrow; -}; - -// Determine the runtime environment we are in. You can customize this by -// setting the ENVIRONMENT setting at compile time (see settings.js). - -var ENVIRONMENT_IS_WEB = false; -var ENVIRONMENT_IS_WORKER = false; -var ENVIRONMENT_IS_NODE = false; -var ENVIRONMENT_IS_SHELL = false; -ENVIRONMENT_IS_WEB = typeof window === 'object'; -ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; -// N.b. Electron.js environment is simultaneously a NODE-environment, but -// also a web environment. -ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof process.versions === 'object' && typeof process.versions.node === 'string'; -ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; - -// `/` should be present at the end if `scriptDirectory` is not empty -var scriptDirectory = ''; -function locateFile(path) { - if (Module['locateFile']) { - return Module['locateFile'](path, scriptDirectory); - } - return scriptDirectory + path; -} - -// Hooks that are implemented differently in different runtime environments. -var read_, - readAsync, - readBinary, - setWindowTitle; - -var nodeFS; -var nodePath; - -if (ENVIRONMENT_IS_NODE) { - if (ENVIRONMENT_IS_WORKER) { - scriptDirectory = require('path').dirname(scriptDirectory) + '/'; - } else { - scriptDirectory = __dirname + '/'; - } - -// include: node_shell_read.js - - -read_ = function shell_read(filename, binary) { - if (!nodeFS) nodeFS = require('fs'); - if (!nodePath) nodePath = require('path'); - filename = nodePath['normalize'](filename); - return nodeFS['readFileSync'](filename, binary ? null : 'utf8'); -}; - -readBinary = function readBinary(filename) { - var ret = read_(filename, true); - if (!ret.buffer) { - ret = new Uint8Array(ret); - } - assert(ret.buffer); - return ret; -}; - -// end include: node_shell_read.js - if (process['argv'].length > 1) { - thisProgram = process['argv'][1].replace(/\\/g, '/'); - } - - arguments_ = process['argv'].slice(2); - - if (typeof module !== 'undefined') { - module['exports'] = Module; - } - - process['on']('uncaughtException', function(ex) { - // suppress ExitStatus exceptions from showing an error - if (!(ex instanceof ExitStatus)) { - throw ex; - } - }); - - process['on']('unhandledRejection', abort); - - quit_ = function(status) { - process['exit'](status); - }; - - Module['inspect'] = function () { return '[Emscripten Module object]'; }; - -} else -if (ENVIRONMENT_IS_SHELL) { - - if (typeof read != 'undefined') { - read_ = function shell_read(f) { - return read(f); - }; - } - - readBinary = function readBinary(f) { - var data; - if (typeof readbuffer === 'function') { - return new Uint8Array(readbuffer(f)); - } - data = read(f, 'binary'); - assert(typeof data === 'object'); - return data; - }; - - if (typeof scriptArgs != 'undefined') { - arguments_ = scriptArgs; - } else if (typeof arguments != 'undefined') { - arguments_ = arguments; - } - - if (typeof quit === 'function') { - quit_ = function(status) { - quit(status); - }; - } - - if (typeof print !== 'undefined') { - // Prefer to use print/printErr where they exist, as they usually work better. - if (typeof console === 'undefined') console = /** @type{!Console} */({}); - console.log = /** @type{!function(this:Console, ...*): undefined} */ (print); - console.warn = console.error = /** @type{!function(this:Console, ...*): undefined} */ (typeof printErr !== 'undefined' ? printErr : print); - } - -} else - -// Note that this includes Node.js workers when relevant (pthreads is enabled). -// Node.js workers are detected as a combination of ENVIRONMENT_IS_WORKER and -// ENVIRONMENT_IS_NODE. -if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { - if (ENVIRONMENT_IS_WORKER) { // Check worker, not web, since window could be polyfilled - scriptDirectory = self.location.href; - } else if (typeof document !== 'undefined' && document.currentScript) { // web - scriptDirectory = document.currentScript.src; - } - // blob urls look like blob:http://site.com/etc/etc and we cannot infer anything from them. - // otherwise, slice off the final part of the url to find the script directory. - // if scriptDirectory does not contain a slash, lastIndexOf will return -1, - // and scriptDirectory will correctly be replaced with an empty string. - if (scriptDirectory.indexOf('blob:') !== 0) { - scriptDirectory = scriptDirectory.substr(0, scriptDirectory.lastIndexOf('/')+1); - } else { - scriptDirectory = ''; - } - - // Differentiate the Web Worker from the Node Worker case, as reading must - // be done differently. - { - -// include: web_or_worker_shell_read.js - - - read_ = function(url) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - xhr.send(null); - return xhr.responseText; - }; - - if (ENVIRONMENT_IS_WORKER) { - readBinary = function(url) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - xhr.responseType = 'arraybuffer'; - xhr.send(null); - return new Uint8Array(/** @type{!ArrayBuffer} */(xhr.response)); - }; - } - - readAsync = function(url, onload, onerror) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - xhr.responseType = 'arraybuffer'; - xhr.onload = function() { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - onload(xhr.response); - return; - } - onerror(); - }; - xhr.onerror = onerror; - xhr.send(null); - }; - -// end include: web_or_worker_shell_read.js - } - - setWindowTitle = function(title) { document.title = title }; -} else -{ -} - -// Set up the out() and err() hooks, which are how we can print to stdout or -// stderr, respectively. -var out = Module['print'] || console.log.bind(console); -var err = Module['printErr'] || console.warn.bind(console); - -// Merge back in the overrides -for (key in moduleOverrides) { - if (moduleOverrides.hasOwnProperty(key)) { - Module[key] = moduleOverrides[key]; - } -} -// Free the object hierarchy contained in the overrides, this lets the GC -// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array. -moduleOverrides = null; - -// Emit code to handle expected values on the Module object. This applies Module.x -// to the proper local x. This has two benefits: first, we only emit it if it is -// expected to arrive, and second, by using a local everywhere else that can be -// minified. - -if (Module['arguments']) arguments_ = Module['arguments']; - -if (Module['thisProgram']) thisProgram = Module['thisProgram']; - -if (Module['quit']) quit_ = Module['quit']; - -// perform assertions in shell.js after we set up out() and err(), as otherwise if an assertion fails it cannot print the message - - - - -var STACK_ALIGN = 16; - -function alignMemory(size, factor) { - if (!factor) factor = STACK_ALIGN; // stack alignment (16-byte) by default - return Math.ceil(size / factor) * factor; -} - -function getNativeTypeSize(type) { - switch (type) { - case 'i1': case 'i8': return 1; - case 'i16': return 2; - case 'i32': return 4; - case 'i64': return 8; - case 'float': return 4; - case 'double': return 8; - default: { - if (type[type.length-1] === '*') { - return 4; // A pointer - } else if (type[0] === 'i') { - var bits = Number(type.substr(1)); - assert(bits % 8 === 0, 'getNativeTypeSize invalid bits ' + bits + ', type ' + type); - return bits / 8; - } else { - return 0; - } - } - } -} - -function warnOnce(text) { - if (!warnOnce.shown) warnOnce.shown = {}; - if (!warnOnce.shown[text]) { - warnOnce.shown[text] = 1; - err(text); - } -} - -// include: runtime_functions.js - - -// Wraps a JS function as a wasm function with a given signature. -function convertJsFunctionToWasm(func, sig) { - - // If the type reflection proposal is available, use the new - // "WebAssembly.Function" constructor. - // Otherwise, construct a minimal wasm module importing the JS function and - // re-exporting it. - if (typeof WebAssembly.Function === "function") { - var typeNames = { - 'i': 'i32', - 'j': 'i64', - 'f': 'f32', - 'd': 'f64' - }; - var type = { - parameters: [], - results: sig[0] == 'v' ? [] : [typeNames[sig[0]]] - }; - for (var i = 1; i < sig.length; ++i) { - type.parameters.push(typeNames[sig[i]]); - } - return new WebAssembly.Function(type, func); - } - - // The module is static, with the exception of the type section, which is - // generated based on the signature passed in. - var typeSection = [ - 0x01, // id: section, - 0x00, // length: 0 (placeholder) - 0x01, // count: 1 - 0x60, // form: func - ]; - var sigRet = sig.slice(0, 1); - var sigParam = sig.slice(1); - var typeCodes = { - 'i': 0x7f, // i32 - 'j': 0x7e, // i64 - 'f': 0x7d, // f32 - 'd': 0x7c, // f64 - }; - - // Parameters, length + signatures - typeSection.push(sigParam.length); - for (var i = 0; i < sigParam.length; ++i) { - typeSection.push(typeCodes[sigParam[i]]); - } - - // Return values, length + signatures - // With no multi-return in MVP, either 0 (void) or 1 (anything else) - if (sigRet == 'v') { - typeSection.push(0x00); - } else { - typeSection = typeSection.concat([0x01, typeCodes[sigRet]]); - } - - // Write the overall length of the type section back into the section header - // (excepting the 2 bytes for the section id and length) - typeSection[1] = typeSection.length - 2; - - // Rest of the module is static - var bytes = new Uint8Array([ - 0x00, 0x61, 0x73, 0x6d, // magic ("\0asm") - 0x01, 0x00, 0x00, 0x00, // version: 1 - ].concat(typeSection, [ - 0x02, 0x07, // import section - // (import "e" "f" (func 0 (type 0))) - 0x01, 0x01, 0x65, 0x01, 0x66, 0x00, 0x00, - 0x07, 0x05, // export section - // (export "f" (func 0 (type 0))) - 0x01, 0x01, 0x66, 0x00, 0x00, - ])); - - // We can compile this wasm module synchronously because it is very small. - // This accepts an import (at "e.f"), that it reroutes to an export (at "f") - var module = new WebAssembly.Module(bytes); - var instance = new WebAssembly.Instance(module, { - 'e': { - 'f': func - } - }); - var wrappedFunc = instance.exports['f']; - return wrappedFunc; -} - -var freeTableIndexes = []; - -// Weak map of functions in the table to their indexes, created on first use. -var functionsInTableMap; - -function getEmptyTableSlot() { - // Reuse a free index if there is one, otherwise grow. - if (freeTableIndexes.length) { - return freeTableIndexes.pop(); - } - // Grow the table - try { - wasmTable.grow(1); - } catch (err) { - if (!(err instanceof RangeError)) { - throw err; - } - throw 'Unable to grow wasm table. Set ALLOW_TABLE_GROWTH.'; - } - return wasmTable.length - 1; -} - -// Add a wasm function to the table. -function addFunctionWasm(func, sig) { - // Check if the function is already in the table, to ensure each function - // gets a unique index. First, create the map if this is the first use. - if (!functionsInTableMap) { - functionsInTableMap = new WeakMap(); - for (var i = 0; i < wasmTable.length; i++) { - var item = wasmTable.get(i); - // Ignore null values. - if (item) { - functionsInTableMap.set(item, i); - } - } - } - if (functionsInTableMap.has(func)) { - return functionsInTableMap.get(func); - } - - // It's not in the table, add it now. - - var ret = getEmptyTableSlot(); - - // Set the new value. - try { - // Attempting to call this with JS function will cause of table.set() to fail - wasmTable.set(ret, func); - } catch (err) { - if (!(err instanceof TypeError)) { - throw err; - } - var wrapped = convertJsFunctionToWasm(func, sig); - wasmTable.set(ret, wrapped); - } - - functionsInTableMap.set(func, ret); - - return ret; -} - -function removeFunction(index) { - functionsInTableMap.delete(wasmTable.get(index)); - freeTableIndexes.push(index); -} - -// 'sig' parameter is required for the llvm backend but only when func is not -// already a WebAssembly function. -function addFunction(func, sig) { - - return addFunctionWasm(func, sig); -} - -// end include: runtime_functions.js -// include: runtime_debug.js - - -// end include: runtime_debug.js -var tempRet0 = 0; - -var setTempRet0 = function(value) { - tempRet0 = value; -}; - -var getTempRet0 = function() { - return tempRet0; -}; - - - -// === Preamble library stuff === - -// Documentation for the public APIs defined in this file must be updated in: -// site/source/docs/api_reference/preamble.js.rst -// A prebuilt local version of the documentation is available at: -// site/build/text/docs/api_reference/preamble.js.txt -// You can also build docs locally as HTML or other formats in site/ -// An online HTML version (which may be of a different version of Emscripten) -// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html - -var wasmBinary; -if (Module['wasmBinary']) wasmBinary = Module['wasmBinary']; -var noExitRuntime = Module['noExitRuntime'] || true; - -if (typeof WebAssembly !== 'object') { - abort('no native wasm support detected'); -} - -// include: runtime_safe_heap.js - - -// In MINIMAL_RUNTIME, setValue() and getValue() are only available when building with safe heap enabled, for heap safety checking. -// In traditional runtime, setValue() and getValue() are always available (although their use is highly discouraged due to perf penalties) - -/** @param {number} ptr - @param {number} value - @param {string} type - @param {number|boolean=} noSafe */ -function setValue(ptr, value, type, noSafe) { - type = type || 'i8'; - if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit - switch (type) { - case 'i1': HEAP8[((ptr)>>0)] = value; break; - case 'i8': HEAP8[((ptr)>>0)] = value; break; - case 'i16': HEAP16[((ptr)>>1)] = value; break; - case 'i32': HEAP32[((ptr)>>2)] = value; break; - case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)] = tempI64[0],HEAP32[(((ptr)+(4))>>2)] = tempI64[1]); break; - case 'float': HEAPF32[((ptr)>>2)] = value; break; - case 'double': HEAPF64[((ptr)>>3)] = value; break; - default: abort('invalid type for setValue: ' + type); - } -} - -/** @param {number} ptr - @param {string} type - @param {number|boolean=} noSafe */ -function getValue(ptr, type, noSafe) { - type = type || 'i8'; - if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit - switch (type) { - case 'i1': return HEAP8[((ptr)>>0)]; - case 'i8': return HEAP8[((ptr)>>0)]; - case 'i16': return HEAP16[((ptr)>>1)]; - case 'i32': return HEAP32[((ptr)>>2)]; - case 'i64': return HEAP32[((ptr)>>2)]; - case 'float': return HEAPF32[((ptr)>>2)]; - case 'double': return HEAPF64[((ptr)>>3)]; - default: abort('invalid type for getValue: ' + type); - } - return null; -} - -// end include: runtime_safe_heap.js -// Wasm globals - -var wasmMemory; - -//======================================== -// Runtime essentials -//======================================== - -// whether we are quitting the application. no code should run after this. -// set in exit() and abort() -var ABORT = false; - -// set by exit() and abort(). Passed to 'onExit' handler. -// NOTE: This is also used as the process return code code in shell environments -// but only when noExitRuntime is false. -var EXITSTATUS; - -/** @type {function(*, string=)} */ -function assert(condition, text) { - if (!condition) { - abort('Assertion failed: ' + text); - } -} - -// Returns the C function with a specified identifier (for C++, you need to do manual name mangling) -function getCFunc(ident) { - var func = Module['_' + ident]; // closure exported function - assert(func, 'Cannot call unknown function ' + ident + ', make sure it is exported'); - return func; -} - -// C calling interface. -/** @param {string|null=} returnType - @param {Array=} argTypes - @param {Arguments|Array=} args - @param {Object=} opts */ -function ccall(ident, returnType, argTypes, args, opts) { - // For fast lookup of conversion functions - var toC = { - 'string': function(str) { - var ret = 0; - if (str !== null && str !== undefined && str !== 0) { // null string - // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' - var len = (str.length << 2) + 1; - ret = stackAlloc(len); - stringToUTF8(str, ret, len); - } - return ret; - }, - 'array': function(arr) { - var ret = stackAlloc(arr.length); - writeArrayToMemory(arr, ret); - return ret; - } - }; - - function convertReturnValue(ret) { - if (returnType === 'string') return UTF8ToString(ret); - if (returnType === 'boolean') return Boolean(ret); - return ret; - } - - var func = getCFunc(ident); - var cArgs = []; - var stack = 0; - if (args) { - for (var i = 0; i < args.length; i++) { - var converter = toC[argTypes[i]]; - if (converter) { - if (stack === 0) stack = stackSave(); - cArgs[i] = converter(args[i]); - } else { - cArgs[i] = args[i]; - } - } - } - var ret = func.apply(null, cArgs); - - ret = convertReturnValue(ret); - if (stack !== 0) stackRestore(stack); - return ret; -} - -/** @param {string=} returnType - @param {Array=} argTypes - @param {Object=} opts */ -function cwrap(ident, returnType, argTypes, opts) { - argTypes = argTypes || []; - // When the function takes numbers and returns a number, we can just return - // the original function - var numericArgs = argTypes.every(function(type){ return type === 'number'}); - var numericRet = returnType !== 'string'; - if (numericRet && numericArgs && !opts) { - return getCFunc(ident); - } - return function() { - return ccall(ident, returnType, argTypes, arguments, opts); - } -} - -var ALLOC_NORMAL = 0; // Tries to use _malloc() -var ALLOC_STACK = 1; // Lives for the duration of the current function call - -// allocate(): This is for internal use. You can use it yourself as well, but the interface -// is a little tricky (see docs right below). The reason is that it is optimized -// for multiple syntaxes to save space in generated code. So you should -// normally not use allocate(), and instead allocate memory using _malloc(), -// initialize it with setValue(), and so forth. -// @slab: An array of data. -// @allocator: How to allocate memory, see ALLOC_* -/** @type {function((Uint8Array|Array), number)} */ -function allocate(slab, allocator) { - var ret; - - if (allocator == ALLOC_STACK) { - ret = stackAlloc(slab.length); - } else { - ret = _malloc(slab.length); - } - - if (slab.subarray || slab.slice) { - HEAPU8.set(/** @type {!Uint8Array} */(slab), ret); - } else { - HEAPU8.set(new Uint8Array(slab), ret); - } - return ret; -} - -// include: runtime_strings.js - - -// runtime_strings.js: Strings related runtime functions that are part of both MINIMAL_RUNTIME and regular runtime. - -// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns -// a copy of that string as a Javascript String object. - -var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined; - -/** - * @param {number} idx - * @param {number=} maxBytesToRead - * @return {string} - */ -function UTF8ArrayToString(heap, idx, maxBytesToRead) { - var endIdx = idx + maxBytesToRead; - var endPtr = idx; - // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. - // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. - // (As a tiny code save trick, compare endPtr against endIdx using a negation, so that undefined means Infinity) - while (heap[endPtr] && !(endPtr >= endIdx)) ++endPtr; - - if (endPtr - idx > 16 && heap.subarray && UTF8Decoder) { - return UTF8Decoder.decode(heap.subarray(idx, endPtr)); - } else { - var str = ''; - // If building with TextDecoder, we have already computed the string length above, so test loop end condition against that - while (idx < endPtr) { - // For UTF8 byte structure, see: - // http://en.wikipedia.org/wiki/UTF-8#Description - // https://www.ietf.org/rfc/rfc2279.txt - // https://tools.ietf.org/html/rfc3629 - var u0 = heap[idx++]; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - var u1 = heap[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - var u2 = heap[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (heap[idx++] & 63); - } - - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); - } - } - } - return str; -} - -// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the emscripten HEAP, returns a -// copy of that string as a Javascript String object. -// maxBytesToRead: an optional length that specifies the maximum number of bytes to read. You can omit -// this parameter to scan the string until the first \0 byte. If maxBytesToRead is -// passed, and the string at [ptr, ptr+maxBytesToReadr[ contains a null byte in the -// middle, then the string will cut short at that byte index (i.e. maxBytesToRead will -// not produce a string of exact length [ptr, ptr+maxBytesToRead[) -// N.B. mixing frequent uses of UTF8ToString() with and without maxBytesToRead may -// throw JS JIT optimizations off, so it is worth to consider consistently using one -// style or the other. -/** - * @param {number} ptr - * @param {number=} maxBytesToRead - * @return {string} - */ -function UTF8ToString(ptr, maxBytesToRead) { - return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : ''; -} - -// Copies the given Javascript String object 'str' to the given byte array at address 'outIdx', -// encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. -// Parameters: -// str: the Javascript string to copy. -// heap: the array to copy to. Each index in this array is assumed to be one 8-byte element. -// outIdx: The starting offset in the array to begin the copying. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. -// This count should include the null terminator, -// i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else. -// maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { - if (!(maxBytesToWrite > 0)) // Parameter maxBytesToWrite is not optional. Negative values, 0, null, undefined and false each don't write out any bytes. - return 0; - - var startIdx = outIdx; - var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator. - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 - var u = str.charCodeAt(i); // possibly a lead surrogate - if (u >= 0xD800 && u <= 0xDFFF) { - var u1 = str.charCodeAt(++i); - u = 0x10000 + ((u & 0x3FF) << 10) | (u1 & 0x3FF); - } - if (u <= 0x7F) { - if (outIdx >= endIdx) break; - heap[outIdx++] = u; - } else if (u <= 0x7FF) { - if (outIdx + 1 >= endIdx) break; - heap[outIdx++] = 0xC0 | (u >> 6); - heap[outIdx++] = 0x80 | (u & 63); - } else if (u <= 0xFFFF) { - if (outIdx + 2 >= endIdx) break; - heap[outIdx++] = 0xE0 | (u >> 12); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - } else { - if (outIdx + 3 >= endIdx) break; - heap[outIdx++] = 0xF0 | (u >> 18); - heap[outIdx++] = 0x80 | ((u >> 12) & 63); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - } - } - // Null-terminate the pointer to the buffer. - heap[outIdx] = 0; - return outIdx - startIdx; -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF8(str, outPtr, maxBytesToWrite) { - return stringToUTF8Array(str, HEAPU8,outPtr, maxBytesToWrite); -} - -// Returns the number of bytes the given Javascript string takes if encoded as a UTF8 byte array, EXCLUDING the null terminator byte. -function lengthBytesUTF8(str) { - var len = 0; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var u = str.charCodeAt(i); // possibly a lead surrogate - if (u >= 0xD800 && u <= 0xDFFF) u = 0x10000 + ((u & 0x3FF) << 10) | (str.charCodeAt(++i) & 0x3FF); - if (u <= 0x7F) ++len; - else if (u <= 0x7FF) len += 2; - else if (u <= 0xFFFF) len += 3; - else len += 4; - } - return len; -} - -// end include: runtime_strings.js -// include: runtime_strings_extra.js - - -// runtime_strings_extra.js: Strings related runtime functions that are available only in regular runtime. - -// Given a pointer 'ptr' to a null-terminated ASCII-encoded string in the emscripten HEAP, returns -// a copy of that string as a Javascript String object. - -function AsciiToString(ptr) { - var str = ''; - while (1) { - var ch = HEAPU8[((ptr++)>>0)]; - if (!ch) return str; - str += String.fromCharCode(ch); - } -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in ASCII form. The copy will require at most str.length+1 bytes of space in the HEAP. - -function stringToAscii(str, outPtr) { - return writeAsciiToMemory(str, outPtr, false); -} - -// Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns -// a copy of that string as a Javascript String object. - -var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; - -function UTF16ToString(ptr, maxBytesToRead) { - var endPtr = ptr; - // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. - // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. - var idx = endPtr >> 1; - var maxIdx = idx + maxBytesToRead / 2; - // If maxBytesToRead is not passed explicitly, it will be undefined, and this - // will always evaluate to true. This saves on code size. - while (!(idx >= maxIdx) && HEAPU16[idx]) ++idx; - endPtr = idx << 1; - - if (endPtr - ptr > 32 && UTF16Decoder) { - return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr)); - } else { - var str = ''; - - // If maxBytesToRead is not passed explicitly, it will be undefined, and the for-loop's condition - // will always evaluate to true. The loop is then terminated on the first null char. - for (var i = 0; !(i >= maxBytesToRead / 2); ++i) { - var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; - if (codeUnit == 0) break; - // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. - str += String.fromCharCode(codeUnit); - } - - return str; - } -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP. -// Use the function lengthBytesUTF16() to compute the exact number of bytes (excluding null terminator) that this function will write. -// Parameters: -// str: the Javascript string to copy. -// outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null -// terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else. -// maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF16(str, outPtr, maxBytesToWrite) { - // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed. - if (maxBytesToWrite === undefined) { - maxBytesToWrite = 0x7FFFFFFF; - } - if (maxBytesToWrite < 2) return 0; - maxBytesToWrite -= 2; // Null terminator. - var startPtr = outPtr; - var numCharsToWrite = (maxBytesToWrite < str.length*2) ? (maxBytesToWrite / 2) : str.length; - for (var i = 0; i < numCharsToWrite; ++i) { - // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP. - var codeUnit = str.charCodeAt(i); // possibly a lead surrogate - HEAP16[((outPtr)>>1)] = codeUnit; - outPtr += 2; - } - // Null-terminate the pointer to the HEAP. - HEAP16[((outPtr)>>1)] = 0; - return outPtr - startPtr; -} - -// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. - -function lengthBytesUTF16(str) { - return str.length*2; -} - -function UTF32ToString(ptr, maxBytesToRead) { - var i = 0; - - var str = ''; - // If maxBytesToRead is not passed explicitly, it will be undefined, and this - // will always evaluate to true. This saves on code size. - while (!(i >= maxBytesToRead / 4)) { - var utf32 = HEAP32[(((ptr)+(i*4))>>2)]; - if (utf32 == 0) break; - ++i; - // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - if (utf32 >= 0x10000) { - var ch = utf32 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); - } else { - str += String.fromCharCode(utf32); - } - } - return str; -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP. -// Use the function lengthBytesUTF32() to compute the exact number of bytes (excluding null terminator) that this function will write. -// Parameters: -// str: the Javascript string to copy. -// outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null -// terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else. -// maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF32(str, outPtr, maxBytesToWrite) { - // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed. - if (maxBytesToWrite === undefined) { - maxBytesToWrite = 0x7FFFFFFF; - } - if (maxBytesToWrite < 4) return 0; - var startPtr = outPtr; - var endPtr = startPtr + maxBytesToWrite - 4; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var codeUnit = str.charCodeAt(i); // possibly a lead surrogate - if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) { - var trailSurrogate = str.charCodeAt(++i); - codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF); - } - HEAP32[((outPtr)>>2)] = codeUnit; - outPtr += 4; - if (outPtr + 4 > endPtr) break; - } - // Null-terminate the pointer to the HEAP. - HEAP32[((outPtr)>>2)] = 0; - return outPtr - startPtr; -} - -// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. - -function lengthBytesUTF32(str) { - var len = 0; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var codeUnit = str.charCodeAt(i); - if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) ++i; // possibly a lead surrogate, so skip over the tail surrogate. - len += 4; - } - - return len; -} - -// Allocate heap space for a JS string, and write it there. -// It is the responsibility of the caller to free() that memory. -function allocateUTF8(str) { - var size = lengthBytesUTF8(str) + 1; - var ret = _malloc(size); - if (ret) stringToUTF8Array(str, HEAP8, ret, size); - return ret; -} - -// Allocate stack space for a JS string, and write it there. -function allocateUTF8OnStack(str) { - var size = lengthBytesUTF8(str) + 1; - var ret = stackAlloc(size); - stringToUTF8Array(str, HEAP8, ret, size); - return ret; -} - -// Deprecated: This function should not be called because it is unsafe and does not provide -// a maximum length limit of how many bytes it is allowed to write. Prefer calling the -// function stringToUTF8Array() instead, which takes in a maximum length that can be used -// to be secure from out of bounds writes. -/** @deprecated - @param {boolean=} dontAddNull */ -function writeStringToMemory(string, buffer, dontAddNull) { - warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!'); - - var /** @type {number} */ lastChar, /** @type {number} */ end; - if (dontAddNull) { - // stringToUTF8Array always appends null. If we don't want to do that, remember the - // character that existed at the location where the null will be placed, and restore - // that after the write (below). - end = buffer + lengthBytesUTF8(string); - lastChar = HEAP8[end]; - } - stringToUTF8(string, buffer, Infinity); - if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character. -} - -function writeArrayToMemory(array, buffer) { - HEAP8.set(array, buffer); -} - -/** @param {boolean=} dontAddNull */ -function writeAsciiToMemory(str, buffer, dontAddNull) { - for (var i = 0; i < str.length; ++i) { - HEAP8[((buffer++)>>0)] = str.charCodeAt(i); - } - // Null-terminate the pointer to the HEAP. - if (!dontAddNull) HEAP8[((buffer)>>0)] = 0; -} - -// end include: runtime_strings_extra.js -// Memory management - -function alignUp(x, multiple) { - if (x % multiple > 0) { - x += multiple - (x % multiple); - } - return x; -} - -var HEAP, -/** @type {ArrayBuffer} */ - buffer, -/** @type {Int8Array} */ - HEAP8, -/** @type {Uint8Array} */ - HEAPU8, -/** @type {Int16Array} */ - HEAP16, -/** @type {Uint16Array} */ - HEAPU16, -/** @type {Int32Array} */ - HEAP32, -/** @type {Uint32Array} */ - HEAPU32, -/** @type {Float32Array} */ - HEAPF32, -/** @type {Float64Array} */ - HEAPF64; - -function updateGlobalBufferAndViews(buf) { - buffer = buf; - Module['HEAP8'] = HEAP8 = new Int8Array(buf); - Module['HEAP16'] = HEAP16 = new Int16Array(buf); - Module['HEAP32'] = HEAP32 = new Int32Array(buf); - Module['HEAPU8'] = HEAPU8 = new Uint8Array(buf); - Module['HEAPU16'] = HEAPU16 = new Uint16Array(buf); - Module['HEAPU32'] = HEAPU32 = new Uint32Array(buf); - Module['HEAPF32'] = HEAPF32 = new Float32Array(buf); - Module['HEAPF64'] = HEAPF64 = new Float64Array(buf); -} - -var TOTAL_STACK = 5242880; - -var INITIAL_MEMORY = Module['INITIAL_MEMORY'] || 536870912; - -// include: runtime_init_table.js -// In regular non-RELOCATABLE mode the table is exported -// from the wasm module and this will be assigned once -// the exports are available. -var wasmTable; - -// end include: runtime_init_table.js -// include: runtime_stack_check.js - - -// end include: runtime_stack_check.js -// include: runtime_assertions.js - - -// end include: runtime_assertions.js -var __ATPRERUN__ = []; // functions called before the runtime is initialized -var __ATINIT__ = []; // functions called during startup -var __ATMAIN__ = []; // functions called when main() is to be run -var __ATEXIT__ = []; // functions called during shutdown -var __ATPOSTRUN__ = []; // functions called after the main() is called - -var runtimeInitialized = false; -var runtimeExited = false; - -function preRun() { - - if (Module['preRun']) { - if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; - while (Module['preRun'].length) { - addOnPreRun(Module['preRun'].shift()); - } - } - - callRuntimeCallbacks(__ATPRERUN__); -} - -function initRuntime() { - runtimeInitialized = true; - - if (!Module["noFSInit"] && !FS.init.initialized) FS.init(); -TTY.init(); -SOCKFS.root = FS.mount(SOCKFS, {}, null); - callRuntimeCallbacks(__ATINIT__); -} - -function exitRuntime() { - runtimeExited = true; -} - -function postRun() { - - if (Module['postRun']) { - if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; - while (Module['postRun'].length) { - addOnPostRun(Module['postRun'].shift()); - } - } - - callRuntimeCallbacks(__ATPOSTRUN__); -} - -function addOnPreRun(cb) { - __ATPRERUN__.unshift(cb); -} - -function addOnInit(cb) { - __ATINIT__.unshift(cb); -} - -function addOnPreMain(cb) { - __ATMAIN__.unshift(cb); -} - -function addOnExit(cb) { -} - -function addOnPostRun(cb) { - __ATPOSTRUN__.unshift(cb); -} - -// include: runtime_math.js - - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/fround - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/clz32 - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc - -// end include: runtime_math.js -// A counter of dependencies for calling run(). If we need to -// do asynchronous work before running, increment this and -// decrement it. Incrementing must happen in a place like -// Module.preRun (used by emcc to add file preloading). -// Note that you can add dependencies in preRun, even though -// it happens right before run - run will be postponed until -// the dependencies are met. -var runDependencies = 0; -var runDependencyWatcher = null; -var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled - -function getUniqueRunDependency(id) { - return id; -} - -function addRunDependency(id) { - runDependencies++; - - if (Module['monitorRunDependencies']) { - Module['monitorRunDependencies'](runDependencies); - } - -} - -function removeRunDependency(id) { - runDependencies--; - - if (Module['monitorRunDependencies']) { - Module['monitorRunDependencies'](runDependencies); - } - - if (runDependencies == 0) { - if (runDependencyWatcher !== null) { - clearInterval(runDependencyWatcher); - runDependencyWatcher = null; - } - if (dependenciesFulfilled) { - var callback = dependenciesFulfilled; - dependenciesFulfilled = null; - callback(); // can add another dependenciesFulfilled - } - } -} - -Module["preloadedImages"] = {}; // maps url to image data -Module["preloadedAudios"] = {}; // maps url to audio data - -/** @param {string|number=} what */ -function abort(what) { - if (Module['onAbort']) { - Module['onAbort'](what); - } - - what += ''; - err(what); - - ABORT = true; - EXITSTATUS = 1; - - what = 'abort(' + what + '). Build with -s ASSERTIONS=1 for more info.'; - - // Use a wasm runtime error, because a JS error might be seen as a foreign - // exception, which means we'd run destructors on it. We need the error to - // simply make the program stop. - var e = new WebAssembly.RuntimeError(what); - - // Throw the error whether or not MODULARIZE is set because abort is used - // in code paths apart from instantiation where an exception is expected - // to be thrown when abort is called. - throw e; -} - -// {{MEM_INITIALIZER}} - -// include: memoryprofiler.js - - -// end include: memoryprofiler.js -// include: URIUtils.js - - -// Prefix of data URIs emitted by SINGLE_FILE and related options. -var dataURIPrefix = 'data:application/octet-stream;base64,'; - -// Indicates whether filename is a base64 data URI. -function isDataURI(filename) { - // Prefix of data URIs emitted by SINGLE_FILE and related options. - return filename.startsWith(dataURIPrefix); -} - -// Indicates whether filename is delivered via file protocol (as opposed to http/https) -function isFileURI(filename) { - return filename.startsWith('file://'); -} - -// end include: URIUtils.js - var wasmBinaryFile = 'dotnet.wasm'; - if (!isDataURI(wasmBinaryFile)) { - wasmBinaryFile = locateFile(wasmBinaryFile); - } - -function getBinary(file) { - try { - if (file == wasmBinaryFile && wasmBinary) { - return new Uint8Array(wasmBinary); - } - if (readBinary) { - return readBinary(file); - } else { - throw "both async and sync fetching of the wasm failed"; - } - } - catch (err) { - abort(err); - } -} - -function getBinaryPromise() { - // If we don't have the binary yet, try to to load it asynchronously. - // Fetch has some additional restrictions over XHR, like it can't be used on a file:// url. - // See https://github.com/github/fetch/pull/92#issuecomment-140665932 - // Cordova or Electron apps are typically loaded from a file:// url. - // So use fetch if it is available and the url is not a file, otherwise fall back to XHR. - if (!wasmBinary && (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER)) { - if (typeof fetch === 'function' - && !isFileURI(wasmBinaryFile) - ) { - return fetch(wasmBinaryFile, { credentials: 'same-origin' }).then(function(response) { - if (!response['ok']) { - throw "failed to load wasm binary file at '" + wasmBinaryFile + "'"; - } - return response['arrayBuffer'](); - }).catch(function () { - return getBinary(wasmBinaryFile); - }); - } - else { - if (readAsync) { - // fetch is not available or url is file => try XHR (readAsync uses XHR internally) - return new Promise(function(resolve, reject) { - readAsync(wasmBinaryFile, function(response) { resolve(new Uint8Array(/** @type{!ArrayBuffer} */(response))) }, reject) - }); - } - } - } - - // Otherwise, getBinary should be able to get it synchronously - return Promise.resolve().then(function() { return getBinary(wasmBinaryFile); }); -} - -// Create the wasm instance. -// Receives the wasm imports, returns the exports. -function createWasm() { - // prepare imports - var info = { - 'env': asmLibraryArg, - 'wasi_snapshot_preview1': asmLibraryArg, - }; - // Load the wasm module and create an instance of using native support in the JS engine. - // handle a generated wasm instance, receiving its exports and - // performing other necessary setup - /** @param {WebAssembly.Module=} module*/ - function receiveInstance(instance, module) { - var exports = instance.exports; - - Module['asm'] = exports; - - wasmMemory = Module['asm']['memory']; - updateGlobalBufferAndViews(wasmMemory.buffer); - - wasmTable = Module['asm']['__indirect_function_table']; - - addOnInit(Module['asm']['__wasm_call_ctors']); - - removeRunDependency('wasm-instantiate'); - } - // we can't run yet (except in a pthread, where we have a custom sync instantiator) - addRunDependency('wasm-instantiate'); - - // Prefer streaming instantiation if available. - function receiveInstantiationResult(result) { - // 'result' is a ResultObject object which has both the module and instance. - // receiveInstance() will swap in the exports (to Module.asm) so they can be called - // TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193, the above line no longer optimizes out down to the following line. - // When the regression is fixed, can restore the above USE_PTHREADS-enabled path. - receiveInstance(result['instance']); - } - - function instantiateArrayBuffer(receiver) { - return getBinaryPromise().then(function(binary) { - var result = WebAssembly.instantiate(binary, info); - return result; - }).then(receiver, function(reason) { - err('failed to asynchronously prepare wasm: ' + reason); - - abort(reason); - }); - } - - function instantiateAsync() { - if (!wasmBinary && - typeof WebAssembly.instantiateStreaming === 'function' && - !isDataURI(wasmBinaryFile) && - // Don't use streaming for file:// delivered objects in a webview, fetch them synchronously. - !isFileURI(wasmBinaryFile) && - typeof fetch === 'function') { - return fetch(wasmBinaryFile, { credentials: 'same-origin' }).then(function (response) { - var result = WebAssembly.instantiateStreaming(response, info); - return result.then(receiveInstantiationResult, function(reason) { - // We expect the most common failure cause to be a bad MIME type for the binary, - // in which case falling back to ArrayBuffer instantiation should work. - err('wasm streaming compile failed: ' + reason); - err('falling back to ArrayBuffer instantiation'); - return instantiateArrayBuffer(receiveInstantiationResult); - }); - }); - } else { - return instantiateArrayBuffer(receiveInstantiationResult); - } - } - - // User shell pages can write their own Module.instantiateWasm = function(imports, successCallback) callback - // to manually instantiate the Wasm module themselves. This allows pages to run the instantiation parallel - // to any other async startup actions they are performing. - if (Module['instantiateWasm']) { - try { - var exports = Module['instantiateWasm'](info, receiveInstance); - return exports; - } catch(e) { - err('Module.instantiateWasm callback failed with error: ' + e); - return false; - } - } - - instantiateAsync(); - return {}; // no exports yet; we'll fill them in later -} - -// Globals used by JS i64 conversions (see makeSetValue) -var tempDouble; -var tempI64; - -// === Body === - -var ASM_CONSTS = { - 652180: function($0, $1) {var level = $0; var message = Module.UTF8ToString ($1); var namespace = "Debugger.Debug"; if (MONO["logging"] && MONO.logging["debugger"]) { MONO.logging.debugger (level, message); return; } console.debug("%s: %s", namespace, message);}, - 652420: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652482: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652544: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652606: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652668: function($0, $1) {MONO.mono_wasm_add_dbg_command_received (1, 0, $0, $1);}, - 652728: function($0, $1) {MONO.string_decoder.decode($0, $0 + $1, true);}, - 652779: function($0, $1, $2) {var js_str = MONO.string_decoder.copy ($0); try { var res = eval (js_str); setValue ($2, 0, "i32"); if (res === null || res === undefined) return 0; else res = res.toString (); } catch (e) { res = e.toString(); setValue ($2, 1, "i32"); if (res === null || res === undefined) res = "unknown exception"; var stack = e.stack; if (stack) { if (stack.startsWith(res)) res = stack; else res += "\n" + stack; } } var buff = Module._malloc((res.length + 1) * 2); stringToUTF16 (res, buff, (res.length + 1) * 2); setValue ($1, res.length, "i32"); return buff;}, - 653334: function($0, $1, $2, $3, $4) {var log_level = $0; var message = Module.UTF8ToString ($1); var isFatal = $2; var domain = Module.UTF8ToString ($3); var dataPtr = $4; if (MONO["logging"] && MONO.logging["trace"]) { MONO.logging.trace(domain, log_level, message, isFatal, dataPtr); return; } if (isFatal) console.trace (message); switch (Module.UTF8ToString ($0)) { case "critical": case "error": console.error (message); break; case "warning": console.warn (message); break; case "message": console.log (message); break; case "info": console.info (message); break; case "debug": console.debug (message); break; default: console.log (message); break; }} -}; -function compile_function(snippet_ptr,len,is_exception){ try { var data = MONO.string_decoder.decode (snippet_ptr, snippet_ptr + len); var wrapper = '(function () { ' + data + ' })'; var funcFactory = eval(wrapper); var func = funcFactory(); if (typeof func !== 'function') { throw new Error('Code must return an instance of a JavaScript function. ' + 'Please use `return` statement to return a function.'); } setValue (is_exception, 0, "i32"); return BINDING.js_to_mono_obj (func, true); } catch (e) { res = e.toString (); setValue (is_exception, 1, "i32"); if (res === null || res === undefined) res = "unknown exception"; return BINDING.js_to_mono_obj (res, true); } } - - - - - - function callRuntimeCallbacks(callbacks) { - while (callbacks.length > 0) { - var callback = callbacks.shift(); - if (typeof callback == 'function') { - callback(Module); // Pass the module as the first argument. - continue; - } - var func = callback.func; - if (typeof func === 'number') { - if (callback.arg === undefined) { - wasmTable.get(func)(); - } else { - wasmTable.get(func)(callback.arg); - } - } else { - func(callback.arg === undefined ? null : callback.arg); - } - } - } - - function demangle(func) { - return func; - } - - function demangleAll(text) { - var regex = - /\b_Z[\w\d_]+/g; - return text.replace(regex, - function(x) { - var y = demangle(x); - return x === y ? x : (y + ' [' + x + ']'); - }); - } - - function jsStackTrace() { - var error = new Error(); - if (!error.stack) { - // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown, - // so try that as a special-case. - try { - throw new Error(); - } catch(e) { - error = e; - } - if (!error.stack) { - return '(no stack trace available)'; - } - } - return error.stack.toString(); - } - - var runtimeKeepaliveCounter=0; - function keepRuntimeAlive() { - return noExitRuntime || runtimeKeepaliveCounter > 0; - } - - function stackTrace() { - var js = jsStackTrace(); - if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace'](); - return demangleAll(js); - } - - function ___assert_fail(condition, filename, line, func) { - abort('Assertion failed: ' + UTF8ToString(condition) + ', at: ' + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); - } - - var _emscripten_get_now;if (ENVIRONMENT_IS_NODE) { - _emscripten_get_now = function() { - var t = process['hrtime'](); - return t[0] * 1e3 + t[1] / 1e6; - }; - } else if (typeof dateNow !== 'undefined') { - _emscripten_get_now = dateNow; - } else _emscripten_get_now = function() { return performance.now(); } - ; - - var _emscripten_get_now_is_monotonic=true;; - - function setErrNo(value) { - HEAP32[((___errno_location())>>2)] = value; - return value; - } - function _clock_gettime(clk_id, tp) { - // int clock_gettime(clockid_t clk_id, struct timespec *tp); - var now; - if (clk_id === 0) { - now = Date.now(); - } else if ((clk_id === 1 || clk_id === 4) && _emscripten_get_now_is_monotonic) { - now = _emscripten_get_now(); - } else { - setErrNo(28); - return -1; - } - HEAP32[((tp)>>2)] = (now/1000)|0; // seconds - HEAP32[(((tp)+(4))>>2)] = ((now % 1000)*1000*1000)|0; // nanoseconds - return 0; - } - function ___clock_gettime(a0,a1 - ) { - return _clock_gettime(a0,a1); - } - - var ExceptionInfoAttrs={DESTRUCTOR_OFFSET:0,REFCOUNT_OFFSET:4,TYPE_OFFSET:8,CAUGHT_OFFSET:12,RETHROWN_OFFSET:13,SIZE:16}; - function ___cxa_allocate_exception(size) { - // Thrown object is prepended by exception metadata block - return _malloc(size + ExceptionInfoAttrs.SIZE) + ExceptionInfoAttrs.SIZE; - } - - function ExceptionInfo(excPtr) { - this.excPtr = excPtr; - this.ptr = excPtr - ExceptionInfoAttrs.SIZE; - - this.set_type = function(type) { - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.TYPE_OFFSET))>>2)] = type; - }; - - this.get_type = function() { - return HEAP32[(((this.ptr)+(ExceptionInfoAttrs.TYPE_OFFSET))>>2)]; - }; - - this.set_destructor = function(destructor) { - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.DESTRUCTOR_OFFSET))>>2)] = destructor; - }; - - this.get_destructor = function() { - return HEAP32[(((this.ptr)+(ExceptionInfoAttrs.DESTRUCTOR_OFFSET))>>2)]; - }; - - this.set_refcount = function(refcount) { - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)] = refcount; - }; - - this.set_caught = function (caught) { - caught = caught ? 1 : 0; - HEAP8[(((this.ptr)+(ExceptionInfoAttrs.CAUGHT_OFFSET))>>0)] = caught; - }; - - this.get_caught = function () { - return HEAP8[(((this.ptr)+(ExceptionInfoAttrs.CAUGHT_OFFSET))>>0)] != 0; - }; - - this.set_rethrown = function (rethrown) { - rethrown = rethrown ? 1 : 0; - HEAP8[(((this.ptr)+(ExceptionInfoAttrs.RETHROWN_OFFSET))>>0)] = rethrown; - }; - - this.get_rethrown = function () { - return HEAP8[(((this.ptr)+(ExceptionInfoAttrs.RETHROWN_OFFSET))>>0)] != 0; - }; - - // Initialize native structure fields. Should be called once after allocated. - this.init = function(type, destructor) { - this.set_type(type); - this.set_destructor(destructor); - this.set_refcount(0); - this.set_caught(false); - this.set_rethrown(false); - } - - this.add_ref = function() { - var value = HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)]; - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)] = value + 1; - }; - - // Returns true if last reference released. - this.release_ref = function() { - var prev = HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)]; - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)] = prev - 1; - return prev === 1; - }; - } - function CatchInfo(ptr) { - - this.free = function() { - _free(this.ptr); - this.ptr = 0; - }; - - this.set_base_ptr = function(basePtr) { - HEAP32[((this.ptr)>>2)] = basePtr; - }; - - this.get_base_ptr = function() { - return HEAP32[((this.ptr)>>2)]; - }; - - this.set_adjusted_ptr = function(adjustedPtr) { - var ptrSize = 4; - HEAP32[(((this.ptr)+(ptrSize))>>2)] = adjustedPtr; - }; - - this.get_adjusted_ptr = function() { - var ptrSize = 4; - return HEAP32[(((this.ptr)+(ptrSize))>>2)]; - }; - - // Get pointer which is expected to be received by catch clause in C++ code. It may be adjusted - // when the pointer is casted to some of the exception object base classes (e.g. when virtual - // inheritance is used). When a pointer is thrown this method should return the thrown pointer - // itself. - this.get_exception_ptr = function() { - // Work around a fastcomp bug, this code is still included for some reason in a build without - // exceptions support. - var isPointer = ___cxa_is_pointer_type( - this.get_exception_info().get_type()); - if (isPointer) { - return HEAP32[((this.get_base_ptr())>>2)]; - } - var adjusted = this.get_adjusted_ptr(); - if (adjusted !== 0) return adjusted; - return this.get_base_ptr(); - }; - - this.get_exception_info = function() { - return new ExceptionInfo(this.get_base_ptr()); - }; - - if (ptr === undefined) { - this.ptr = _malloc(8); - this.set_adjusted_ptr(0); - } else { - this.ptr = ptr; - } - } - - var exceptionCaught= []; - - function exception_addRef(info) { - info.add_ref(); - } - - var uncaughtExceptionCount=0; - function ___cxa_begin_catch(ptr) { - var catchInfo = new CatchInfo(ptr); - var info = catchInfo.get_exception_info(); - if (!info.get_caught()) { - info.set_caught(true); - uncaughtExceptionCount--; - } - info.set_rethrown(false); - exceptionCaught.push(catchInfo); - exception_addRef(info); - return catchInfo.get_exception_ptr(); - } - - var exceptionLast=0; - - function ___cxa_free_exception(ptr) { - return _free(new ExceptionInfo(ptr).ptr); - } - function exception_decRef(info) { - // A rethrown exception can reach refcount 0; it must not be discarded - // Its next handler will clear the rethrown flag and addRef it, prior to - // final decRef and destruction here - if (info.release_ref() && !info.get_rethrown()) { - var destructor = info.get_destructor(); - if (destructor) { - // In Wasm, destructors return 'this' as in ARM - wasmTable.get(destructor)(info.excPtr); - } - ___cxa_free_exception(info.excPtr); - } - } - function ___cxa_end_catch() { - // Clear state flag. - _setThrew(0); - // Call destructor if one is registered then clear it. - var catchInfo = exceptionCaught.pop(); - - exception_decRef(catchInfo.get_exception_info()); - catchInfo.free(); - exceptionLast = 0; // XXX in decRef? - } - - function ___resumeException(catchInfoPtr) { - var catchInfo = new CatchInfo(catchInfoPtr); - var ptr = catchInfo.get_base_ptr(); - if (!exceptionLast) { exceptionLast = ptr; } - catchInfo.free(); - throw ptr; - } - function ___cxa_find_matching_catch_2() { - var thrown = exceptionLast; - if (!thrown) { - // just pass through the null ptr - setTempRet0(0); return ((0)|0); - } - var info = new ExceptionInfo(thrown); - var thrownType = info.get_type(); - var catchInfo = new CatchInfo(); - catchInfo.set_base_ptr(thrown); - if (!thrownType) { - // just pass through the thrown ptr - setTempRet0(0); return ((catchInfo.ptr)|0); - } - var typeArray = Array.prototype.slice.call(arguments); - - // can_catch receives a **, add indirection - var stackTop = stackSave(); - var exceptionThrowBuf = stackAlloc(4); - HEAP32[((exceptionThrowBuf)>>2)] = thrown; - // The different catch blocks are denoted by different types. - // Due to inheritance, those types may not precisely match the - // type of the thrown object. Find one which matches, and - // return the type of the catch block which should be called. - for (var i = 0; i < typeArray.length; i++) { - var caughtType = typeArray[i]; - if (caughtType === 0 || caughtType === thrownType) { - // Catch all clause matched or exactly the same type is caught - break; - } - if (___cxa_can_catch(caughtType, thrownType, exceptionThrowBuf)) { - var adjusted = HEAP32[((exceptionThrowBuf)>>2)]; - if (thrown !== adjusted) { - catchInfo.set_adjusted_ptr(adjusted); - } - setTempRet0(caughtType); return ((catchInfo.ptr)|0); - } - } - stackRestore(stackTop); - setTempRet0(thrownType); return ((catchInfo.ptr)|0); - } - - function ___cxa_find_matching_catch_3() { - var thrown = exceptionLast; - if (!thrown) { - // just pass through the null ptr - setTempRet0(0); return ((0)|0); - } - var info = new ExceptionInfo(thrown); - var thrownType = info.get_type(); - var catchInfo = new CatchInfo(); - catchInfo.set_base_ptr(thrown); - if (!thrownType) { - // just pass through the thrown ptr - setTempRet0(0); return ((catchInfo.ptr)|0); - } - var typeArray = Array.prototype.slice.call(arguments); - - // can_catch receives a **, add indirection - var stackTop = stackSave(); - var exceptionThrowBuf = stackAlloc(4); - HEAP32[((exceptionThrowBuf)>>2)] = thrown; - // The different catch blocks are denoted by different types. - // Due to inheritance, those types may not precisely match the - // type of the thrown object. Find one which matches, and - // return the type of the catch block which should be called. - for (var i = 0; i < typeArray.length; i++) { - var caughtType = typeArray[i]; - if (caughtType === 0 || caughtType === thrownType) { - // Catch all clause matched or exactly the same type is caught - break; - } - if (___cxa_can_catch(caughtType, thrownType, exceptionThrowBuf)) { - var adjusted = HEAP32[((exceptionThrowBuf)>>2)]; - if (thrown !== adjusted) { - catchInfo.set_adjusted_ptr(adjusted); - } - setTempRet0(caughtType); return ((catchInfo.ptr)|0); - } - } - stackRestore(stackTop); - setTempRet0(thrownType); return ((catchInfo.ptr)|0); - } - - - function ___cxa_rethrow() { - var catchInfo = exceptionCaught.pop(); - if (!catchInfo) { - abort('no exception to throw'); - } - var info = catchInfo.get_exception_info(); - var ptr = catchInfo.get_base_ptr(); - if (!info.get_rethrown()) { - // Only pop if the corresponding push was through rethrow_primary_exception - exceptionCaught.push(catchInfo); - info.set_rethrown(true); - info.set_caught(false); - uncaughtExceptionCount++; - } else { - catchInfo.free(); - } - exceptionLast = ptr; - throw ptr; - } - - function ___cxa_throw(ptr, type, destructor) { - var info = new ExceptionInfo(ptr); - // Initialize ExceptionInfo content after it was allocated in __cxa_allocate_exception. - info.init(type, destructor); - exceptionLast = ptr; - uncaughtExceptionCount++; - throw ptr; - } - - function _tzset() { - // TODO: Use (malleable) environment variables instead of system settings. - if (_tzset.called) return; - _tzset.called = true; - - var currentYear = new Date().getFullYear(); - var winter = new Date(currentYear, 0, 1); - var summer = new Date(currentYear, 6, 1); - var winterOffset = winter.getTimezoneOffset(); - var summerOffset = summer.getTimezoneOffset(); - - // Local standard timezone offset. Local standard time is not adjusted for daylight savings. - // This code uses the fact that getTimezoneOffset returns a greater value during Standard Time versus Daylight Saving Time (DST). - // Thus it determines the expected output during Standard Time, and it compares whether the output of the given date the same (Standard) or less (DST). - var stdTimezoneOffset = Math.max(winterOffset, summerOffset); - - // timezone is specified as seconds west of UTC ("The external variable - // `timezone` shall be set to the difference, in seconds, between - // Coordinated Universal Time (UTC) and local standard time."), the same - // as returned by stdTimezoneOffset. - // See http://pubs.opengroup.org/onlinepubs/009695399/functions/tzset.html - HEAP32[((__get_timezone())>>2)] = stdTimezoneOffset * 60; - - HEAP32[((__get_daylight())>>2)] = Number(winterOffset != summerOffset); - - function extractZone(date) { - var match = date.toTimeString().match(/\(([A-Za-z ]+)\)$/); - return match ? match[1] : "GMT"; - }; - var winterName = extractZone(winter); - var summerName = extractZone(summer); - var winterNamePtr = allocateUTF8(winterName); - var summerNamePtr = allocateUTF8(summerName); - if (summerOffset < winterOffset) { - // Northern hemisphere - HEAP32[((__get_tzname())>>2)] = winterNamePtr; - HEAP32[(((__get_tzname())+(4))>>2)] = summerNamePtr; - } else { - HEAP32[((__get_tzname())>>2)] = summerNamePtr; - HEAP32[(((__get_tzname())+(4))>>2)] = winterNamePtr; - } - } - function _localtime_r(time, tmPtr) { - _tzset(); - var date = new Date(HEAP32[((time)>>2)]*1000); - HEAP32[((tmPtr)>>2)] = date.getSeconds(); - HEAP32[(((tmPtr)+(4))>>2)] = date.getMinutes(); - HEAP32[(((tmPtr)+(8))>>2)] = date.getHours(); - HEAP32[(((tmPtr)+(12))>>2)] = date.getDate(); - HEAP32[(((tmPtr)+(16))>>2)] = date.getMonth(); - HEAP32[(((tmPtr)+(20))>>2)] = date.getFullYear()-1900; - HEAP32[(((tmPtr)+(24))>>2)] = date.getDay(); - - var start = new Date(date.getFullYear(), 0, 1); - var yday = ((date.getTime() - start.getTime()) / (1000 * 60 * 60 * 24))|0; - HEAP32[(((tmPtr)+(28))>>2)] = yday; - HEAP32[(((tmPtr)+(36))>>2)] = -(date.getTimezoneOffset() * 60); - - // Attention: DST is in December in South, and some regions don't have DST at all. - var summerOffset = new Date(date.getFullYear(), 6, 1).getTimezoneOffset(); - var winterOffset = start.getTimezoneOffset(); - var dst = (summerOffset != winterOffset && date.getTimezoneOffset() == Math.min(winterOffset, summerOffset))|0; - HEAP32[(((tmPtr)+(32))>>2)] = dst; - - var zonePtr = HEAP32[(((__get_tzname())+(dst ? 4 : 0))>>2)]; - HEAP32[(((tmPtr)+(40))>>2)] = zonePtr; - - return tmPtr; - } - function ___localtime_r(a0,a1 - ) { - return _localtime_r(a0,a1); - } - - - var PATH={splitPath:function(filename) { - var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - return splitPathRe.exec(filename).slice(1); - },normalizeArray:function(parts, allowAboveRoot) { - // if the path tries to go above the root, `up` ends up > 0 - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === '.') { - parts.splice(i, 1); - } else if (last === '..') { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - // if the path is allowed to go above the root, restore leading ..s - if (allowAboveRoot) { - for (; up; up--) { - parts.unshift('..'); - } - } - return parts; - },normalize:function(path) { - var isAbsolute = path.charAt(0) === '/', - trailingSlash = path.substr(-1) === '/'; - // Normalize the path - path = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), !isAbsolute).join('/'); - if (!path && !isAbsolute) { - path = '.'; - } - if (path && trailingSlash) { - path += '/'; - } - return (isAbsolute ? '/' : '') + path; - },dirname:function(path) { - var result = PATH.splitPath(path), - root = result[0], - dir = result[1]; - if (!root && !dir) { - // No dirname whatsoever - return '.'; - } - if (dir) { - // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); - } - return root + dir; - },basename:function(path) { - // EMSCRIPTEN return '/'' for '/', not an empty string - if (path === '/') return '/'; - path = PATH.normalize(path); - path = path.replace(/\/$/, ""); - var lastSlash = path.lastIndexOf('/'); - if (lastSlash === -1) return path; - return path.substr(lastSlash+1); - },extname:function(path) { - return PATH.splitPath(path)[3]; - },join:function() { - var paths = Array.prototype.slice.call(arguments, 0); - return PATH.normalize(paths.join('/')); - },join2:function(l, r) { - return PATH.normalize(l + '/' + r); - }}; - - function getRandomDevice() { - if (typeof crypto === 'object' && typeof crypto['getRandomValues'] === 'function') { - // for modern web browsers - var randomBuffer = new Uint8Array(1); - return function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; - } else - if (ENVIRONMENT_IS_NODE) { - // for nodejs with or without crypto support included - try { - var crypto_module = require('crypto'); - // nodejs has crypto support - return function() { return crypto_module['randomBytes'](1)[0]; }; - } catch (e) { - // nodejs doesn't have crypto support - } - } - // we couldn't find a proper implementation, as Math.random() is not suitable for /dev/random, see emscripten-core/emscripten/pull/7096 - return function() { abort("randomDevice"); }; - } - - var PATH_FS={resolve:function() { - var resolvedPath = '', - resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : FS.cwd(); - // Skip empty and invalid entries - if (typeof path !== 'string') { - throw new TypeError('Arguments to path.resolve must be strings'); - } else if (!path) { - return ''; // an invalid portion invalidates the whole thing - } - resolvedPath = path + '/' + resolvedPath; - resolvedAbsolute = path.charAt(0) === '/'; - } - // At this point the path should be resolved to a full absolute path, but - // handle relative paths to be safe (might happen when process.cwd() fails) - resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { - return !!p; - }), !resolvedAbsolute).join('/'); - return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - },relative:function(from, to) { - from = PATH_FS.resolve(from).substr(1); - to = PATH_FS.resolve(to).substr(1); - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== '') break; - } - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== '') break; - } - if (start > end) return []; - return arr.slice(start, end - start + 1); - } - var fromParts = trim(from.split('/')); - var toParts = trim(to.split('/')); - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push('..'); - } - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - return outputParts.join('/'); - }}; - - var TTY={ttys:[],init:function () { - // https://github.com/emscripten-core/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // currently, FS.init does not distinguish if process.stdin is a file or TTY - // // device, it always assumes it's a TTY device. because of this, we're forcing - // // process.stdin to UTF8 encoding to at least make stdin reading compatible - // // with text files until FS.init can be refactored. - // process['stdin']['setEncoding']('utf8'); - // } - },shutdown:function() { - // https://github.com/emscripten-core/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? - // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation - // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? - // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle - // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call - // process['stdin']['pause'](); - // } - },register:function(dev, ops) { - TTY.ttys[dev] = { input: [], output: [], ops: ops }; - FS.registerDevice(dev, TTY.stream_ops); - },stream_ops:{open:function(stream) { - var tty = TTY.ttys[stream.node.rdev]; - if (!tty) { - throw new FS.ErrnoError(43); - } - stream.tty = tty; - stream.seekable = false; - },close:function(stream) { - // flush any pending line data - stream.tty.ops.flush(stream.tty); - },flush:function(stream) { - stream.tty.ops.flush(stream.tty); - },read:function(stream, buffer, offset, length, pos /* ignored */) { - if (!stream.tty || !stream.tty.ops.get_char) { - throw new FS.ErrnoError(60); - } - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = stream.tty.ops.get_char(stream.tty); - } catch (e) { - throw new FS.ErrnoError(29); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(6); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - },write:function(stream, buffer, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.put_char) { - throw new FS.ErrnoError(60); - } - try { - for (var i = 0; i < length; i++) { - stream.tty.ops.put_char(stream.tty, buffer[offset+i]); - } - } catch (e) { - throw new FS.ErrnoError(29); - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - }},default_tty_ops:{get_char:function(tty) { - if (!tty.input.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = Buffer.alloc ? Buffer.alloc(BUFSIZE) : new Buffer(BUFSIZE); - var bytesRead = 0; - - try { - bytesRead = nodeFS.readSync(process.stdin.fd, buf, 0, BUFSIZE, null); - } catch(e) { - // Cross-platform differences: on Windows, reading EOF throws an exception, but on other OSes, - // reading EOF returns 0. Uniformize behavior by treating the EOF exception to return 0. - if (e.toString().includes('EOF')) bytesRead = 0; - else throw e; - } - - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } else { - result = null; - } - } else - if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else if (typeof readline == 'function') { - // Command line. - result = readline(); - if (result !== null) { - result += '\n'; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - },put_char:function(tty, val) { - if (val === null || val === 10) { - out(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. - } - },flush:function(tty) { - if (tty.output && tty.output.length > 0) { - out(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }},default_tty1_ops:{put_char:function(tty, val) { - if (val === null || val === 10) { - err(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); - } - },flush:function(tty) { - if (tty.output && tty.output.length > 0) { - err(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }}}; - - function mmapAlloc(size) { - var alignedSize = alignMemory(size, 65536); - var ptr = _malloc(alignedSize); - while (size < alignedSize) HEAP8[ptr + size++] = 0; - return ptr; - } - var MEMFS={ops_table:null,mount:function(mount) { - return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createNode:function(parent, name, mode, dev) { - if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { - // no supported - throw new FS.ErrnoError(63); - } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops - } - }; - } - var node = FS.createNode(parent, name, mode, dev); - if (FS.isDir(node.mode)) { - node.node_ops = MEMFS.ops_table.dir.node; - node.stream_ops = MEMFS.ops_table.dir.stream; - node.contents = {}; - } else if (FS.isFile(node.mode)) { - node.node_ops = MEMFS.ops_table.file.node; - node.stream_ops = MEMFS.ops_table.file.stream; - node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.length which gives the whole capacity. - // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred - // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size - // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. - node.contents = null; - } else if (FS.isLink(node.mode)) { - node.node_ops = MEMFS.ops_table.link.node; - node.stream_ops = MEMFS.ops_table.link.stream; - } else if (FS.isChrdev(node.mode)) { - node.node_ops = MEMFS.ops_table.chrdev.node; - node.stream_ops = MEMFS.ops_table.chrdev.stream; - } - node.timestamp = Date.now(); - // add the new node to the parent - if (parent) { - parent.contents[name] = node; - parent.timestamp = node.timestamp; - } - return node; - },getFileDataAsTypedArray:function(node) { - if (!node.contents) return new Uint8Array(0); - if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. - return new Uint8Array(node.contents); - },expandFileStorage:function(node, newCapacity) { - var prevCapacity = node.contents ? node.contents.length : 0; - if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. - // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. - // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to - // avoid overshooting the allocation cap by a very large margin. - var CAPACITY_DOUBLING_MAX = 1024 * 1024; - newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) >>> 0); - if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. - var oldContents = node.contents; - node.contents = new Uint8Array(newCapacity); // Allocate new storage. - if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - },resizeFileStorage:function(node, newSize) { - if (node.usedBytes == newSize) return; - if (newSize == 0) { - node.contents = null; // Fully decommit when requesting a resize to zero. - node.usedBytes = 0; - } else { - var oldContents = node.contents; - node.contents = new Uint8Array(newSize); // Allocate new storage. - if (oldContents) { - node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. - } - node.usedBytes = newSize; - } - },node_ops:{getattr:function(node) { - var attr = {}; - // device numbers reuse inode numbers. - attr.dev = FS.isChrdev(node.mode) ? node.id : 1; - attr.ino = node.id; - attr.mode = node.mode; - attr.nlink = 1; - attr.uid = 0; - attr.gid = 0; - attr.rdev = node.rdev; - if (FS.isDir(node.mode)) { - attr.size = 4096; - } else if (FS.isFile(node.mode)) { - attr.size = node.usedBytes; - } else if (FS.isLink(node.mode)) { - attr.size = node.link.length; - } else { - attr.size = 0; - } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); - // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), - // but this is not required by the standard. - attr.blksize = 4096; - attr.blocks = Math.ceil(attr.size / attr.blksize); - return attr; - },setattr:function(node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - if (attr.size !== undefined) { - MEMFS.resizeFileStorage(node, attr.size); - } - },lookup:function(parent, name) { - throw FS.genericErrors[44]; - },mknod:function(parent, name, mode, dev) { - return MEMFS.createNode(parent, name, mode, dev); - },rename:function(old_node, new_dir, new_name) { - // if we're overwriting a directory at new_name, make sure it's empty. - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { - for (var i in new_node.contents) { - throw new FS.ErrnoError(55); - } - } - } - // do the internal rewiring - delete old_node.parent.contents[old_node.name]; - old_node.parent.timestamp = Date.now() - old_node.name = new_name; - new_dir.contents[new_name] = old_node; - new_dir.timestamp = old_node.parent.timestamp; - old_node.parent = new_dir; - },unlink:function(parent, name) { - delete parent.contents[name]; - parent.timestamp = Date.now(); - },rmdir:function(parent, name) { - var node = FS.lookupNode(parent, name); - for (var i in node.contents) { - throw new FS.ErrnoError(55); - } - delete parent.contents[name]; - parent.timestamp = Date.now(); - },readdir:function(node) { - var entries = ['.', '..']; - for (var key in node.contents) { - if (!node.contents.hasOwnProperty(key)) { - continue; - } - entries.push(key); - } - return entries; - },symlink:function(parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); - node.link = oldpath; - return node; - },readlink:function(node) { - if (!FS.isLink(node.mode)) { - throw new FS.ErrnoError(28); - } - return node.link; - }},stream_ops:{read:function(stream, buffer, offset, length, position) { - var contents = stream.node.contents; - if (position >= stream.node.usedBytes) return 0; - var size = Math.min(stream.node.usedBytes - position, length); - if (size > 8 && contents.subarray) { // non-trivial, and typed array - buffer.set(contents.subarray(position, position + size), offset); - } else { - for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; - } - return size; - },write:function(stream, buffer, offset, length, position, canOwn) { - // If the buffer is located in main memory (HEAP), and if - // memory can grow, we can't hold on to references of the - // memory buffer, as they may get invalidated. That means we - // need to do copy its contents. - if (buffer.buffer === HEAP8.buffer) { - canOwn = false; - } - - if (!length) return 0; - var node = stream.node; - node.timestamp = Date.now(); - - if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? - if (canOwn) { - node.contents = buffer.subarray(offset, offset + length); - node.usedBytes = length; - return length; - } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. - node.contents = buffer.slice(offset, offset + length); - node.usedBytes = length; - return length; - } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? - node.contents.set(buffer.subarray(offset, offset + length), position); - return length; - } - } - - // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. - MEMFS.expandFileStorage(node, position+length); - if (node.contents.subarray && buffer.subarray) { - // Use typed array write which is available. - node.contents.set(buffer.subarray(offset, offset + length), position); - } else { - for (var i = 0; i < length; i++) { - node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. - } - } - node.usedBytes = Math.max(node.usedBytes, position + length); - return length; - },llseek:function(stream, offset, whence) { - var position = offset; - if (whence === 1) { - position += stream.position; - } else if (whence === 2) { - if (FS.isFile(stream.node.mode)) { - position += stream.node.usedBytes; - } - } - if (position < 0) { - throw new FS.ErrnoError(28); - } - return position; - },allocate:function(stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - },mmap:function(stream, address, length, position, prot, flags) { - if (address !== 0) { - // We don't currently support location hints for the address of the mapping - throw new FS.ErrnoError(28); - } - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - var ptr; - var allocated; - var contents = stream.node.contents; - // Only make a new copy when MAP_PRIVATE is specified. - if (!(flags & 2) && contents.buffer === buffer) { - // We can't emulate MAP_SHARED when the file is not backed by the buffer - // we're mapping to (e.g. the HEAP buffer). - allocated = false; - ptr = contents.byteOffset; - } else { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < contents.length) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - allocated = true; - ptr = mmapAlloc(length); - if (!ptr) { - throw new FS.ErrnoError(48); - } - HEAP8.set(contents, ptr); - } - return { ptr: ptr, allocated: allocated }; - },msync:function(stream, buffer, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (mmapFlags & 2) { - // MAP_PRIVATE calls need not to be synced back to underlying fs - return 0; - } - - var bytesWritten = MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); - // should we check if bytesWritten and length are the same? - return 0; - }}}; - var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:function(path, opts) { - path = PATH_FS.resolve(FS.cwd(), path); - opts = opts || {}; - - if (!path) return { path: '', node: null }; - - var defaults = { - follow_mount: true, - recurse_count: 0 - }; - for (var key in defaults) { - if (opts[key] === undefined) { - opts[key] = defaults[key]; - } - } - - if (opts.recurse_count > 8) { // max recursive lookup of 8 - throw new FS.ErrnoError(32); - } - - // split the path - var parts = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), false); - - // start at the root - var current = FS.root; - var current_path = '/'; - - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } - - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); - - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current)) { - if (!islast || (islast && opts.follow_mount)) { - current = current.mounted.root; - } - } - - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH_FS.resolve(PATH.dirname(current_path), link); - - var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); - current = lookup.node; - - if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - throw new FS.ErrnoError(32); - } - } - } - } - - return { path: current_path, node: current }; - },getPath:function(node) { - var path; - while (true) { - if (FS.isRoot(node)) { - var mount = node.mount.mountpoint; - if (!path) return mount; - return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; - } - path = path ? node.name + '/' + path : node.name; - node = node.parent; - } - },hashName:function(parentid, name) { - var hash = 0; - - for (var i = 0; i < name.length; i++) { - hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; - } - return ((parentid + hash) >>> 0) % FS.nameTable.length; - },hashAddNode:function(node) { - var hash = FS.hashName(node.parent.id, node.name); - node.name_next = FS.nameTable[hash]; - FS.nameTable[hash] = node; - },hashRemoveNode:function(node) { - var hash = FS.hashName(node.parent.id, node.name); - if (FS.nameTable[hash] === node) { - FS.nameTable[hash] = node.name_next; - } else { - var current = FS.nameTable[hash]; - while (current) { - if (current.name_next === node) { - current.name_next = node.name_next; - break; - } - current = current.name_next; - } - } - },lookupNode:function(parent, name) { - var errCode = FS.mayLookup(parent); - if (errCode) { - throw new FS.ErrnoError(errCode, parent); - } - var hash = FS.hashName(parent.id, name); - for (var node = FS.nameTable[hash]; node; node = node.name_next) { - var nodeName = node.name; - if (node.parent.id === parent.id && nodeName === name) { - return node; - } - } - // if we failed to find it in the cache, call into the VFS - return FS.lookup(parent, name); - },createNode:function(parent, name, mode, rdev) { - var node = new FS.FSNode(parent, name, mode, rdev); - - FS.hashAddNode(node); - - return node; - },destroyNode:function(node) { - FS.hashRemoveNode(node); - },isRoot:function(node) { - return node === node.parent; - },isMountpoint:function(node) { - return !!node.mounted; - },isFile:function(mode) { - return (mode & 61440) === 32768; - },isDir:function(mode) { - return (mode & 61440) === 16384; - },isLink:function(mode) { - return (mode & 61440) === 40960; - },isChrdev:function(mode) { - return (mode & 61440) === 8192; - },isBlkdev:function(mode) { - return (mode & 61440) === 24576; - },isFIFO:function(mode) { - return (mode & 61440) === 4096; - },isSocket:function(mode) { - return (mode & 49152) === 49152; - },flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:function(str) { - var flags = FS.flagModes[str]; - if (typeof flags === 'undefined') { - throw new Error('Unknown file open mode: ' + str); - } - return flags; - },flagsToPermissionString:function(flag) { - var perms = ['r', 'w', 'rw'][flag & 3]; - if ((flag & 512)) { - perms += 'w'; - } - return perms; - },nodePermissions:function(node, perms) { - if (FS.ignorePermissions) { - return 0; - } - // return 0 if any user, group or owner bits are set. - if (perms.includes('r') && !(node.mode & 292)) { - return 2; - } else if (perms.includes('w') && !(node.mode & 146)) { - return 2; - } else if (perms.includes('x') && !(node.mode & 73)) { - return 2; - } - return 0; - },mayLookup:function(dir) { - var errCode = FS.nodePermissions(dir, 'x'); - if (errCode) return errCode; - if (!dir.node_ops.lookup) return 2; - return 0; - },mayCreate:function(dir, name) { - try { - var node = FS.lookupNode(dir, name); - return 20; - } catch (e) { - } - return FS.nodePermissions(dir, 'wx'); - },mayDelete:function(dir, name, isdir) { - var node; - try { - node = FS.lookupNode(dir, name); - } catch (e) { - return e.errno; - } - var errCode = FS.nodePermissions(dir, 'wx'); - if (errCode) { - return errCode; - } - if (isdir) { - if (!FS.isDir(node.mode)) { - return 54; - } - if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { - return 10; - } - } else { - if (FS.isDir(node.mode)) { - return 31; - } - } - return 0; - },mayOpen:function(node, flags) { - if (!node) { - return 44; - } - if (FS.isLink(node.mode)) { - return 32; - } else if (FS.isDir(node.mode)) { - if (FS.flagsToPermissionString(flags) !== 'r' || // opening for write - (flags & 512)) { // TODO: check for O_SEARCH? (== search for dir only) - return 31; - } - } - return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - },MAX_OPEN_FDS:4096,nextfd:function(fd_start, fd_end) { - fd_start = fd_start || 0; - fd_end = fd_end || FS.MAX_OPEN_FDS; - for (var fd = fd_start; fd <= fd_end; fd++) { - if (!FS.streams[fd]) { - return fd; - } - } - throw new FS.ErrnoError(33); - },getStream:function(fd) { - return FS.streams[fd]; - },createStream:function(stream, fd_start, fd_end) { - if (!FS.FSStream) { - FS.FSStream = /** @constructor */ function(){}; - FS.FSStream.prototype = { - object: { - get: function() { return this.node; }, - set: function(val) { this.node = val; } - }, - isRead: { - get: function() { return (this.flags & 2097155) !== 1; } - }, - isWrite: { - get: function() { return (this.flags & 2097155) !== 0; } - }, - isAppend: { - get: function() { return (this.flags & 1024); } - } - }; - } - // clone it, so we can return an instance of FSStream - var newStream = new FS.FSStream(); - for (var p in stream) { - newStream[p] = stream[p]; - } - stream = newStream; - var fd = FS.nextfd(fd_start, fd_end); - stream.fd = fd; - FS.streams[fd] = stream; - return stream; - },closeStream:function(fd) { - FS.streams[fd] = null; - },chrdev_stream_ops:{open:function(stream) { - var device = FS.getDevice(stream.node.rdev); - // override node's stream ops with the device's - stream.stream_ops = device.stream_ops; - // forward the open call - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - },llseek:function() { - throw new FS.ErrnoError(70); - }},major:function(dev) { - return ((dev) >> 8); - },minor:function(dev) { - return ((dev) & 0xff); - },makedev:function(ma, mi) { - return ((ma) << 8 | (mi)); - },registerDevice:function(dev, ops) { - FS.devices[dev] = { stream_ops: ops }; - },getDevice:function(dev) { - return FS.devices[dev]; - },getMounts:function(mount) { - var mounts = []; - var check = [mount]; - - while (check.length) { - var m = check.pop(); - - mounts.push(m); - - check.push.apply(check, m.mounts); - } - - return mounts; - },syncfs:function(populate, callback) { - if (typeof(populate) === 'function') { - callback = populate; - populate = false; - } - - FS.syncFSRequests++; - - if (FS.syncFSRequests > 1) { - err('warning: ' + FS.syncFSRequests + ' FS.syncfs operations in flight at once, probably just doing extra work'); - } - - var mounts = FS.getMounts(FS.root.mount); - var completed = 0; - - function doCallback(errCode) { - FS.syncFSRequests--; - return callback(errCode); - } - - function done(errCode) { - if (errCode) { - if (!done.errored) { - done.errored = true; - return doCallback(errCode); - } - return; - } - if (++completed >= mounts.length) { - doCallback(null); - } - }; - - // sync all mounts - mounts.forEach(function (mount) { - if (!mount.type.syncfs) { - return done(null); - } - mount.type.syncfs(mount, populate, done); - }); - },mount:function(type, opts, mountpoint) { - var root = mountpoint === '/'; - var pseudo = !mountpoint; - var node; - - if (root && FS.root) { - throw new FS.ErrnoError(10); - } else if (!root && !pseudo) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - mountpoint = lookup.path; // use the absolute path - node = lookup.node; - - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - - if (!FS.isDir(node.mode)) { - throw new FS.ErrnoError(54); - } - } - - var mount = { - type: type, - opts: opts, - mountpoint: mountpoint, - mounts: [] - }; - - // create a root node for the fs - var mountRoot = type.mount(mount); - mountRoot.mount = mount; - mount.root = mountRoot; - - if (root) { - FS.root = mountRoot; - } else if (node) { - // set as a mountpoint - node.mounted = mount; - - // add the new mount to the current mount's children - if (node.mount) { - node.mount.mounts.push(mount); - } - } - - return mountRoot; - },unmount:function (mountpoint) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - if (!FS.isMountpoint(lookup.node)) { - throw new FS.ErrnoError(28); - } - - // destroy the nodes for this mount, and all its child mounts - var node = lookup.node; - var mount = node.mounted; - var mounts = FS.getMounts(mount); - - Object.keys(FS.nameTable).forEach(function (hash) { - var current = FS.nameTable[hash]; - - while (current) { - var next = current.name_next; - - if (mounts.includes(current.mount)) { - FS.destroyNode(current); - } - - current = next; - } - }); - - // no longer a mountpoint - node.mounted = null; - - // remove this mount from the child mounts - var idx = node.mount.mounts.indexOf(mount); - node.mount.mounts.splice(idx, 1); - },lookup:function(parent, name) { - return parent.node_ops.lookup(parent, name); - },mknod:function(path, mode, dev) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - if (!name || name === '.' || name === '..') { - throw new FS.ErrnoError(28); - } - var errCode = FS.mayCreate(parent, name); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.mknod) { - throw new FS.ErrnoError(63); - } - return parent.node_ops.mknod(parent, name, mode, dev); - },create:function(path, mode) { - mode = mode !== undefined ? mode : 438 /* 0666 */; - mode &= 4095; - mode |= 32768; - return FS.mknod(path, mode, 0); - },mkdir:function(path, mode) { - mode = mode !== undefined ? mode : 511 /* 0777 */; - mode &= 511 | 512; - mode |= 16384; - return FS.mknod(path, mode, 0); - },mkdirTree:function(path, mode) { - var dirs = path.split('/'); - var d = ''; - for (var i = 0; i < dirs.length; ++i) { - if (!dirs[i]) continue; - d += '/' + dirs[i]; - try { - FS.mkdir(d, mode); - } catch(e) { - if (e.errno != 20) throw e; - } - } - },mkdev:function(path, mode, dev) { - if (typeof(dev) === 'undefined') { - dev = mode; - mode = 438 /* 0666 */; - } - mode |= 8192; - return FS.mknod(path, mode, dev); - },symlink:function(oldpath, newpath) { - if (!PATH_FS.resolve(oldpath)) { - throw new FS.ErrnoError(44); - } - var lookup = FS.lookupPath(newpath, { parent: true }); - var parent = lookup.node; - if (!parent) { - throw new FS.ErrnoError(44); - } - var newname = PATH.basename(newpath); - var errCode = FS.mayCreate(parent, newname); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.symlink) { - throw new FS.ErrnoError(63); - } - return parent.node_ops.symlink(parent, newname, oldpath); - },rename:function(old_path, new_path) { - var old_dirname = PATH.dirname(old_path); - var new_dirname = PATH.dirname(new_path); - var old_name = PATH.basename(old_path); - var new_name = PATH.basename(new_path); - // parents must exist - var lookup, old_dir, new_dir; - - // let the errors from non existant directories percolate up - lookup = FS.lookupPath(old_path, { parent: true }); - old_dir = lookup.node; - lookup = FS.lookupPath(new_path, { parent: true }); - new_dir = lookup.node; - - if (!old_dir || !new_dir) throw new FS.ErrnoError(44); - // need to be part of the same mount - if (old_dir.mount !== new_dir.mount) { - throw new FS.ErrnoError(75); - } - // source must exist - var old_node = FS.lookupNode(old_dir, old_name); - // old path should not be an ancestor of the new path - var relative = PATH_FS.relative(old_path, new_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(28); - } - // new path should not be an ancestor of the old path - relative = PATH_FS.relative(new_path, old_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(55); - } - // see if the new path already exists - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - // not fatal - } - // early out if nothing needs to change - if (old_node === new_node) { - return; - } - // we'll need to delete the old entry - var isdir = FS.isDir(old_node.mode); - var errCode = FS.mayDelete(old_dir, old_name, isdir); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - // need delete permissions if we'll be overwriting. - // need create permissions if new doesn't already exist. - errCode = new_node ? - FS.mayDelete(new_dir, new_name, isdir) : - FS.mayCreate(new_dir, new_name); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!old_dir.node_ops.rename) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { - throw new FS.ErrnoError(10); - } - // if we are going to change the parent, check write permissions - if (new_dir !== old_dir) { - errCode = FS.nodePermissions(old_dir, 'w'); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - } - try { - if (FS.trackingDelegate['willMovePath']) { - FS.trackingDelegate['willMovePath'](old_path, new_path); - } - } catch(e) { - err("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - // remove the node from the lookup hash - FS.hashRemoveNode(old_node); - // do the underlying fs rename - try { - old_dir.node_ops.rename(old_node, new_dir, new_name); - } catch (e) { - throw e; - } finally { - // add the node back to the hash (in case node_ops.rename - // changed its name) - FS.hashAddNode(old_node); - } - try { - if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); - } catch(e) { - err("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - },rmdir:function(path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var errCode = FS.mayDelete(parent, name, true); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.rmdir) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - err("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.rmdir(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - err("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readdir:function(path) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(54); - } - return node.node_ops.readdir(node); - },unlink:function(path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var errCode = FS.mayDelete(parent, name, false); - if (errCode) { - // According to POSIX, we should map EISDIR to EPERM, but - // we instead do what Linux does (and we must, as we use - // the musl linux libc). - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.unlink) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - err("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.unlink(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - err("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readlink:function(path) { - var lookup = FS.lookupPath(path); - var link = lookup.node; - if (!link) { - throw new FS.ErrnoError(44); - } - if (!link.node_ops.readlink) { - throw new FS.ErrnoError(28); - } - return PATH_FS.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - },stat:function(path, dontFollow) { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(44); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(63); - } - return node.node_ops.getattr(node); - },lstat:function(path) { - return FS.stat(path, true); - },chmod:function(path, mode, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, { - mode: (mode & 4095) | (node.mode & ~4095), - timestamp: Date.now() - }); - },lchmod:function(path, mode) { - FS.chmod(path, mode, true); - },fchmod:function(fd, mode) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chmod(stream.node, mode); - },chown:function(path, uid, gid, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, { - timestamp: Date.now() - // we ignore the uid / gid for now - }); - },lchown:function(path, uid, gid) { - FS.chown(path, uid, gid, true); - },fchown:function(fd, uid, gid) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chown(stream.node, uid, gid); - },truncate:function(path, len) { - if (len < 0) { - throw new FS.ErrnoError(28); - } - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - if (FS.isDir(node.mode)) { - throw new FS.ErrnoError(31); - } - if (!FS.isFile(node.mode)) { - throw new FS.ErrnoError(28); - } - var errCode = FS.nodePermissions(node, 'w'); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - node.node_ops.setattr(node, { - size: len, - timestamp: Date.now() - }); - },ftruncate:function(fd, len) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(28); - } - FS.truncate(stream.node, len); - },utime:function(path, atime, mtime) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - node.node_ops.setattr(node, { - timestamp: Math.max(atime, mtime) - }); - },open:function(path, flags, mode, fd_start, fd_end) { - if (path === "") { - throw new FS.ErrnoError(44); - } - flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; - if ((flags & 64)) { - mode = (mode & 4095) | 32768; - } else { - mode = 0; - } - var node; - if (typeof path === 'object') { - node = path; - } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072) - }); - node = lookup.node; - } catch (e) { - // ignore - } - } - // perhaps we need to create the node - var created = false; - if ((flags & 64)) { - if (node) { - // if O_CREAT and O_EXCL are set, error out if the node already exists - if ((flags & 128)) { - throw new FS.ErrnoError(20); - } - } else { - // node doesn't exist, try to create it - node = FS.mknod(path, mode, 0); - created = true; - } - } - if (!node) { - throw new FS.ErrnoError(44); - } - // can't truncate a device - if (FS.isChrdev(node.mode)) { - flags &= ~512; - } - // if asked only for a directory, then this must be one - if ((flags & 65536) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(54); - } - // check permissions, if this is not a file we just created now (it is ok to - // create and write to a file with read-only permissions; it is read-only - // for later use) - if (!created) { - var errCode = FS.mayOpen(node, flags); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - } - // do truncation if necessary - if ((flags & 512)) { - FS.truncate(node, 0); - } - // we've already handled these, don't pass down to the underlying vfs - flags &= ~(128 | 512 | 131072); - - // register the stream with the filesystem - var stream = FS.createStream({ - node: node, - path: FS.getPath(node), // we want the absolute path to the node - flags: flags, - seekable: true, - position: 0, - stream_ops: node.stream_ops, - // used by the file family libc calls (fopen, fwrite, ferror, etc.) - ungotten: [], - error: false - }, fd_start, fd_end); - // call the new stream's open function - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - if (Module['logReadFiles'] && !(flags & 1)) { - if (!FS.readFiles) FS.readFiles = {}; - if (!(path in FS.readFiles)) { - FS.readFiles[path] = 1; - err("FS.trackingDelegate error on read file: " + path); - } - } - try { - if (FS.trackingDelegate['onOpenFile']) { - var trackingFlags = 0; - if ((flags & 2097155) !== 1) { - trackingFlags |= FS.tracking.openFlags.READ; - } - if ((flags & 2097155) !== 0) { - trackingFlags |= FS.tracking.openFlags.WRITE; - } - FS.trackingDelegate['onOpenFile'](path, trackingFlags); - } - } catch(e) { - err("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); - } - return stream; - },close:function(stream) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (stream.getdents) stream.getdents = null; // free readdir state - try { - if (stream.stream_ops.close) { - stream.stream_ops.close(stream); - } - } catch (e) { - throw e; - } finally { - FS.closeStream(stream.fd); - } - stream.fd = null; - },isClosed:function(stream) { - return stream.fd === null; - },llseek:function(stream, offset, whence) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (!stream.seekable || !stream.stream_ops.llseek) { - throw new FS.ErrnoError(70); - } - if (whence != 0 && whence != 1 && whence != 2) { - throw new FS.ErrnoError(28); - } - stream.position = stream.stream_ops.llseek(stream, offset, whence); - stream.ungotten = []; - return stream.position; - },read:function(stream, buffer, offset, length, position) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(28); - } - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(8); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(31); - } - if (!stream.stream_ops.read) { - throw new FS.ErrnoError(28); - } - var seeking = typeof position !== 'undefined'; - if (!seeking) { - position = stream.position; - } else if (!stream.seekable) { - throw new FS.ErrnoError(70); - } - var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); - if (!seeking) stream.position += bytesRead; - return bytesRead; - },write:function(stream, buffer, offset, length, position, canOwn) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(28); - } - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(8); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(31); - } - if (!stream.stream_ops.write) { - throw new FS.ErrnoError(28); - } - if (stream.seekable && stream.flags & 1024) { - // seek to the end before writing in append mode - FS.llseek(stream, 0, 2); - } - var seeking = typeof position !== 'undefined'; - if (!seeking) { - position = stream.position; - } else if (!stream.seekable) { - throw new FS.ErrnoError(70); - } - var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); - if (!seeking) stream.position += bytesWritten; - try { - if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); - } catch(e) { - err("FS.trackingDelegate['onWriteToFile']('"+stream.path+"') threw an exception: " + e.message); - } - return bytesWritten; - },allocate:function(stream, offset, length) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(28); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(8); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(138); - } - stream.stream_ops.allocate(stream, offset, length); - },mmap:function(stream, address, length, position, prot, flags) { - // User requests writing to file (prot & PROT_WRITE != 0). - // Checking if we have permissions to write to the file unless - // MAP_PRIVATE flag is set. According to POSIX spec it is possible - // to write to file opened in read-only mode with MAP_PRIVATE flag, - // as all modifications will be visible only in the memory of - // the current process. - if ((prot & 2) !== 0 - && (flags & 2) === 0 - && (stream.flags & 2097155) !== 2) { - throw new FS.ErrnoError(2); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(2); - } - if (!stream.stream_ops.mmap) { - throw new FS.ErrnoError(43); - } - return stream.stream_ops.mmap(stream, address, length, position, prot, flags); - },msync:function(stream, buffer, offset, length, mmapFlags) { - if (!stream || !stream.stream_ops.msync) { - return 0; - } - return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - },munmap:function(stream) { - return 0; - },ioctl:function(stream, cmd, arg) { - if (!stream.stream_ops.ioctl) { - throw new FS.ErrnoError(59); - } - return stream.stream_ops.ioctl(stream, cmd, arg); - },readFile:function(path, opts) { - opts = opts || {}; - opts.flags = opts.flags || 0; - opts.encoding = opts.encoding || 'binary'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var ret; - var stream = FS.open(path, opts.flags); - var stat = FS.stat(path); - var length = stat.size; - var buf = new Uint8Array(length); - FS.read(stream, buf, 0, length, 0); - if (opts.encoding === 'utf8') { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === 'binary') { - ret = buf; - } - FS.close(stream); - return ret; - },writeFile:function(path, data, opts) { - opts = opts || {}; - opts.flags = opts.flags || 577; - var stream = FS.open(path, opts.flags, opts.mode); - if (typeof data === 'string') { - var buf = new Uint8Array(lengthBytesUTF8(data)+1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, undefined, opts.canOwn); - } else if (ArrayBuffer.isView(data)) { - FS.write(stream, data, 0, data.byteLength, undefined, opts.canOwn); - } else { - throw new Error('Unsupported data type'); - } - FS.close(stream); - },cwd:function() { - return FS.currentPath; - },chdir:function(path) { - var lookup = FS.lookupPath(path, { follow: true }); - if (lookup.node === null) { - throw new FS.ErrnoError(44); - } - if (!FS.isDir(lookup.node.mode)) { - throw new FS.ErrnoError(54); - } - var errCode = FS.nodePermissions(lookup.node, 'x'); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - FS.currentPath = lookup.path; - },createDefaultDirectories:function() { - FS.mkdir('/tmp'); - FS.mkdir('/home'); - FS.mkdir('/home/web_user'); - },createDefaultDevices:function() { - // create /dev - FS.mkdir('/dev'); - // setup /dev/null - FS.registerDevice(FS.makedev(1, 3), { - read: function() { return 0; }, - write: function(stream, buffer, offset, length, pos) { return length; } - }); - FS.mkdev('/dev/null', FS.makedev(1, 3)); - // setup /dev/tty and /dev/tty1 - // stderr needs to print output using err() rather than out() - // so we register a second tty just for it. - TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); - TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); - FS.mkdev('/dev/tty', FS.makedev(5, 0)); - FS.mkdev('/dev/tty1', FS.makedev(6, 0)); - // setup /dev/[u]random - var random_device = getRandomDevice(); - FS.createDevice('/dev', 'random', random_device); - FS.createDevice('/dev', 'urandom', random_device); - // we're not going to emulate the actual shm device, - // just create the tmp dirs that reside in it commonly - FS.mkdir('/dev/shm'); - FS.mkdir('/dev/shm/tmp'); - },createSpecialDirectories:function() { - // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the - // name of the stream for fd 6 (see test_unistd_ttyname) - FS.mkdir('/proc'); - var proc_self = FS.mkdir('/proc/self'); - FS.mkdir('/proc/self/fd'); - FS.mount({ - mount: function() { - var node = FS.createNode(proc_self, 'fd', 16384 | 511 /* 0777 */, 73); - node.node_ops = { - lookup: function(parent, name) { - var fd = +name; - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(8); - var ret = { - parent: null, - mount: { mountpoint: 'fake' }, - node_ops: { readlink: function() { return stream.path } } - }; - ret.parent = ret; // make it look like a simple root node - return ret; - } - }; - return node; - } - }, {}, '/proc/self/fd'); - },createStandardStreams:function() { - // TODO deprecate the old functionality of a single - // input / output callback and that utilizes FS.createDevice - // and instead require a unique set of stream ops - - // by default, we symlink the standard streams to the - // default tty devices. however, if the standard streams - // have been overwritten we create a unique device for - // them instead. - if (Module['stdin']) { - FS.createDevice('/dev', 'stdin', Module['stdin']); - } else { - FS.symlink('/dev/tty', '/dev/stdin'); - } - if (Module['stdout']) { - FS.createDevice('/dev', 'stdout', null, Module['stdout']); - } else { - FS.symlink('/dev/tty', '/dev/stdout'); - } - if (Module['stderr']) { - FS.createDevice('/dev', 'stderr', null, Module['stderr']); - } else { - FS.symlink('/dev/tty1', '/dev/stderr'); - } - - // open default streams for the stdin, stdout and stderr devices - var stdin = FS.open('/dev/stdin', 0); - var stdout = FS.open('/dev/stdout', 1); - var stderr = FS.open('/dev/stderr', 1); - },ensureErrnoError:function() { - if (FS.ErrnoError) return; - FS.ErrnoError = /** @this{Object} */ function ErrnoError(errno, node) { - this.node = node; - this.setErrno = /** @this{Object} */ function(errno) { - this.errno = errno; - }; - this.setErrno(errno); - this.message = 'FS error'; - - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) - [44].forEach(function(code) { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ''; - }); - },staticInit:function() { - FS.ensureErrnoError(); - - FS.nameTable = new Array(4096); - - FS.mount(MEMFS, {}, '/'); - - FS.createDefaultDirectories(); - FS.createDefaultDevices(); - FS.createSpecialDirectories(); - - FS.filesystems = { - 'MEMFS': MEMFS, - }; - },init:function(input, output, error) { - FS.init.initialized = true; - - FS.ensureErrnoError(); - - // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - Module['stdin'] = input || Module['stdin']; - Module['stdout'] = output || Module['stdout']; - Module['stderr'] = error || Module['stderr']; - - FS.createStandardStreams(); - },quit:function() { - FS.init.initialized = false; - // force-flush all streams, so we get musl std streams printed out - var fflush = Module['_fflush']; - if (fflush) fflush(0); - // close all of our streams - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; - } - FS.close(stream); - } - },getMode:function(canRead, canWrite) { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - },findObject:function(path, dontResolveLastLink) { - var ret = FS.analyzePath(path, dontResolveLastLink); - if (ret.exists) { - return ret.object; - } else { - return null; - } - },analyzePath:function(path, dontResolveLastLink) { - // operate from within the context of the symlink's target - try { - var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - path = lookup.path; - } catch (e) { - } - var ret = { - isRoot: false, exists: false, error: 0, name: null, path: null, object: null, - parentExists: false, parentPath: null, parentObject: null - }; - try { - var lookup = FS.lookupPath(path, { parent: true }); - ret.parentExists = true; - ret.parentPath = lookup.path; - ret.parentObject = lookup.node; - ret.name = PATH.basename(path); - lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - ret.exists = true; - ret.path = lookup.path; - ret.object = lookup.node; - ret.name = lookup.node.name; - ret.isRoot = lookup.path === '/'; - } catch (e) { - ret.error = e.errno; - }; - return ret; - },createPath:function(parent, path, canRead, canWrite) { - parent = typeof parent === 'string' ? parent : FS.getPath(parent); - var parts = path.split('/').reverse(); - while (parts.length) { - var part = parts.pop(); - if (!part) continue; - var current = PATH.join2(parent, part); - try { - FS.mkdir(current); - } catch (e) { - // ignore EEXIST - } - parent = current; - } - return current; - },createFile:function(parent, name, properties, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.create(path, mode); - },createDataFile:function(parent, name, data, canRead, canWrite, canOwn) { - var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; - var mode = FS.getMode(canRead, canWrite); - var node = FS.create(path, mode); - if (data) { - if (typeof data === 'string') { - var arr = new Array(data.length); - for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); - data = arr; - } - // make sure we can write to the file - FS.chmod(node, mode | 146); - var stream = FS.open(node, 577); - FS.write(stream, data, 0, data.length, 0, canOwn); - FS.close(stream); - FS.chmod(node, mode); - } - return node; - },createDevice:function(parent, name, input, output) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) FS.createDevice.major = 64; - var dev = FS.makedev(FS.createDevice.major++, 0); - // Create a fake device that a set of stream ops to emulate - // the old behavior. - FS.registerDevice(dev, { - open: function(stream) { - stream.seekable = false; - }, - close: function(stream) { - // flush any pending line data - if (output && output.buffer && output.buffer.length) { - output(10); - } - }, - read: function(stream, buffer, offset, length, pos /* ignored */) { - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = input(); - } catch (e) { - throw new FS.ErrnoError(29); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(6); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer, offset, length, pos) { - for (var i = 0; i < length; i++) { - try { - output(buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(29); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }); - return FS.mkdev(path, mode, dev); - },forceLoadFile:function(obj) { - if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; - if (typeof XMLHttpRequest !== 'undefined') { - throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else if (read_) { - // Command-line. - try { - // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as - // read() will try to parse UTF8. - obj.contents = intArrayFromString(read_(obj.url), true); - obj.usedBytes = obj.contents.length; - } catch (e) { - throw new FS.ErrnoError(29); - } - } else { - throw new Error('Cannot load without read() or XMLHttpRequest.'); - } - },createLazyFile:function(parent, name, url, canRead, canWrite) { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. - /** @constructor */ - function LazyUint8Array() { - this.lengthKnown = false; - this.chunks = []; // Loaded chunks. Index is the chunk number - } - LazyUint8Array.prototype.get = /** @this{Object} */ function LazyUint8Array_get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; - } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - }; - LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { - this.getter = getter; - }; - LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { - // Find length - var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var usesGzip = (header = xhr.getResponseHeader("Content-Encoding")) && header === "gzip"; - - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (function(from, to) { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - - // Some hints to the browser that we want binary data. - if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); - } - - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(/** @type{Array} */(xhr.response || [])); - } else { - return intArrayFromString(xhr.responseText || '', true); - } - }); - var lazyArray = this; - lazyArray.setDataGetter(function(chunkNum) { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { - lazyArray.chunks[chunkNum] = doXHR(start, end); - } - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); - return lazyArray.chunks[chunkNum]; - }); - - if (usesGzip || !datalength) { - // if the server uses gzip or doesn't supply the length, we have to download the whole file to get the (uncompressed) length - chunkSize = datalength = 1; // this will force getter(0)/doXHR do download the whole file - datalength = this.getter(0).length; - chunkSize = datalength; - out("LazyFiles on gzip forces download of the whole file when length is accessed"); - } - - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - }; - if (typeof XMLHttpRequest !== 'undefined') { - if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; - var lazyArray = new LazyUint8Array(); - Object.defineProperties(lazyArray, { - length: { - get: /** @this{Object} */ function() { - if (!this.lengthKnown) { - this.cacheLength(); - } - return this._length; - } - }, - chunkSize: { - get: /** @this{Object} */ function() { - if (!this.lengthKnown) { - this.cacheLength(); - } - return this._chunkSize; - } - } - }); - - var properties = { isDevice: false, contents: lazyArray }; - } else { - var properties = { isDevice: false, url: url }; - } - - var node = FS.createFile(parent, name, properties, canRead, canWrite); - // This is a total hack, but I want to get this lazy file code out of the - // core of MEMFS. If we want to keep this lazy file concept I feel it should - // be its own thin LAZYFS proxying calls to MEMFS. - if (properties.contents) { - node.contents = properties.contents; - } else if (properties.url) { - node.contents = null; - node.url = properties.url; - } - // Add a function that defers querying the file size until it is asked the first time. - Object.defineProperties(node, { - usedBytes: { - get: /** @this {FSNode} */ function() { return this.contents.length; } - } - }); - // override each stream op with one that tries to force load the lazy file first - var stream_ops = {}; - var keys = Object.keys(node.stream_ops); - keys.forEach(function(key) { - var fn = node.stream_ops[key]; - stream_ops[key] = function forceLoadLazyFile() { - FS.forceLoadFile(node); - return fn.apply(null, arguments); - }; - }); - // use a custom read function - stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { - FS.forceLoadFile(node); - var contents = stream.node.contents; - if (position >= contents.length) - return 0; - var size = Math.min(contents.length - position, length); - if (contents.slice) { // normal array - for (var i = 0; i < size; i++) { - buffer[offset + i] = contents[position + i]; - } - } else { - for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR - buffer[offset + i] = contents.get(position + i); - } - } - return size; - }; - node.stream_ops = stream_ops; - return node; - },createPreloadedFile:function(parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) { - Browser.init(); // XXX perhaps this method should move onto Browser? - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH_FS.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - if (preFinish) preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - if (onload) onload(); - removeRunDependency(dep); - } - var handled = false; - Module['preloadPlugins'].forEach(function(plugin) { - if (handled) return; - if (plugin['canHandle'](fullname)) { - plugin['handle'](byteArray, fullname, finish, function() { - if (onerror) onerror(); - removeRunDependency(dep); - }); - handled = true; - } - }); - if (!handled) finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - Browser.asyncLoad(url, function(byteArray) { - processData(byteArray); - }, onerror); - } else { - processData(url); - } - },indexedDB:function() { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - },DB_NAME:function() { - return 'EM_FS_' + window.location.pathname; - },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function(paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { - out('creating db'); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; - putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },loadFilesFromDB:function(paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; // no database to load from - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); - } catch(e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var getRequest = files.get(path); - getRequest.onsuccess = function getRequest_onsuccess() { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) finish(); - }; - getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - }}; - var SYSCALLS={mappings:{},DEFAULT_POLLMASK:5,umask:511,calculateAt:function(dirfd, path, allowEmpty) { - if (path[0] === '/') { - return path; - } - // relative path - var dir; - if (dirfd === -100) { - dir = FS.cwd(); - } else { - var dirstream = FS.getStream(dirfd); - if (!dirstream) throw new FS.ErrnoError(8); - dir = dirstream.path; - } - if (path.length == 0) { - if (!allowEmpty) { - throw new FS.ErrnoError(44);; - } - return dir; - } - return PATH.join2(dir, path); - },doStat:function(func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - // an error occurred while trying to look up the path; we should just report ENOTDIR - return -54; - } - throw e; - } - HEAP32[((buf)>>2)] = stat.dev; - HEAP32[(((buf)+(4))>>2)] = 0; - HEAP32[(((buf)+(8))>>2)] = stat.ino; - HEAP32[(((buf)+(12))>>2)] = stat.mode; - HEAP32[(((buf)+(16))>>2)] = stat.nlink; - HEAP32[(((buf)+(20))>>2)] = stat.uid; - HEAP32[(((buf)+(24))>>2)] = stat.gid; - HEAP32[(((buf)+(28))>>2)] = stat.rdev; - HEAP32[(((buf)+(32))>>2)] = 0; - (tempI64 = [stat.size>>>0,(tempDouble=stat.size,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(40))>>2)] = tempI64[0],HEAP32[(((buf)+(44))>>2)] = tempI64[1]); - HEAP32[(((buf)+(48))>>2)] = 4096; - HEAP32[(((buf)+(52))>>2)] = stat.blocks; - HEAP32[(((buf)+(56))>>2)] = (stat.atime.getTime() / 1000)|0; - HEAP32[(((buf)+(60))>>2)] = 0; - HEAP32[(((buf)+(64))>>2)] = (stat.mtime.getTime() / 1000)|0; - HEAP32[(((buf)+(68))>>2)] = 0; - HEAP32[(((buf)+(72))>>2)] = (stat.ctime.getTime() / 1000)|0; - HEAP32[(((buf)+(76))>>2)] = 0; - (tempI64 = [stat.ino>>>0,(tempDouble=stat.ino,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(80))>>2)] = tempI64[0],HEAP32[(((buf)+(84))>>2)] = tempI64[1]); - return 0; - },doMsync:function(addr, stream, len, flags, offset) { - var buffer = HEAPU8.slice(addr, addr + len); - FS.msync(stream, buffer, offset, len, flags); - },doMkdir:function(path, mode) { - // remove a trailing slash, if one - /a/b/ has basename of '', but - // we want to create b in the context of this function - path = PATH.normalize(path); - if (path[path.length-1] === '/') path = path.substr(0, path.length-1); - FS.mkdir(path, mode, 0); - return 0; - },doMknod:function(path, mode, dev) { - // we don't want this in the JS API as it uses mknod to create all nodes. - switch (mode & 61440) { - case 32768: - case 8192: - case 24576: - case 4096: - case 49152: - break; - default: return -28; - } - FS.mknod(path, mode, dev); - return 0; - },doReadlink:function(path, buf, bufsize) { - if (bufsize <= 0) return -28; - var ret = FS.readlink(path); - - var len = Math.min(bufsize, lengthBytesUTF8(ret)); - var endChar = HEAP8[buf+len]; - stringToUTF8(ret, buf, bufsize+1); - // readlink is one of the rare functions that write out a C string, but does never append a null to the output buffer(!) - // stringToUTF8() always appends a null byte, so restore the character under the null byte after the write. - HEAP8[buf+len] = endChar; - - return len; - },doAccess:function(path, amode) { - if (amode & ~7) { - // need a valid mode - return -28; - } - var node; - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - if (!node) { - return -44; - } - var perms = ''; - if (amode & 4) perms += 'r'; - if (amode & 2) perms += 'w'; - if (amode & 1) perms += 'x'; - if (perms /* otherwise, they've just passed F_OK */ && FS.nodePermissions(node, perms)) { - return -2; - } - return 0; - },doDup:function(path, flags, suggestFD) { - var suggest = FS.getStream(suggestFD); - if (suggest) FS.close(suggest); - return FS.open(path, flags, 0, suggestFD, suggestFD).fd; - },doReadv:function(stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.read(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - if (curr < len) break; // nothing more to read - } - return ret; - },doWritev:function(stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.write(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - } - return ret; - },varargs:undefined,get:function() { - SYSCALLS.varargs += 4; - var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; - return ret; - },getStr:function(ptr) { - var ret = UTF8ToString(ptr); - return ret; - },getStreamFromFD:function(fd) { - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(8); - return stream; - },get64:function(low, high) { - return low; - }}; - function ___sys_access(path, amode) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doAccess(path, amode); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_chdir(path) {try { - - path = SYSCALLS.getStr(path); - FS.chdir(path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_chmod(path, mode) {try { - - path = SYSCALLS.getStr(path); - FS.chmod(path, mode); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_chown32(path, owner, group) {try { - - path = SYSCALLS.getStr(path); - FS.chown(path, owner, group); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - var ERRNO_CODES={EPERM:63,ENOENT:44,ESRCH:71,EINTR:27,EIO:29,ENXIO:60,E2BIG:1,ENOEXEC:45,EBADF:8,ECHILD:12,EAGAIN:6,EWOULDBLOCK:6,ENOMEM:48,EACCES:2,EFAULT:21,ENOTBLK:105,EBUSY:10,EEXIST:20,EXDEV:75,ENODEV:43,ENOTDIR:54,EISDIR:31,EINVAL:28,ENFILE:41,EMFILE:33,ENOTTY:59,ETXTBSY:74,EFBIG:22,ENOSPC:51,ESPIPE:70,EROFS:69,EMLINK:34,EPIPE:64,EDOM:18,ERANGE:68,ENOMSG:49,EIDRM:24,ECHRNG:106,EL2NSYNC:156,EL3HLT:107,EL3RST:108,ELNRNG:109,EUNATCH:110,ENOCSI:111,EL2HLT:112,EDEADLK:16,ENOLCK:46,EBADE:113,EBADR:114,EXFULL:115,ENOANO:104,EBADRQC:103,EBADSLT:102,EDEADLOCK:16,EBFONT:101,ENOSTR:100,ENODATA:116,ETIME:117,ENOSR:118,ENONET:119,ENOPKG:120,EREMOTE:121,ENOLINK:47,EADV:122,ESRMNT:123,ECOMM:124,EPROTO:65,EMULTIHOP:36,EDOTDOT:125,EBADMSG:9,ENOTUNIQ:126,EBADFD:127,EREMCHG:128,ELIBACC:129,ELIBBAD:130,ELIBSCN:131,ELIBMAX:132,ELIBEXEC:133,ENOSYS:52,ENOTEMPTY:55,ENAMETOOLONG:37,ELOOP:32,EOPNOTSUPP:138,EPFNOSUPPORT:139,ECONNRESET:15,ENOBUFS:42,EAFNOSUPPORT:5,EPROTOTYPE:67,ENOTSOCK:57,ENOPROTOOPT:50,ESHUTDOWN:140,ECONNREFUSED:14,EADDRINUSE:3,ECONNABORTED:13,ENETUNREACH:40,ENETDOWN:38,ETIMEDOUT:73,EHOSTDOWN:142,EHOSTUNREACH:23,EINPROGRESS:26,EALREADY:7,EDESTADDRREQ:17,EMSGSIZE:35,EPROTONOSUPPORT:66,ESOCKTNOSUPPORT:137,EADDRNOTAVAIL:4,ENETRESET:39,EISCONN:30,ENOTCONN:53,ETOOMANYREFS:141,EUSERS:136,EDQUOT:19,ESTALE:72,ENOTSUP:138,ENOMEDIUM:148,EILSEQ:25,EOVERFLOW:61,ECANCELED:11,ENOTRECOVERABLE:56,EOWNERDEAD:62,ESTRPIPE:135}; - var SOCKFS={mount:function(mount) { - // If Module['websocket'] has already been defined (e.g. for configuring - // the subprotocol/url) use that, if not initialise it to a new object. - Module['websocket'] = (Module['websocket'] && - ('object' === typeof Module['websocket'])) ? Module['websocket'] : {}; - - // Add the Event registration mechanism to the exported websocket configuration - // object so we can register network callbacks from native JavaScript too. - // For more documentation see system/include/emscripten/emscripten.h - Module['websocket']._callbacks = {}; - Module['websocket']['on'] = /** @this{Object} */ function(event, callback) { - if ('function' === typeof callback) { - this._callbacks[event] = callback; - } - return this; - }; - - Module['websocket'].emit = /** @this{Object} */ function(event, param) { - if ('function' === typeof this._callbacks[event]) { - this._callbacks[event].call(this, param); - } - }; - - // If debug is enabled register simple default logging callbacks for each Event. - - return FS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createSocket:function(family, type, protocol) { - type &= ~526336; // Some applications may pass it; it makes no sense for a single process. - var streaming = type == 1; - if (protocol) { - assert(streaming == (protocol == 6)); // if SOCK_STREAM, must be tcp - } - - // create our internal socket structure - var sock = { - family: family, - type: type, - protocol: protocol, - server: null, - error: null, // Used in getsockopt for SOL_SOCKET/SO_ERROR test - peers: {}, - pending: [], - recv_queue: [], - sock_ops: SOCKFS.websocket_sock_ops - }; - - // create the filesystem node to store the socket structure - var name = SOCKFS.nextname(); - var node = FS.createNode(SOCKFS.root, name, 49152, 0); - node.sock = sock; - - // and the wrapping stream that enables library functions such - // as read and write to indirectly interact with the socket - var stream = FS.createStream({ - path: name, - node: node, - flags: 2, - seekable: false, - stream_ops: SOCKFS.stream_ops - }); - - // map the new stream to the socket structure (sockets have a 1:1 - // relationship with a stream) - sock.stream = stream; - - return sock; - },getSocket:function(fd) { - var stream = FS.getStream(fd); - if (!stream || !FS.isSocket(stream.node.mode)) { - return null; - } - return stream.node.sock; - },stream_ops:{poll:function(stream) { - var sock = stream.node.sock; - return sock.sock_ops.poll(sock); - },ioctl:function(stream, request, varargs) { - var sock = stream.node.sock; - return sock.sock_ops.ioctl(sock, request, varargs); - },read:function(stream, buffer, offset, length, position /* ignored */) { - var sock = stream.node.sock; - var msg = sock.sock_ops.recvmsg(sock, length); - if (!msg) { - // socket is closed - return 0; - } - buffer.set(msg.buffer, offset); - return msg.buffer.length; - },write:function(stream, buffer, offset, length, position /* ignored */) { - var sock = stream.node.sock; - return sock.sock_ops.sendmsg(sock, buffer, offset, length); - },close:function(stream) { - var sock = stream.node.sock; - sock.sock_ops.close(sock); - }},nextname:function() { - if (!SOCKFS.nextname.current) { - SOCKFS.nextname.current = 0; - } - return 'socket[' + (SOCKFS.nextname.current++) + ']'; - },websocket_sock_ops:{createPeer:function(sock, addr, port) { - var ws; - - if (typeof addr === 'object') { - ws = addr; - addr = null; - port = null; - } - - if (ws) { - // for sockets that've already connected (e.g. we're the server) - // we can inspect the _socket property for the address - if (ws._socket) { - addr = ws._socket.remoteAddress; - port = ws._socket.remotePort; - } - // if we're just now initializing a connection to the remote, - // inspect the url property - else { - var result = /ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url); - if (!result) { - throw new Error('WebSocket URL must be in the format ws(s)://address:port'); - } - addr = result[1]; - port = parseInt(result[2], 10); - } - } else { - // create the actual websocket object and connect - try { - // runtimeConfig gets set to true if WebSocket runtime configuration is available. - var runtimeConfig = (Module['websocket'] && ('object' === typeof Module['websocket'])); - - // The default value is 'ws://' the replace is needed because the compiler replaces '//' comments with '#' - // comments without checking context, so we'd end up with ws:#, the replace swaps the '#' for '//' again. - var url = 'ws:#'.replace('#', '//'); - - if (runtimeConfig) { - if ('string' === typeof Module['websocket']['url']) { - url = Module['websocket']['url']; // Fetch runtime WebSocket URL config. - } - } - - if (url === 'ws://' || url === 'wss://') { // Is the supplied URL config just a prefix, if so complete it. - var parts = addr.split('/'); - url = url + parts[0] + ":" + port + "/" + parts.slice(1).join('/'); - } - - // Make the WebSocket subprotocol (Sec-WebSocket-Protocol) default to binary if no configuration is set. - var subProtocols = 'binary'; // The default value is 'binary' - - if (runtimeConfig) { - if ('string' === typeof Module['websocket']['subprotocol']) { - subProtocols = Module['websocket']['subprotocol']; // Fetch runtime WebSocket subprotocol config. - } - } - - // The default WebSocket options - var opts = undefined; - - if (subProtocols !== 'null') { - // The regex trims the string (removes spaces at the beginning and end, then splits the string by - // , into an Array. Whitespace removal is important for Websockify and ws. - subProtocols = subProtocols.replace(/^ +| +$/g,"").split(/ *, */); - - // The node ws library API for specifying optional subprotocol is slightly different than the browser's. - opts = ENVIRONMENT_IS_NODE ? {'protocol': subProtocols.toString()} : subProtocols; - } - - // some webservers (azure) does not support subprotocol header - if (runtimeConfig && null === Module['websocket']['subprotocol']) { - subProtocols = 'null'; - opts = undefined; - } - - // If node we use the ws library. - var WebSocketConstructor; - if (ENVIRONMENT_IS_NODE) { - WebSocketConstructor = /** @type{(typeof WebSocket)} */(require('ws')); - } else - { - WebSocketConstructor = WebSocket; - } - ws = new WebSocketConstructor(url, opts); - ws.binaryType = 'arraybuffer'; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EHOSTUNREACH); - } - } - - var peer = { - addr: addr, - port: port, - socket: ws, - dgram_send_queue: [] - }; - - SOCKFS.websocket_sock_ops.addPeer(sock, peer); - SOCKFS.websocket_sock_ops.handlePeerEvents(sock, peer); - - // if this is a bound dgram socket, send the port number first to allow - // us to override the ephemeral port reported to us by remotePort on the - // remote end. - if (sock.type === 2 && typeof sock.sport !== 'undefined') { - peer.dgram_send_queue.push(new Uint8Array([ - 255, 255, 255, 255, - 'p'.charCodeAt(0), 'o'.charCodeAt(0), 'r'.charCodeAt(0), 't'.charCodeAt(0), - ((sock.sport & 0xff00) >> 8) , (sock.sport & 0xff) - ])); - } - - return peer; - },getPeer:function(sock, addr, port) { - return sock.peers[addr + ':' + port]; - },addPeer:function(sock, peer) { - sock.peers[peer.addr + ':' + peer.port] = peer; - },removePeer:function(sock, peer) { - delete sock.peers[peer.addr + ':' + peer.port]; - },handlePeerEvents:function(sock, peer) { - var first = true; - - var handleOpen = function () { - - Module['websocket'].emit('open', sock.stream.fd); - - try { - var queued = peer.dgram_send_queue.shift(); - while (queued) { - peer.socket.send(queued); - queued = peer.dgram_send_queue.shift(); - } - } catch (e) { - // not much we can do here in the way of proper error handling as we've already - // lied and said this data was sent. shut it down. - peer.socket.close(); - } - }; - - function handleMessage(data) { - if (typeof data === 'string') { - var encoder = new TextEncoder(); // should be utf-8 - data = encoder.encode(data); // make a typed array from the string - } else { - assert(data.byteLength !== undefined); // must receive an ArrayBuffer - if (data.byteLength == 0) { - // An empty ArrayBuffer will emit a pseudo disconnect event - // as recv/recvmsg will return zero which indicates that a socket - // has performed a shutdown although the connection has not been disconnected yet. - return; - } else { - data = new Uint8Array(data); // make a typed array view on the array buffer - } - } - - // if this is the port message, override the peer's port with it - var wasfirst = first; - first = false; - if (wasfirst && - data.length === 10 && - data[0] === 255 && data[1] === 255 && data[2] === 255 && data[3] === 255 && - data[4] === 'p'.charCodeAt(0) && data[5] === 'o'.charCodeAt(0) && data[6] === 'r'.charCodeAt(0) && data[7] === 't'.charCodeAt(0)) { - // update the peer's port and it's key in the peer map - var newport = ((data[8] << 8) | data[9]); - SOCKFS.websocket_sock_ops.removePeer(sock, peer); - peer.port = newport; - SOCKFS.websocket_sock_ops.addPeer(sock, peer); - return; - } - - sock.recv_queue.push({ addr: peer.addr, port: peer.port, data: data }); - Module['websocket'].emit('message', sock.stream.fd); - }; - - if (ENVIRONMENT_IS_NODE) { - peer.socket.on('open', handleOpen); - peer.socket.on('message', function(data, flags) { - if (!flags.binary) { - return; - } - handleMessage((new Uint8Array(data)).buffer); // copy from node Buffer -> ArrayBuffer - }); - peer.socket.on('close', function() { - Module['websocket'].emit('close', sock.stream.fd); - }); - peer.socket.on('error', function(error) { - // Although the ws library may pass errors that may be more descriptive than - // ECONNREFUSED they are not necessarily the expected error code e.g. - // ENOTFOUND on getaddrinfo seems to be node.js specific, so using ECONNREFUSED - // is still probably the most useful thing to do. - sock.error = ERRNO_CODES.ECONNREFUSED; // Used in getsockopt for SOL_SOCKET/SO_ERROR test. - Module['websocket'].emit('error', [sock.stream.fd, sock.error, 'ECONNREFUSED: Connection refused']); - // don't throw - }); - } else { - peer.socket.onopen = handleOpen; - peer.socket.onclose = function() { - Module['websocket'].emit('close', sock.stream.fd); - }; - peer.socket.onmessage = function peer_socket_onmessage(event) { - handleMessage(event.data); - }; - peer.socket.onerror = function(error) { - // The WebSocket spec only allows a 'simple event' to be thrown on error, - // so we only really know as much as ECONNREFUSED. - sock.error = ERRNO_CODES.ECONNREFUSED; // Used in getsockopt for SOL_SOCKET/SO_ERROR test. - Module['websocket'].emit('error', [sock.stream.fd, sock.error, 'ECONNREFUSED: Connection refused']); - }; - } - },poll:function(sock) { - if (sock.type === 1 && sock.server) { - // listen sockets should only say they're available for reading - // if there are pending clients. - return sock.pending.length ? (64 | 1) : 0; - } - - var mask = 0; - var dest = sock.type === 1 ? // we only care about the socket state for connection-based sockets - SOCKFS.websocket_sock_ops.getPeer(sock, sock.daddr, sock.dport) : - null; - - if (sock.recv_queue.length || - !dest || // connection-less sockets are always ready to read - (dest && dest.socket.readyState === dest.socket.CLOSING) || - (dest && dest.socket.readyState === dest.socket.CLOSED)) { // let recv return 0 once closed - mask |= (64 | 1); - } - - if (!dest || // connection-less sockets are always ready to write - (dest && dest.socket.readyState === dest.socket.OPEN)) { - mask |= 4; - } - - if ((dest && dest.socket.readyState === dest.socket.CLOSING) || - (dest && dest.socket.readyState === dest.socket.CLOSED)) { - mask |= 16; - } - - return mask; - },ioctl:function(sock, request, arg) { - switch (request) { - case 21531: - var bytes = 0; - if (sock.recv_queue.length) { - bytes = sock.recv_queue[0].data.length; - } - HEAP32[((arg)>>2)] = bytes; - return 0; - default: - return ERRNO_CODES.EINVAL; - } - },close:function(sock) { - // if we've spawned a listen server, close it - if (sock.server) { - try { - sock.server.close(); - } catch (e) { - } - sock.server = null; - } - // close any peer connections - var peers = Object.keys(sock.peers); - for (var i = 0; i < peers.length; i++) { - var peer = sock.peers[peers[i]]; - try { - peer.socket.close(); - } catch (e) { - } - SOCKFS.websocket_sock_ops.removePeer(sock, peer); - } - return 0; - },bind:function(sock, addr, port) { - if (typeof sock.saddr !== 'undefined' || typeof sock.sport !== 'undefined') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); // already bound - } - sock.saddr = addr; - sock.sport = port; - // in order to emulate dgram sockets, we need to launch a listen server when - // binding on a connection-less socket - // note: this is only required on the server side - if (sock.type === 2) { - // close the existing server if it exists - if (sock.server) { - sock.server.close(); - sock.server = null; - } - // swallow error operation not supported error that occurs when binding in the - // browser where this isn't supported - try { - sock.sock_ops.listen(sock, 0); - } catch (e) { - if (!(e instanceof FS.ErrnoError)) throw e; - if (e.errno !== ERRNO_CODES.EOPNOTSUPP) throw e; - } - } - },connect:function(sock, addr, port) { - if (sock.server) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - - // TODO autobind - // if (!sock.addr && sock.type == 2) { - // } - - // early out if we're already connected / in the middle of connecting - if (typeof sock.daddr !== 'undefined' && typeof sock.dport !== 'undefined') { - var dest = SOCKFS.websocket_sock_ops.getPeer(sock, sock.daddr, sock.dport); - if (dest) { - if (dest.socket.readyState === dest.socket.CONNECTING) { - throw new FS.ErrnoError(ERRNO_CODES.EALREADY); - } else { - throw new FS.ErrnoError(ERRNO_CODES.EISCONN); - } - } - } - - // add the socket to our peer list and set our - // destination address / port to match - var peer = SOCKFS.websocket_sock_ops.createPeer(sock, addr, port); - sock.daddr = peer.addr; - sock.dport = peer.port; - - // always "fail" in non-blocking mode - throw new FS.ErrnoError(ERRNO_CODES.EINPROGRESS); - },listen:function(sock, backlog) { - if (!ENVIRONMENT_IS_NODE) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - if (sock.server) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); // already listening - } - var WebSocketServer = require('ws').Server; - var host = sock.saddr; - sock.server = new WebSocketServer({ - host: host, - port: sock.sport - // TODO support backlog - }); - Module['websocket'].emit('listen', sock.stream.fd); // Send Event with listen fd. - - sock.server.on('connection', function(ws) { - if (sock.type === 1) { - var newsock = SOCKFS.createSocket(sock.family, sock.type, sock.protocol); - - // create a peer on the new socket - var peer = SOCKFS.websocket_sock_ops.createPeer(newsock, ws); - newsock.daddr = peer.addr; - newsock.dport = peer.port; - - // push to queue for accept to pick up - sock.pending.push(newsock); - Module['websocket'].emit('connection', newsock.stream.fd); - } else { - // create a peer on the listen socket so calling sendto - // with the listen socket and an address will resolve - // to the correct client - SOCKFS.websocket_sock_ops.createPeer(sock, ws); - Module['websocket'].emit('connection', sock.stream.fd); - } - }); - sock.server.on('closed', function() { - Module['websocket'].emit('close', sock.stream.fd); - sock.server = null; - }); - sock.server.on('error', function(error) { - // Although the ws library may pass errors that may be more descriptive than - // ECONNREFUSED they are not necessarily the expected error code e.g. - // ENOTFOUND on getaddrinfo seems to be node.js specific, so using EHOSTUNREACH - // is still probably the most useful thing to do. This error shouldn't - // occur in a well written app as errors should get trapped in the compiled - // app's own getaddrinfo call. - sock.error = ERRNO_CODES.EHOSTUNREACH; // Used in getsockopt for SOL_SOCKET/SO_ERROR test. - Module['websocket'].emit('error', [sock.stream.fd, sock.error, 'EHOSTUNREACH: Host is unreachable']); - // don't throw - }); - },accept:function(listensock) { - if (!listensock.server) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var newsock = listensock.pending.shift(); - newsock.stream.flags = listensock.stream.flags; - return newsock; - },getname:function(sock, peer) { - var addr, port; - if (peer) { - if (sock.daddr === undefined || sock.dport === undefined) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } - addr = sock.daddr; - port = sock.dport; - } else { - // TODO saddr and sport will be set for bind()'d UDP sockets, but what - // should we be returning for TCP sockets that've been connect()'d? - addr = sock.saddr || 0; - port = sock.sport || 0; - } - return { addr: addr, port: port }; - },sendmsg:function(sock, buffer, offset, length, addr, port) { - if (sock.type === 2) { - // connection-less sockets will honor the message address, - // and otherwise fall back to the bound destination address - if (addr === undefined || port === undefined) { - addr = sock.daddr; - port = sock.dport; - } - // if there was no address to fall back to, error out - if (addr === undefined || port === undefined) { - throw new FS.ErrnoError(ERRNO_CODES.EDESTADDRREQ); - } - } else { - // connection-based sockets will only use the bound - addr = sock.daddr; - port = sock.dport; - } - - // find the peer for the destination address - var dest = SOCKFS.websocket_sock_ops.getPeer(sock, addr, port); - - // early out if not connected with a connection-based socket - if (sock.type === 1) { - if (!dest || dest.socket.readyState === dest.socket.CLOSING || dest.socket.readyState === dest.socket.CLOSED) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } else if (dest.socket.readyState === dest.socket.CONNECTING) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - } - - // create a copy of the incoming data to send, as the WebSocket API - // doesn't work entirely with an ArrayBufferView, it'll just send - // the entire underlying buffer - if (ArrayBuffer.isView(buffer)) { - offset += buffer.byteOffset; - buffer = buffer.buffer; - } - - var data; - data = buffer.slice(offset, offset + length); - - // if we're emulating a connection-less dgram socket and don't have - // a cached connection, queue the buffer to send upon connect and - // lie, saying the data was sent now. - if (sock.type === 2) { - if (!dest || dest.socket.readyState !== dest.socket.OPEN) { - // if we're not connected, open a new connection - if (!dest || dest.socket.readyState === dest.socket.CLOSING || dest.socket.readyState === dest.socket.CLOSED) { - dest = SOCKFS.websocket_sock_ops.createPeer(sock, addr, port); - } - dest.dgram_send_queue.push(data); - return length; - } - } - - try { - // send the actual data - dest.socket.send(data); - return length; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - },recvmsg:function(sock, length) { - // http://pubs.opengroup.org/onlinepubs/7908799/xns/recvmsg.html - if (sock.type === 1 && sock.server) { - // tcp servers should not be recv()'ing on the listen socket - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } - - var queued = sock.recv_queue.shift(); - if (!queued) { - if (sock.type === 1) { - var dest = SOCKFS.websocket_sock_ops.getPeer(sock, sock.daddr, sock.dport); - - if (!dest) { - // if we have a destination address but are not connected, error out - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } - else if (dest.socket.readyState === dest.socket.CLOSING || dest.socket.readyState === dest.socket.CLOSED) { - // return null if the socket has closed - return null; - } - else { - // else, our socket is in a valid state but truly has nothing available - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - } else { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - } - - // queued.data will be an ArrayBuffer if it's unadulterated, but if it's - // requeued TCP data it'll be an ArrayBufferView - var queuedLength = queued.data.byteLength || queued.data.length; - var queuedOffset = queued.data.byteOffset || 0; - var queuedBuffer = queued.data.buffer || queued.data; - var bytesRead = Math.min(length, queuedLength); - var res = { - buffer: new Uint8Array(queuedBuffer, queuedOffset, bytesRead), - addr: queued.addr, - port: queued.port - }; - - // push back any unread data for TCP connections - if (sock.type === 1 && bytesRead < queuedLength) { - var bytesRemaining = queuedLength - bytesRead; - queued.data = new Uint8Array(queuedBuffer, queuedOffset + bytesRead, bytesRemaining); - sock.recv_queue.unshift(queued); - } - - return res; - }}}; - function getSocketFromFD(fd) { - var socket = SOCKFS.getSocket(fd); - if (!socket) throw new FS.ErrnoError(8); - return socket; - } - - var Sockets={BUFFER_SIZE:10240,MAX_BUFFER_SIZE:10485760,nextFd:1,fds:{},nextport:1,maxport:65535,peer:null,connections:{},portmap:{},localAddr:4261412874,addrPool:[33554442,50331658,67108874,83886090,100663306,117440522,134217738,150994954,167772170,184549386,201326602,218103818,234881034]}; - - function inetNtop4(addr) { - return (addr & 0xff) + '.' + ((addr >> 8) & 0xff) + '.' + ((addr >> 16) & 0xff) + '.' + ((addr >> 24) & 0xff) - } - - function inetNtop6(ints) { - // ref: http://www.ietf.org/rfc/rfc2373.txt - section 2.5.4 - // Format for IPv4 compatible and mapped 128-bit IPv6 Addresses - // 128-bits are split into eight 16-bit words - // stored in network byte order (big-endian) - // | 80 bits | 16 | 32 bits | - // +-----------------------------------------------------------------+ - // | 10 bytes | 2 | 4 bytes | - // +--------------------------------------+--------------------------+ - // + 5 words | 1 | 2 words | - // +--------------------------------------+--------------------------+ - // |0000..............................0000|0000| IPv4 ADDRESS | (compatible) - // +--------------------------------------+----+---------------------+ - // |0000..............................0000|FFFF| IPv4 ADDRESS | (mapped) - // +--------------------------------------+----+---------------------+ - var str = ""; - var word = 0; - var longest = 0; - var lastzero = 0; - var zstart = 0; - var len = 0; - var i = 0; - var parts = [ - ints[0] & 0xffff, - (ints[0] >> 16), - ints[1] & 0xffff, - (ints[1] >> 16), - ints[2] & 0xffff, - (ints[2] >> 16), - ints[3] & 0xffff, - (ints[3] >> 16) - ]; - - // Handle IPv4-compatible, IPv4-mapped, loopback and any/unspecified addresses - - var hasipv4 = true; - var v4part = ""; - // check if the 10 high-order bytes are all zeros (first 5 words) - for (i = 0; i < 5; i++) { - if (parts[i] !== 0) { hasipv4 = false; break; } - } - - if (hasipv4) { - // low-order 32-bits store an IPv4 address (bytes 13 to 16) (last 2 words) - v4part = inetNtop4(parts[6] | (parts[7] << 16)); - // IPv4-mapped IPv6 address if 16-bit value (bytes 11 and 12) == 0xFFFF (6th word) - if (parts[5] === -1) { - str = "::ffff:"; - str += v4part; - return str; - } - // IPv4-compatible IPv6 address if 16-bit value (bytes 11 and 12) == 0x0000 (6th word) - if (parts[5] === 0) { - str = "::"; - //special case IPv6 addresses - if (v4part === "0.0.0.0") v4part = ""; // any/unspecified address - if (v4part === "0.0.0.1") v4part = "1";// loopback address - str += v4part; - return str; - } - } - - // Handle all other IPv6 addresses - - // first run to find the longest contiguous zero words - for (word = 0; word < 8; word++) { - if (parts[word] === 0) { - if (word - lastzero > 1) { - len = 0; - } - lastzero = word; - len++; - } - if (len > longest) { - longest = len; - zstart = word - longest + 1; - } - } - - for (word = 0; word < 8; word++) { - if (longest > 1) { - // compress contiguous zeros - to produce "::" - if (parts[word] === 0 && word >= zstart && word < (zstart + longest) ) { - if (word === zstart) { - str += ":"; - if (zstart === 0) str += ":"; //leading zeros case - } - continue; - } - } - // converts 16-bit words from big-endian to little-endian before converting to hex string - str += Number(_ntohs(parts[word] & 0xffff)).toString(16); - str += word < 7 ? ":" : ""; - } - return str; - } - function readSockaddr(sa, salen) { - // family / port offsets are common to both sockaddr_in and sockaddr_in6 - var family = HEAP16[((sa)>>1)]; - var port = _ntohs(HEAPU16[(((sa)+(2))>>1)]); - var addr; - - switch (family) { - case 2: - if (salen !== 16) { - return { errno: 28 }; - } - addr = HEAP32[(((sa)+(4))>>2)]; - addr = inetNtop4(addr); - break; - case 10: - if (salen !== 28) { - return { errno: 28 }; - } - addr = [ - HEAP32[(((sa)+(8))>>2)], - HEAP32[(((sa)+(12))>>2)], - HEAP32[(((sa)+(16))>>2)], - HEAP32[(((sa)+(20))>>2)] - ]; - addr = inetNtop6(addr); - break; - default: - return { errno: 5 }; - } - - return { family: family, addr: addr, port: port }; - } - function getSocketAddress(addrp, addrlen, allowNull) { - if (allowNull && addrp === 0) return null; - var info = readSockaddr(addrp, addrlen); - if (info.errno) throw new FS.ErrnoError(info.errno); - info.addr = DNS.lookup_addr(info.addr) || info.addr; - return info; - } - function ___sys_connect(fd, addr, addrlen) {try { - - var sock = getSocketFromFD(fd); - var info = getSocketAddress(addr, addrlen); - sock.sock_ops.connect(sock, info.addr, info.port); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fadvise64_64(fd, offset, len, advice) { - return 0; // your advice is important to us (but we can't use it) - } - - function ___sys_fchmod(fd, mode) {try { - - FS.fchmod(fd, mode); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fchown32(fd, owner, group) {try { - - FS.fchown(fd, owner, group); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fcntl64(fd, cmd, varargs) {SYSCALLS.varargs = varargs; - try { - - var stream = SYSCALLS.getStreamFromFD(fd); - switch (cmd) { - case 0: { - var arg = SYSCALLS.get(); - if (arg < 0) { - return -28; - } - var newStream; - newStream = FS.open(stream.path, stream.flags, 0, arg); - return newStream.fd; - } - case 1: - case 2: - return 0; // FD_CLOEXEC makes no sense for a single process. - case 3: - return stream.flags; - case 4: { - var arg = SYSCALLS.get(); - stream.flags |= arg; - return 0; - } - case 12: - /* case 12: Currently in musl F_GETLK64 has same value as F_GETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ { - - var arg = SYSCALLS.get(); - var offset = 0; - // We're always unlocked. - HEAP16[(((arg)+(offset))>>1)] = 2; - return 0; - } - case 13: - case 14: - /* case 13: Currently in musl F_SETLK64 has same value as F_SETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ - /* case 14: Currently in musl F_SETLKW64 has same value as F_SETLKW, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ - - - return 0; // Pretend that the locking is successful. - case 16: - case 8: - return -28; // These are for sockets. We don't have them fully implemented yet. - case 9: - // musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fnctl() returns that, and we set errno ourselves. - setErrNo(28); - return -1; - default: { - return -28; - } - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fstat64(fd, buf) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - return SYSCALLS.doStat(FS.stat, stream.path, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fstatfs64(fd, size, buf) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - return ___sys_statfs64(0, size, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_ftruncate64(fd, zero, low, high) {try { - - var length = SYSCALLS.get64(low, high); - FS.ftruncate(fd, length); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_getcwd(buf, size) {try { - - if (size === 0) return -28; - var cwd = FS.cwd(); - var cwdLengthInBytes = lengthBytesUTF8(cwd); - if (size < cwdLengthInBytes + 1) return -68; - stringToUTF8(cwd, buf, size); - return buf; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_getdents64(fd, dirp, count) {try { - - var stream = SYSCALLS.getStreamFromFD(fd) - if (!stream.getdents) { - stream.getdents = FS.readdir(stream.path); - } - - var struct_size = 280; - var pos = 0; - var off = FS.llseek(stream, 0, 1); - - var idx = Math.floor(off / struct_size); - - while (idx < stream.getdents.length && pos + struct_size <= count) { - var id; - var type; - var name = stream.getdents[idx]; - if (name[0] === '.') { - id = 1; - type = 4; // DT_DIR - } else { - var child = FS.lookupNode(stream.node, name); - id = child.id; - type = FS.isChrdev(child.mode) ? 2 : // DT_CHR, character device. - FS.isDir(child.mode) ? 4 : // DT_DIR, directory. - FS.isLink(child.mode) ? 10 : // DT_LNK, symbolic link. - 8; // DT_REG, regular file. - } - (tempI64 = [id>>>0,(tempDouble=id,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((dirp + pos)>>2)] = tempI64[0],HEAP32[(((dirp + pos)+(4))>>2)] = tempI64[1]); - (tempI64 = [(idx + 1) * struct_size>>>0,(tempDouble=(idx + 1) * struct_size,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((dirp + pos)+(8))>>2)] = tempI64[0],HEAP32[(((dirp + pos)+(12))>>2)] = tempI64[1]); - HEAP16[(((dirp + pos)+(16))>>1)] = 280; - HEAP8[(((dirp + pos)+(18))>>0)] = type; - stringToUTF8(name, dirp + pos + 19, 256); - pos += struct_size; - idx += 1; - } - FS.llseek(stream, idx * struct_size, 0); - return pos; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_getegid32() { - return 0; - } - function ___sys_geteuid32( - ) { - return ___sys_getegid32(); - } - - function ___sys_getpid() { - return 42; - } - - function ___sys_getrusage(who, usage) {try { - - _memset(usage, 0, 136); - HEAP32[((usage)>>2)] = 1; // fake some values - HEAP32[(((usage)+(4))>>2)] = 2; - HEAP32[(((usage)+(8))>>2)] = 3; - HEAP32[(((usage)+(12))>>2)] = 4; - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_ioctl(fd, op, varargs) {SYSCALLS.varargs = varargs; - try { - - var stream = SYSCALLS.getStreamFromFD(fd); - switch (op) { - case 21509: - case 21505: { - if (!stream.tty) return -59; - return 0; - } - case 21510: - case 21511: - case 21512: - case 21506: - case 21507: - case 21508: { - if (!stream.tty) return -59; - return 0; // no-op, not actually adjusting terminal settings - } - case 21519: { - if (!stream.tty) return -59; - var argp = SYSCALLS.get(); - HEAP32[((argp)>>2)] = 0; - return 0; - } - case 21520: { - if (!stream.tty) return -59; - return -28; // not supported - } - case 21531: { - var argp = SYSCALLS.get(); - return FS.ioctl(stream, op, argp); - } - case 21523: { - // TODO: in theory we should write to the winsize struct that gets - // passed in, but for now musl doesn't read anything on it - if (!stream.tty) return -59; - return 0; - } - case 21524: { - // TODO: technically, this ioctl call should change the window size. - // but, since emscripten doesn't have any concept of a terminal window - // yet, we'll just silently throw it away as we do TIOCGWINSZ - if (!stream.tty) return -59; - return 0; - } - default: abort('bad ioctl syscall ' + op); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_link(oldpath, newpath) { - return -34; // no hardlinks for us - } - - function ___sys_lstat64(path, buf) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doStat(FS.lstat, path, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_madvise1(addr, length, advice) { - return 0; // advice is welcome, but ignored - } - - function ___sys_mkdir(path, mode) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doMkdir(path, mode); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function syscallMmap2(addr, len, prot, flags, fd, off) { - off <<= 12; // undo pgoffset - var ptr; - var allocated = false; - - // addr argument must be page aligned if MAP_FIXED flag is set. - if ((flags & 16) !== 0 && (addr % 65536) !== 0) { - return -28; - } - - // MAP_ANONYMOUS (aka MAP_ANON) isn't actually defined by POSIX spec, - // but it is widely used way to allocate memory pages on Linux, BSD and Mac. - // In this case fd argument is ignored. - if ((flags & 32) !== 0) { - ptr = _memalign(65536, len); - if (!ptr) return -48; - _memset(ptr, 0, len); - allocated = true; - } else { - var info = FS.getStream(fd); - if (!info) return -8; - var res = FS.mmap(info, addr, len, off, prot, flags); - ptr = res.ptr; - allocated = res.allocated; - } - SYSCALLS.mappings[ptr] = { malloc: ptr, len: len, allocated: allocated, fd: fd, prot: prot, flags: flags, offset: off }; - return ptr; - } - function ___sys_mmap2(addr, len, prot, flags, fd, off) {try { - - return syscallMmap2(addr, len, prot, flags, fd, off); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_msync(addr, len, flags) {try { - - var info = SYSCALLS.mappings[addr]; - if (!info) return 0; - SYSCALLS.doMsync(addr, FS.getStream(info.fd), len, info.flags, 0); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function syscallMunmap(addr, len) { - if ((addr | 0) === -1 || len === 0) { - return -28; - } - // TODO: support unmmap'ing parts of allocations - var info = SYSCALLS.mappings[addr]; - if (!info) return 0; - if (len === info.len) { - var stream = FS.getStream(info.fd); - if (stream) { - if (info.prot & 2) { - SYSCALLS.doMsync(addr, stream, len, info.flags, info.offset); - } - FS.munmap(stream); - } - SYSCALLS.mappings[addr] = null; - if (info.allocated) { - _free(info.malloc); - } - } - return 0; - } - function ___sys_munmap(addr, len) {try { - - return syscallMunmap(addr, len); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_open(path, flags, varargs) {SYSCALLS.varargs = varargs; - try { - - var pathname = SYSCALLS.getStr(path); - var mode = varargs ? SYSCALLS.get() : 0; - var stream = FS.open(pathname, flags, mode); - return stream.fd; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_readlink(path, buf, bufsize) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doReadlink(path, buf, bufsize); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function inetPton4(str) { - var b = str.split('.'); - for (var i = 0; i < 4; i++) { - var tmp = Number(b[i]); - if (isNaN(tmp)) return null; - b[i] = tmp; - } - return (b[0] | (b[1] << 8) | (b[2] << 16) | (b[3] << 24)) >>> 0; - } - - /** @suppress {checkTypes} */ - function jstoi_q(str) { - return parseInt(str); - } - function inetPton6(str) { - var words; - var w, offset, z, i; - /* http://home.deds.nl/~aeron/regex/ */ - var valid6regx = /^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i - var parts = []; - if (!valid6regx.test(str)) { - return null; - } - if (str === "::") { - return [0, 0, 0, 0, 0, 0, 0, 0]; - } - // Z placeholder to keep track of zeros when splitting the string on ":" - if (str.startsWith("::")) { - str = str.replace("::", "Z:"); // leading zeros case - } else { - str = str.replace("::", ":Z:"); - } - - if (str.indexOf(".") > 0) { - // parse IPv4 embedded stress - str = str.replace(new RegExp('[.]', 'g'), ":"); - words = str.split(":"); - words[words.length-4] = jstoi_q(words[words.length-4]) + jstoi_q(words[words.length-3])*256; - words[words.length-3] = jstoi_q(words[words.length-2]) + jstoi_q(words[words.length-1])*256; - words = words.slice(0, words.length-2); - } else { - words = str.split(":"); - } - - offset = 0; z = 0; - for (w=0; w < words.length; w++) { - if (typeof words[w] === 'string') { - if (words[w] === 'Z') { - // compressed zeros - write appropriate number of zero words - for (z = 0; z < (8 - words.length+1); z++) { - parts[w+z] = 0; - } - offset = z-1; - } else { - // parse hex to field to 16-bit value and write it in network byte-order - parts[w+offset] = _htons(parseInt(words[w],16)); - } - } else { - // parsed IPv4 words - parts[w+offset] = words[w]; - } - } - return [ - (parts[1] << 16) | parts[0], - (parts[3] << 16) | parts[2], - (parts[5] << 16) | parts[4], - (parts[7] << 16) | parts[6] - ]; - } - function writeSockaddr(sa, family, addr, port, addrlen) { - switch (family) { - case 2: - addr = inetPton4(addr); - if (addrlen) { - HEAP32[((addrlen)>>2)] = 16; - } - HEAP16[((sa)>>1)] = family; - HEAP32[(((sa)+(4))>>2)] = addr; - HEAP16[(((sa)+(2))>>1)] = _htons(port); - /* Use makeSetValue instead of memset to avoid adding memset dependency for all users of writeSockaddr. */ - - (tempI64 = [0>>>0,(tempDouble=0,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((sa)+(8))>>2)] = tempI64[0],HEAP32[(((sa)+(12))>>2)] = tempI64[1]); - break; - case 10: - addr = inetPton6(addr); - if (addrlen) { - HEAP32[((addrlen)>>2)] = 28; - } - HEAP32[((sa)>>2)] = family; - HEAP32[(((sa)+(8))>>2)] = addr[0]; - HEAP32[(((sa)+(12))>>2)] = addr[1]; - HEAP32[(((sa)+(16))>>2)] = addr[2]; - HEAP32[(((sa)+(20))>>2)] = addr[3]; - HEAP16[(((sa)+(2))>>1)] = _htons(port); - HEAP32[(((sa)+(4))>>2)] = 0; - HEAP32[(((sa)+(24))>>2)] = 0; - break; - default: - return 5; - } - return 0; - } - - var DNS={address_map:{id:1,addrs:{},names:{}},lookup_name:function (name) { - // If the name is already a valid ipv4 / ipv6 address, don't generate a fake one. - var res = inetPton4(name); - if (res !== null) { - return name; - } - res = inetPton6(name); - if (res !== null) { - return name; - } - - // See if this name is already mapped. - var addr; - - if (DNS.address_map.addrs[name]) { - addr = DNS.address_map.addrs[name]; - } else { - var id = DNS.address_map.id++; - assert(id < 65535, 'exceeded max address mappings of 65535'); - - addr = '172.29.' + (id & 0xff) + '.' + (id & 0xff00); - - DNS.address_map.names[addr] = name; - DNS.address_map.addrs[name] = addr; - } - - return addr; - },lookup_addr:function (addr) { - if (DNS.address_map.names[addr]) { - return DNS.address_map.names[addr]; - } - - return null; - }}; - function ___sys_recvfrom(fd, buf, len, flags, addr, addrlen) {try { - - var sock = getSocketFromFD(fd); - var msg = sock.sock_ops.recvmsg(sock, len); - if (!msg) return 0; // socket is closed - if (addr) { - var errno = writeSockaddr(addr, sock.family, DNS.lookup_name(msg.addr), msg.port, addrlen); - } - HEAPU8.set(msg.buffer, buf); - return msg.buffer.byteLength; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_rename(old_path, new_path) {try { - - old_path = SYSCALLS.getStr(old_path); - new_path = SYSCALLS.getStr(new_path); - FS.rename(old_path, new_path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_rmdir(path) {try { - - path = SYSCALLS.getStr(path); - FS.rmdir(path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_sendto(fd, message, length, flags, addr, addr_len) {try { - - var sock = getSocketFromFD(fd); - var dest = getSocketAddress(addr, addr_len, true); - if (!dest) { - // send, no address provided - return FS.write(sock.stream, HEAP8,message, length); - } else { - // sendto an address - return sock.sock_ops.sendmsg(sock, HEAP8,message, length, dest.addr, dest.port); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_setsockopt(fd) {try { - - return -50; // The option is unknown at the level indicated. - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_shutdown(fd, how) {try { - - getSocketFromFD(fd); - return -52; // unsupported feature - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_socket(domain, type, protocol) {try { - - var sock = SOCKFS.createSocket(domain, type, protocol); - return sock.stream.fd; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_stat64(path, buf) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doStat(FS.stat, path, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_symlink(target, linkpath) {try { - - target = SYSCALLS.getStr(target); - linkpath = SYSCALLS.getStr(linkpath); - FS.symlink(target, linkpath); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_unlink(path) {try { - - path = SYSCALLS.getStr(path); - FS.unlink(path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_utimensat(dirfd, path, times, flags) {try { - - path = SYSCALLS.getStr(path); - path = SYSCALLS.calculateAt(dirfd, path, true); - var seconds = HEAP32[((times)>>2)]; - var nanoseconds = HEAP32[(((times)+(4))>>2)]; - var atime = (seconds*1000) + (nanoseconds/(1000*1000)); - times += 8; - seconds = HEAP32[((times)>>2)]; - nanoseconds = HEAP32[(((times)+(4))>>2)]; - var mtime = (seconds*1000) + (nanoseconds/(1000*1000)); - FS.utime(path, atime, mtime); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function _abort() { - abort(); - } - - function _emscripten_get_now_res() { // return resolution of get_now, in nanoseconds - if (ENVIRONMENT_IS_NODE) { - return 1; // nanoseconds - } else - if (typeof dateNow !== 'undefined') { - return 1000; // microseconds (1/1000 of a millisecond) - } else - // Modern environment where performance.now() is supported: - return 1000; // microseconds (1/1000 of a millisecond) - } - function _clock_getres(clk_id, res) { - // int clock_getres(clockid_t clk_id, struct timespec *res); - var nsec; - if (clk_id === 0) { - nsec = 1000 * 1000; // educated guess that it's milliseconds - } else if (clk_id === 1 && _emscripten_get_now_is_monotonic) { - nsec = _emscripten_get_now_res(); - } else { - setErrNo(28); - return -1; - } - HEAP32[((res)>>2)] = (nsec/1000000000)|0; - HEAP32[(((res)+(4))>>2)] = nsec // resolution is nanoseconds - return 0; - } - - - function _difftime(time1, time0) { - return time1 - time0; - } - - function _dlclose(handle) { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - function _dlerror() { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - function _dlopen(filename, flag) { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - function _dlsym(handle, symbol) { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function (buffer, bufferLength) { - // for modern web browsers - // map the work array to the memory buffer passed with the length - for (var i = 0; i < bufferLength; i += this.batchedQuotaMax) { - var view = new Uint8Array(Module.HEAPU8.buffer, buffer + i, Math.min(bufferLength - i, this.batchedQuotaMax)); - crypto.getRandomValues(view) - } - }}; - function _dotnet_browser_entropy(buffer, bufferLength) { - // check that we have crypto available - if (typeof crypto === 'object' && typeof crypto['getRandomValues'] === 'function') { - DOTNETENTROPY.getBatchedRandomValues(buffer, bufferLength) - return 0; - } else { - // we couldn't find a proper implementation, as Math.random() is not suitable - // instead of aborting here we will return and let managed code handle the message - return -1; - } - } - - var readAsmConstArgsArray=[]; - function readAsmConstArgs(sigPtr, buf) { - readAsmConstArgsArray.length = 0; - var ch; - // Most arguments are i32s, so shift the buffer pointer so it is a plain - // index into HEAP32. - buf >>= 2; - while (ch = HEAPU8[sigPtr++]) { - // A double takes two 32-bit slots, and must also be aligned - the backend - // will emit padding to avoid that. - var double = ch < 105; - if (double && (buf & 1)) buf++; - readAsmConstArgsArray.push(double ? HEAPF64[buf++ >> 1] : HEAP32[buf]); - ++buf; - } - return readAsmConstArgsArray; - } - function _emscripten_asm_const_int(code, sigPtr, argbuf) { - var args = readAsmConstArgs(sigPtr, argbuf); - return ASM_CONSTS[code].apply(null, args); - } - - function _emscripten_get_heap_max() { - // Handle the case of 4GB (which would wrap to 0 in the return value) by - // returning up to 4GB - one wasm page. - return 2147483648; - } - - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.copyWithin(dest, src, src + num); - } - - function emscripten_realloc_buffer(size) { - try { - // round size grow request up to wasm page size (fixed 64KB per spec) - wasmMemory.grow((size - buffer.byteLength + 65535) >>> 16); // .grow() takes a delta compared to the previous size - updateGlobalBufferAndViews(wasmMemory.buffer); - return 1 /*success*/; - } catch(e) { - } - // implicit 0 return to save code size (caller will cast "undefined" into 0 - // anyhow) - } - function _emscripten_resize_heap(requestedSize) { - var oldSize = HEAPU8.length; - requestedSize = requestedSize >>> 0; - // With pthreads, races can happen (another thread might increase the size in between), so return a failure, and let the caller retry. - - // Memory resize rules: - // 1. Always increase heap size to at least the requested size, rounded up to next page multiple. - // 2a. If MEMORY_GROWTH_LINEAR_STEP == -1, excessively resize the heap geometrically: increase the heap size according to - // MEMORY_GROWTH_GEOMETRIC_STEP factor (default +20%), - // At most overreserve by MEMORY_GROWTH_GEOMETRIC_CAP bytes (default 96MB). - // 2b. If MEMORY_GROWTH_LINEAR_STEP != -1, excessively resize the heap linearly: increase the heap size by at least MEMORY_GROWTH_LINEAR_STEP bytes. - // 3. Max size for the heap is capped at 2048MB-WASM_PAGE_SIZE, or by MAXIMUM_MEMORY, or by ASAN limit, depending on which is smallest - // 4. If we were unable to allocate as much memory, it may be due to over-eager decision to excessively reserve due to (3) above. - // Hence if an allocation fails, cut down on the amount of excess growth, in an attempt to succeed to perform a smaller allocation. - - // A limit is set for how much we can grow. We should not exceed that - // (the wasm binary specifies it, so if we tried, we'd fail anyhow). - // In CAN_ADDRESS_2GB mode, stay one Wasm page short of 4GB: while e.g. Chrome is able to allocate full 4GB Wasm memories, the size will wrap - // back to 0 bytes in Wasm side for any code that deals with heap sizes, which would require special casing all heap size related code to treat - // 0 specially. - var maxHeapSize = 2147483648; - if (requestedSize > maxHeapSize) { - return false; - } - - // Loop through potential heap size increases. If we attempt a too eager reservation that fails, cut down on the - // attempted size and reserve a smaller bump instead. (max 3 times, chosen somewhat arbitrarily) - for (var cutDown = 1; cutDown <= 4; cutDown *= 2) { - var overGrownHeapSize = oldSize * (1 + 0.2 / cutDown); // ensure geometric growth - // but limit overreserving (default to capping at +96MB overgrowth at most) - overGrownHeapSize = Math.min(overGrownHeapSize, requestedSize + 100663296 ); - - var newSize = Math.min(maxHeapSize, alignUp(Math.max(requestedSize, overGrownHeapSize), 65536)); - - var replacement = emscripten_realloc_buffer(newSize); - if (replacement) { - - return true; - } - } - return false; - } - - function _emscripten_thread_sleep(msecs) { - var start = _emscripten_get_now(); - while (_emscripten_get_now() - start < msecs) { - // Do nothing. - } - } - - var ENV={}; - - function getExecutableName() { - return thisProgram || './this.program'; - } - function getEnvStrings() { - if (!getEnvStrings.strings) { - // Default values. - // Browser language detection #8751 - var lang = ((typeof navigator === 'object' && navigator.languages && navigator.languages[0]) || 'C').replace('-', '_') + '.UTF-8'; - var env = { - 'USER': 'web_user', - 'LOGNAME': 'web_user', - 'PATH': '/', - 'PWD': '/', - 'HOME': '/home/web_user', - 'LANG': lang, - '_': getExecutableName() - }; - // Apply the user-provided values, if any. - for (var x in ENV) { - env[x] = ENV[x]; - } - var strings = []; - for (var x in env) { - strings.push(x + '=' + env[x]); - } - getEnvStrings.strings = strings; - } - return getEnvStrings.strings; - } - function _environ_get(__environ, environ_buf) {try { - - var bufSize = 0; - getEnvStrings().forEach(function(string, i) { - var ptr = environ_buf + bufSize; - HEAP32[(((__environ)+(i * 4))>>2)] = ptr; - writeAsciiToMemory(string, ptr); - bufSize += string.length + 1; - }); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _environ_sizes_get(penviron_count, penviron_buf_size) {try { - - var strings = getEnvStrings(); - HEAP32[((penviron_count)>>2)] = strings.length; - var bufSize = 0; - strings.forEach(function(string) { - bufSize += string.length + 1; - }); - HEAP32[((penviron_buf_size)>>2)] = bufSize; - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _exit(status) { - // void _exit(int status); - // http://pubs.opengroup.org/onlinepubs/000095399/functions/exit.html - exit(status); - } - - function _fd_close(fd) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - FS.close(stream); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_fdstat_get(fd, pbuf) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - // All character devices are terminals (other things a Linux system would - // assume is a character device, like the mouse, we have special APIs for). - var type = stream.tty ? 2 : - FS.isDir(stream.mode) ? 3 : - FS.isLink(stream.mode) ? 7 : - 4; - HEAP8[((pbuf)>>0)] = type; - // TODO HEAP16[(((pbuf)+(2))>>1)] = ?; - // TODO (tempI64 = [?>>>0,(tempDouble=?,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((pbuf)+(8))>>2)] = tempI64[0],HEAP32[(((pbuf)+(12))>>2)] = tempI64[1]); - // TODO (tempI64 = [?>>>0,(tempDouble=?,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((pbuf)+(16))>>2)] = tempI64[0],HEAP32[(((pbuf)+(20))>>2)] = tempI64[1]); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_pread(fd, iov, iovcnt, offset_low, offset_high, pnum) {try { - - - var stream = SYSCALLS.getStreamFromFD(fd) - var num = SYSCALLS.doReadv(stream, iov, iovcnt, offset_low); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_pwrite(fd, iov, iovcnt, offset_low, offset_high, pnum) {try { - - - var stream = SYSCALLS.getStreamFromFD(fd) - var num = SYSCALLS.doWritev(stream, iov, iovcnt, offset_low); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_read(fd, iov, iovcnt, pnum) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - var num = SYSCALLS.doReadv(stream, iov, iovcnt); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_seek(fd, offset_low, offset_high, whence, newOffset) {try { - - - var stream = SYSCALLS.getStreamFromFD(fd); - var HIGH_OFFSET = 0x100000000; // 2^32 - // use an unsigned operator on low and shift high by 32-bits - var offset = offset_high * HIGH_OFFSET + (offset_low >>> 0); - - var DOUBLE_LIMIT = 0x20000000000000; // 2^53 - // we also check for equality since DOUBLE_LIMIT + 1 == DOUBLE_LIMIT - if (offset <= -DOUBLE_LIMIT || offset >= DOUBLE_LIMIT) { - return -61; - } - - FS.llseek(stream, offset, whence); - (tempI64 = [stream.position>>>0,(tempDouble=stream.position,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((newOffset)>>2)] = tempI64[0],HEAP32[(((newOffset)+(4))>>2)] = tempI64[1]); - if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_sync(fd) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - if (stream.stream_ops && stream.stream_ops.fsync) { - return -stream.stream_ops.fsync(stream); - } - return 0; // we can't do anything synchronously; the in-memory FS is already synced to - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_write(fd, iov, iovcnt, pnum) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - var num = SYSCALLS.doWritev(stream, iov, iovcnt); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _flock(fd, operation) { - // int flock(int fd, int operation); - // Pretend to succeed - return 0; - } - - var GAI_ERRNO_MESSAGES={}; - function _gai_strerror(val) { - var buflen = 256; - - // On first call to gai_strerror we initialise the buffer and populate the error messages. - if (!_gai_strerror.buffer) { - _gai_strerror.buffer = _malloc(buflen); - - GAI_ERRNO_MESSAGES['0'] = 'Success'; - GAI_ERRNO_MESSAGES['' + -1] = 'Invalid value for \'ai_flags\' field'; - GAI_ERRNO_MESSAGES['' + -2] = 'NAME or SERVICE is unknown'; - GAI_ERRNO_MESSAGES['' + -3] = 'Temporary failure in name resolution'; - GAI_ERRNO_MESSAGES['' + -4] = 'Non-recoverable failure in name res'; - GAI_ERRNO_MESSAGES['' + -6] = '\'ai_family\' not supported'; - GAI_ERRNO_MESSAGES['' + -7] = '\'ai_socktype\' not supported'; - GAI_ERRNO_MESSAGES['' + -8] = 'SERVICE not supported for \'ai_socktype\''; - GAI_ERRNO_MESSAGES['' + -10] = 'Memory allocation failure'; - GAI_ERRNO_MESSAGES['' + -11] = 'System error returned in \'errno\''; - GAI_ERRNO_MESSAGES['' + -12] = 'Argument buffer overflow'; - } - - var msg = 'Unknown error'; - - if (val in GAI_ERRNO_MESSAGES) { - if (GAI_ERRNO_MESSAGES[val].length > buflen - 1) { - msg = 'Message too long'; // EMSGSIZE message. This should never occur given the GAI_ERRNO_MESSAGES above. - } else { - msg = GAI_ERRNO_MESSAGES[val]; - } - } - - writeAsciiToMemory(msg, _gai_strerror.buffer); - return _gai_strerror.buffer; - } - - function _getTempRet0() { - return getTempRet0(); - } - - function _gettimeofday(ptr) { - var now = Date.now(); - HEAP32[((ptr)>>2)] = (now/1000)|0; // seconds - HEAP32[(((ptr)+(4))>>2)] = ((now % 1000)*1000)|0; // microseconds - return 0; - } - - function _gmtime_r(time, tmPtr) { - var date = new Date(HEAP32[((time)>>2)]*1000); - HEAP32[((tmPtr)>>2)] = date.getUTCSeconds(); - HEAP32[(((tmPtr)+(4))>>2)] = date.getUTCMinutes(); - HEAP32[(((tmPtr)+(8))>>2)] = date.getUTCHours(); - HEAP32[(((tmPtr)+(12))>>2)] = date.getUTCDate(); - HEAP32[(((tmPtr)+(16))>>2)] = date.getUTCMonth(); - HEAP32[(((tmPtr)+(20))>>2)] = date.getUTCFullYear()-1900; - HEAP32[(((tmPtr)+(24))>>2)] = date.getUTCDay(); - HEAP32[(((tmPtr)+(36))>>2)] = 0; - HEAP32[(((tmPtr)+(32))>>2)] = 0; - var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0); - var yday = ((date.getTime() - start) / (1000 * 60 * 60 * 24))|0; - HEAP32[(((tmPtr)+(28))>>2)] = yday; - // Allocate a string "GMT" for us to point to. - if (!_gmtime_r.GMTString) _gmtime_r.GMTString = allocateUTF8("GMT"); - HEAP32[(((tmPtr)+(40))>>2)] = _gmtime_r.GMTString; - return tmPtr; - } - - function _llvm_eh_typeid_for(type) { - return type; - } - - - var MONO={pump_count:0,timeout_queue:[],spread_timers_maximum:0,_vt_stack:[],mono_wasm_runtime_is_ready:false,mono_wasm_ignore_pdb_load_errors:true,_id_table:{},pump_message:function () { - if (!this.mono_background_exec) - this.mono_background_exec = Module.cwrap ("mono_background_exec", null); - while (MONO.timeout_queue.length > 0) { - --MONO.pump_count; - MONO.timeout_queue.shift()(); - } - while (MONO.pump_count > 0) { - --MONO.pump_count; - this.mono_background_exec (); - } - },export_functions:function (module) { - module ["pump_message"] = MONO.pump_message.bind(MONO); - module ["prevent_timer_throttling"] = MONO.prevent_timer_throttling.bind(MONO); - module ["mono_wasm_set_timeout_exec"] = MONO.mono_wasm_set_timeout_exec.bind(MONO); - module ["mono_load_runtime_and_bcl"] = MONO.mono_load_runtime_and_bcl.bind(MONO); - module ["mono_load_runtime_and_bcl_args"] = MONO.mono_load_runtime_and_bcl_args.bind(MONO); - module ["mono_wasm_load_bytes_into_heap"] = MONO.mono_wasm_load_bytes_into_heap.bind(MONO); - module ["mono_wasm_load_icu_data"] = MONO.mono_wasm_load_icu_data.bind(MONO); - module ["mono_wasm_get_icudt_name"] = MONO.mono_wasm_get_icudt_name.bind(MONO); - module ["mono_wasm_globalization_init"] = MONO.mono_wasm_globalization_init.bind(MONO); - module ["mono_wasm_get_loaded_files"] = MONO.mono_wasm_get_loaded_files.bind(MONO); - module ["mono_wasm_new_root_buffer"] = MONO.mono_wasm_new_root_buffer.bind(MONO); - module ["mono_wasm_new_root_buffer_from_pointer"] = MONO.mono_wasm_new_root_buffer_from_pointer.bind(MONO); - module ["mono_wasm_new_root"] = MONO.mono_wasm_new_root.bind(MONO); - module ["mono_wasm_new_roots"] = MONO.mono_wasm_new_roots.bind(MONO); - module ["mono_wasm_release_roots"] = MONO.mono_wasm_release_roots.bind(MONO); - module ["mono_wasm_load_config"] = MONO.mono_wasm_load_config.bind(MONO); - },_base64Converter:{_base64Table:["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"],_makeByteReader:function (bytes, index, count) { - var position = (typeof (index) === "number") ? index : 0; - var endpoint; - - if (typeof (count) === "number") - endpoint = (position + count); - else - endpoint = (bytes.length - position); - - var result = { - read: function () { - if (position >= endpoint) - return false; - - var nextByte = bytes[position]; - position += 1; - return nextByte; - } - }; - - Object.defineProperty(result, "eof", { - get: function () { - return (position >= endpoint); - }, - configurable: true, - enumerable: true - }); - - return result; - },toBase64StringImpl:function (inArray, offset, length) { - var reader = this._makeByteReader(inArray, offset, length); - var result = ""; - var ch1 = 0, ch2 = 0, ch3 = 0, bits = 0, equalsCount = 0, sum = 0; - var mask1 = (1 << 24) - 1, mask2 = (1 << 18) - 1, mask3 = (1 << 12) - 1, mask4 = (1 << 6) - 1; - var shift1 = 18, shift2 = 12, shift3 = 6, shift4 = 0; - - while (true) { - ch1 = reader.read(); - ch2 = reader.read(); - ch3 = reader.read(); - - if (ch1 === false) - break; - if (ch2 === false) { - ch2 = 0; - equalsCount += 1; - } - if (ch3 === false) { - ch3 = 0; - equalsCount += 1; - } - - // Seems backwards, but is right! - sum = (ch1 << 16) | (ch2 << 8) | (ch3 << 0); - - bits = (sum & mask1) >> shift1; - result += this._base64Table[bits]; - bits = (sum & mask2) >> shift2; - result += this._base64Table[bits]; - - if (equalsCount < 2) { - bits = (sum & mask3) >> shift3; - result += this._base64Table[bits]; - } - - if (equalsCount === 2) { - result += "=="; - } else if (equalsCount === 1) { - result += "="; - } else { - bits = (sum & mask4) >> shift4; - result += this._base64Table[bits]; - } - } - - return result; - }},_mono_wasm_root_buffer_prototype:{_throw_index_out_of_range:function () { - throw new Error ("index out of range"); - },_check_in_range:function (index) { - if ((index >= this.__count) || (index < 0)) - this._throw_index_out_of_range(); - },get_address:function (index) { - this._check_in_range (index); - return this.__offset + (index * 4); - },get_address_32:function (index) { - this._check_in_range (index); - return this.__offset32 + index; - },get:function (index) { - this._check_in_range (index); - return Module.HEAP32[this.get_address_32 (index)]; - },set:function (index, value) { - Module.HEAP32[this.get_address_32 (index)] = value; - return value; - },_unsafe_get:function (index) { - return Module.HEAP32[this.__offset32 + index]; - },_unsafe_set:function (index, value) { - Module.HEAP32[this.__offset32 + index] = value; - },clear:function () { - if (this.__offset) - MONO._zero_region (this.__offset, this.__count * 4); - },release:function () { - if (this.__offset && this.__ownsAllocation) { - MONO.mono_wasm_deregister_root (this.__offset); - MONO._zero_region (this.__offset, this.__count * 4); - Module._free (this.__offset); - } - - this.__handle = this.__offset = this.__count = this.__offset32 = 0; - },toString:function () { - return "[root buffer @" + this.get_address (0) + ", size " + this.__count + "]"; - }},_scratch_root_buffer:null,_scratch_root_free_indices:null,_scratch_root_free_indices_count:0,_scratch_root_free_instances:[],_mono_wasm_root_prototype:{get_address:function () { - return this.__buffer.get_address (this.__index); - },get_address_32:function () { - return this.__buffer.get_address_32 (this.__index); - },get:function () { - var result = this.__buffer._unsafe_get (this.__index); - return result; - },set:function (value) { - this.__buffer._unsafe_set (this.__index, value); - return value; - },valueOf:function () { - return this.get (); - },clear:function () { - this.set (0); - },release:function () { - const maxPooledInstances = 128; - if (MONO._scratch_root_free_instances.length > maxPooledInstances) { - MONO._mono_wasm_release_scratch_index (this.__index); - this.__buffer = 0; - this.__index = 0; - } else { - this.set (0); - MONO._scratch_root_free_instances.push (this); - } - },toString:function () { - return "[root @" + this.get_address () + "]"; - }},_mono_wasm_release_scratch_index:function (index) { - if (index === undefined) - return; - - this._scratch_root_buffer.set (index, 0); - this._scratch_root_free_indices[this._scratch_root_free_indices_count] = index; - this._scratch_root_free_indices_count++; - },_mono_wasm_claim_scratch_index:function () { - if (!this._scratch_root_buffer) { - const maxScratchRoots = 8192; - this._scratch_root_buffer = this.mono_wasm_new_root_buffer (maxScratchRoots, "js roots"); - - this._scratch_root_free_indices = new Int32Array (maxScratchRoots); - this._scratch_root_free_indices_count = maxScratchRoots; - for (var i = 0; i < maxScratchRoots; i++) - this._scratch_root_free_indices[i] = maxScratchRoots - i - 1; - - Object.defineProperty (this._mono_wasm_root_prototype, "value", { - get: this._mono_wasm_root_prototype.get, - set: this._mono_wasm_root_prototype.set, - configurable: false - }); - } - - if (this._scratch_root_free_indices_count < 1) - throw new Error ("Out of scratch root space"); - - var result = this._scratch_root_free_indices[this._scratch_root_free_indices_count - 1]; - this._scratch_root_free_indices_count--; - return result; - },_zero_region:function (byteOffset, sizeBytes) { - if (((byteOffset % 4) === 0) && ((sizeBytes % 4) === 0)) - Module.HEAP32.fill(0, byteOffset / 4, sizeBytes / 4); - else - Module.HEAP8.fill(0, byteOffset, sizeBytes); - },mono_wasm_new_root_buffer:function (capacity, msg) { - if (!this.mono_wasm_register_root || !this.mono_wasm_deregister_root) { - this.mono_wasm_register_root = Module.cwrap ("mono_wasm_register_root", "number", ["number", "number", "string"]); - this.mono_wasm_deregister_root = Module.cwrap ("mono_wasm_deregister_root", null, ["number"]); - } - - if (capacity <= 0) - throw new Error ("capacity >= 1"); - - capacity = capacity | 0; - - var capacityBytes = capacity * 4; - var offset = Module._malloc (capacityBytes); - if ((offset % 4) !== 0) - throw new Error ("Malloc returned an unaligned offset"); - - this._zero_region (offset, capacityBytes); - - var result = Object.create (this._mono_wasm_root_buffer_prototype); - result.__offset = offset; - result.__offset32 = (offset / 4) | 0; - result.__count = capacity; - result.length = capacity; - result.__handle = this.mono_wasm_register_root (offset, capacityBytes, msg || 0); - result.__ownsAllocation = true; - - return result; - },mono_wasm_new_root_buffer_from_pointer:function (offset, capacity, msg) { - if (!this.mono_wasm_register_root || !this.mono_wasm_deregister_root) { - this.mono_wasm_register_root = Module.cwrap ("mono_wasm_register_root", "number", ["number", "number", "string"]); - this.mono_wasm_deregister_root = Module.cwrap ("mono_wasm_deregister_root", null, ["number"]); - } - - if (capacity <= 0) - throw new Error ("capacity >= 1"); - - capacity = capacity | 0; - - var capacityBytes = capacity * 4; - if ((offset % 4) !== 0) - throw new Error ("Unaligned offset"); - - this._zero_region (offset, capacityBytes); - - var result = Object.create (this._mono_wasm_root_buffer_prototype); - result.__offset = offset; - result.__offset32 = (offset / 4) | 0; - result.__count = capacity; - result.length = capacity; - result.__handle = this.mono_wasm_register_root (offset, capacityBytes, msg || 0); - result.__ownsAllocation = false; - - return result; - },mono_wasm_new_root:function (value) { - var result; - - if (this._scratch_root_free_instances.length > 0) { - result = this._scratch_root_free_instances.pop (); - } else { - var index = this._mono_wasm_claim_scratch_index (); - var buffer = this._scratch_root_buffer; - - result = Object.create (this._mono_wasm_root_prototype); - result.__buffer = buffer; - result.__index = index; - } - - if (value !== undefined) { - if (typeof (value) !== "number") - throw new Error ("value must be an address in the managed heap"); - - result.set (value); - } else { - result.set (0); - } - - return result; - },mono_wasm_new_roots:function (count_or_values) { - var result; - - if (Array.isArray (count_or_values)) { - result = new Array (count_or_values.length); - for (var i = 0; i < result.length; i++) - result[i] = this.mono_wasm_new_root (count_or_values[i]); - } else if ((count_or_values | 0) > 0) { - result = new Array (count_or_values); - for (var i = 0; i < result.length; i++) - result[i] = this.mono_wasm_new_root (); - } else { - throw new Error ("count_or_values must be either an array or a number greater than 0"); - } - - return result; - },mono_wasm_release_roots:function () { - for (var i = 0; i < arguments.length; i++) { - if (!arguments[i]) - continue; - - arguments[i].release (); - } - },mono_text_decoder:undefined,string_decoder:{copy:function (mono_string) { - if (mono_string === 0) - return null; - - if (!this.mono_wasm_string_root) - this.mono_wasm_string_root = MONO.mono_wasm_new_root (); - this.mono_wasm_string_root.value = mono_string; - - if (!this.mono_wasm_string_get_data) - this.mono_wasm_string_get_data = Module.cwrap ("mono_wasm_string_get_data", null, ['number', 'number', 'number', 'number']); - - if (!this.mono_wasm_string_decoder_buffer) - this.mono_wasm_string_decoder_buffer = Module._malloc(12); - - let ppChars = this.mono_wasm_string_decoder_buffer + 0, - pLengthBytes = this.mono_wasm_string_decoder_buffer + 4, - pIsInterned = this.mono_wasm_string_decoder_buffer + 8; - - this.mono_wasm_string_get_data (mono_string, ppChars, pLengthBytes, pIsInterned); - - // TODO: Is this necessary? - if (!this.mono_wasm_empty_string) - this.mono_wasm_empty_string = ""; - - let result = this.mono_wasm_empty_string; - let lengthBytes = Module.HEAP32[pLengthBytes / 4], - pChars = Module.HEAP32[ppChars / 4], - isInterned = Module.HEAP32[pIsInterned / 4]; - - if (pLengthBytes && pChars) { - if ( - isInterned && - MONO.interned_string_table && - MONO.interned_string_table.has(mono_string) - ) { - result = MONO.interned_string_table.get(mono_string); - // console.log("intern table cache hit", mono_string, result.length); - } else { - result = this.decode(pChars, pChars + lengthBytes, false); - if (isInterned) { - if (!MONO.interned_string_table) - MONO.interned_string_table = new Map(); - // console.log("interned", mono_string, result.length); - MONO.interned_string_table.set(mono_string, result); - } - } - } - - this.mono_wasm_string_root.value = 0; - return result; - },decode:function (start, end, save) { - if (!MONO.mono_text_decoder) { - MONO.mono_text_decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; - } - - var str = ""; - if (MONO.mono_text_decoder) { - // When threading is enabled, TextDecoder does not accept a view of a - // SharedArrayBuffer, we must make a copy of the array first. - var subArray = typeof SharedArrayBuffer !== 'undefined' && Module.HEAPU8.buffer instanceof SharedArrayBuffer - ? Module.HEAPU8.slice(start, end) - : Module.HEAPU8.subarray(start, end); - - str = MONO.mono_text_decoder.decode(subArray); - } else { - for (var i = 0; i < end - start; i+=2) { - var char = Module.getValue (start + i, 'i16'); - str += String.fromCharCode (char); - } - } - if (save) - this.result = str; - - return str; - }},mono_wasm_add_dbg_command_received:function(res_ok, id, buffer, buffer_len) - { - const assembly_data = new Uint8Array(Module.HEAPU8.buffer, buffer, buffer_len); - const base64String = MONO._base64Converter.toBase64StringImpl(assembly_data); - const buffer_obj = { - res_ok, - res: { - id, - value: base64String - } - } - if (MONO.commands_received.has(id)) - console.warn("Addind an id that already exists in commands_received"); - MONO.commands_received.set(id, buffer_obj); - },mono_wasm_malloc_and_set_debug_buffer:function (command_parameters) - { - if (command_parameters.length > this._debugger_buffer_len) - { - if (this._debugger_buffer) - Module._free (this._debugger_buffer); - this._debugger_buffer_len = Math.max(command_parameters.length, this._debugger_buffer_len, 256); - this._debugger_buffer = Module._malloc (this._debugger_buffer_len); - } - this._debugger_heap_bytes = new Uint8Array (Module.HEAPU8.buffer, this._debugger_buffer, this._debugger_buffer_len); - this._debugger_heap_bytes.set(this._base64_to_uint8 (command_parameters)); - },mono_wasm_send_dbg_command_with_parms:function (id, command_set, command, command_parameters, length, valtype, newvalue) - { - this.mono_wasm_malloc_and_set_debug_buffer(command_parameters); - this._c_fn_table.mono_wasm_send_dbg_command_with_parms_wrapper (id, command_set, command, this._debugger_buffer, length, valtype, newvalue.toString()); - let { res_ok, res } = MONO.commands_received.remove(id);; - if (!res_ok) - throw new Error (`Failed on mono_wasm_invoke_method_debugger_agent_with_parms`); - return res; - },mono_wasm_send_dbg_command:function (id, command_set, command, command_parameters) - { - this.mono_wasm_malloc_and_set_debug_buffer(command_parameters); - this._c_fn_table.mono_wasm_send_dbg_command_wrapper (id, command_set, command, this._debugger_buffer, command_parameters.length); - let { res_ok, res } = MONO.commands_received.remove(id); - if (!res_ok) - throw new Error (`Failed on mono_wasm_send_dbg_command`); - return res; - - },mono_wasm_get_dbg_command_info:function () - { - let { res_ok, res } = MONO.commands_received.remove(0); - if (!res_ok) - throw new Error (`Failed on mono_wasm_get_dbg_command_info`); - return res; - },_get_cfo_res_details:function (objectId, args) { - if (!(objectId in this._call_function_res_cache)) - throw new Error(`Could not find any object with id ${objectId}`); - - const real_obj = this._call_function_res_cache [objectId]; - - const descriptors = Object.getOwnPropertyDescriptors (real_obj); - if (args.accessorPropertiesOnly) { - Object.keys (descriptors).forEach (k => { - if (descriptors [k].get === undefined) - Reflect.deleteProperty (descriptors, k); - }); - } - - let res_details = []; - Object.keys (descriptors).forEach (k => { - let new_obj; - let prop_desc = descriptors [k]; - if (typeof prop_desc.value == "object") { - // convert `{value: { type='object', ... }}` - // to `{ name: 'foo', value: { type='object', ... }} - new_obj = Object.assign ({ name: k }, prop_desc); - } else if (prop_desc.value !== undefined) { - // This is needed for values that were not added by us, - // thus are like { value: 5 } - // instead of { value: { type = 'number', value: 5 }} - // - // This can happen, for eg., when `length` gets added for arrays - // or `__proto__`. - new_obj = { - name: k, - // merge/add `type` and `description` to `d.value` - value: Object.assign ({ type: (typeof prop_desc.value), description: '' + prop_desc.value }, - prop_desc) - }; - } else if (prop_desc.get !== undefined) { - // The real_obj has the actual getter. We are just returning a placeholder - // If the caller tries to run function on the cfo_res object, - // that accesses this property, then it would be run on `real_obj`, - // which *has* the original getter - new_obj = { - name: k, - get: { - className: "Function", - description: `get ${k} () {}`, - type: "function" - } - }; - } else { - new_obj = { name: k, value: { type: "symbol", value: "", description: ""} }; - } - - res_details.push (new_obj); - }); - - return { __value_as_json_string__: JSON.stringify (res_details) }; - },mono_wasm_get_details:function (objectId, args={}) { - return this._get_cfo_res_details (`dotnet:cfo_res:${objectId}`, args); - },_cache_call_function_res:function (obj) { - const id = `dotnet:cfo_res:${this._next_call_function_res_id++}`; - this._call_function_res_cache[id] = obj; - return id; - },mono_wasm_release_object:function (objectId) { - if (objectId in this._cache_call_function_res) - delete this._cache_call_function_res[objectId]; - },_create_proxy_from_object_id:function (objectId, details) { - if (objectId.startsWith ('dotnet:array:')) - { - if (details.items === undefined) - { - const ret = details.map (p => p.value); - return ret; - } - if (details.dimensionsDetails == undefined || details.dimensionsDetails.length == 1) - { - const ret = details.items.map (p => p.value); - return ret; - } - } - - let proxy = {}; - Object.keys (details).forEach (p => { - var prop = details [p]; - if (prop.get !== undefined) { - Object.defineProperty (proxy, - prop.name, - { get () { return MONO.mono_wasm_send_dbg_command(prop.get.id, prop.get.commandSet, prop.get.command, prop.get.buffer, prop.get.length); }, - set: function (newValue) { MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id, prop.set.commandSet, prop.set.command, prop.set.buffer, prop.set.length, prop.set.valtype, newValue); return true;}} - ); - } else if (prop.set !== undefined ){ - Object.defineProperty (proxy, - prop.name, - { get () { return prop.value; }, - set: function (newValue) { MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id, prop.set.commandSet, prop.set.command, prop.set.buffer, prop.set.length, prop.set.valtype, newValue); return true;}} - ); - } else { - proxy [prop.name] = prop.value; - } - }); - return proxy; - },mono_wasm_call_function_on:function (request) { - if (request.arguments != undefined && !Array.isArray (request.arguments)) - throw new Error (`"arguments" should be an array, but was ${request.arguments}`); - - const objId = request.objectId; - const details = request.details; - let proxy; - - if (objId.startsWith ('dotnet:cfo_res:')) { - if (objId in this._call_function_res_cache) - proxy = this._call_function_res_cache [objId]; - else - throw new Error (`Unknown object id ${objId}`); - } else { - proxy = this._create_proxy_from_object_id (objId, details); - } - - const fn_args = request.arguments != undefined ? request.arguments.map(a => JSON.stringify(a.value)) : []; - const fn_eval_str = `var fn = ${request.functionDeclaration}; fn.call (proxy, ...[${fn_args}]);`; - - const fn_res = eval (fn_eval_str); - if (fn_res === undefined) - return { type: "undefined" }; - - if (Object (fn_res) !== fn_res) - { - if (typeof(fn_res) == "object" && fn_res == null) - return { type: typeof(fn_res), subtype: `${fn_res}`, value: null }; - return { type: typeof(fn_res), description: `${fn_res}`, value: `${fn_res}`}; - } - - if (request.returnByValue && fn_res.subtype == undefined) - return {type: "object", value: fn_res}; - if (Object.getPrototypeOf (fn_res) == Array.prototype) { - - const fn_res_id = this._cache_call_function_res (fn_res); - - return { - type: "object", - subtype: "array", - className: "Array", - description: `Array(${fn_res.length})`, - objectId: fn_res_id - }; - } - if (fn_res.value !== undefined || fn_res.subtype !== undefined) { - return fn_res; - } - - if (fn_res == proxy) - return { type: "object", className: "Object", description: "Object", objectId: objId }; - const fn_res_id = this._cache_call_function_res (fn_res); - return { type: "object", className: "Object", description: "Object", objectId: fn_res_id }; - },_clear_per_step_state:function () { - this._next_id_var = 0; - this._id_table = {}; - },mono_wasm_debugger_resume:function () { - this._clear_per_step_state (); - },mono_wasm_detach_debugger:function () { - if (!this.mono_wasm_set_is_debugger_attached) - this.mono_wasm_set_is_debugger_attached = Module.cwrap ('mono_wasm_set_is_debugger_attached', 'void', ['bool']); - this.mono_wasm_set_is_debugger_attached(false); - },_register_c_fn:function (name, ...args) { - Object.defineProperty (this._c_fn_table, name + '_wrapper', { value: Module.cwrap (name, ...args) }); - },_register_c_var_fn:function (name, ret_type, params) { - if (ret_type !== 'bool') - throw new Error (`Bug: Expected a C function signature that returns bool`); - - this._register_c_fn (name, ret_type, params); - Object.defineProperty (this, name + '_info', { - value: function (...args) { - MONO.var_info = []; - const res_ok = MONO._c_fn_table [name + '_wrapper'] (...args); - let res = MONO.var_info; - MONO.var_info = []; - if (res_ok) { - res = this._fixup_name_value_objects (res); - return { res_ok, res }; - } - - return { res_ok, res: undefined }; - } - }); - },mono_wasm_runtime_ready:function () { - MONO.commands_received = new Map(); - MONO.commands_received.remove = function (key) { const value = this.get(key); this.delete(key); return value;}; - this.mono_wasm_runtime_is_ready = true; - this._clear_per_step_state (); - - // FIXME: where should this go? - this._next_call_function_res_id = 0; - this._call_function_res_cache = {}; - - this._c_fn_table = {}; - this._register_c_fn ('mono_wasm_send_dbg_command', 'bool', [ 'number', 'number', 'number', 'number', 'number' ]); - this._register_c_fn ('mono_wasm_send_dbg_command_with_parms', 'bool', [ 'number', 'number', 'number', 'number', 'number', 'number', 'string' ]); - this._debugger_buffer_len = -1; - // DO NOT REMOVE - magic debugger init function - if (globalThis.dotnetDebugger) - debugger; - else - console.debug ("mono_wasm_runtime_ready", "fe00e07a-5519-4dfe-b35a-f867dbaf2e28"); - },mono_wasm_setenv:function (name, value) { - if (!this.wasm_setenv) - this.wasm_setenv = Module.cwrap ('mono_wasm_setenv', null, ['string', 'string']); - this.wasm_setenv (name, value); - },mono_wasm_set_runtime_options:function (options) { - if (!this.wasm_parse_runtime_options) - this.wasm_parse_runtime_options = Module.cwrap ('mono_wasm_parse_runtime_options', null, ['number', 'number']); - var argv = Module._malloc (options.length * 4); - var wasm_strdup = Module.cwrap ('mono_wasm_strdup', 'number', ['string']); - let aindex = 0; - for (var i = 0; i < options.length; ++i) { - Module.setValue (argv + (aindex * 4), wasm_strdup (options [i]), "i32"); - aindex += 1; - } - this.wasm_parse_runtime_options (options.length, argv); - },mono_wasm_init_aot_profiler:function (options) { - if (options == null) - options = {} - if (!('write_at' in options)) - options.write_at = 'Interop/Runtime::StopProfile'; - if (!('send_to' in options)) - options.send_to = 'Interop/Runtime::DumpAotProfileData'; - var arg = "aot:write-at-method=" + options.write_at + ",send-to-method=" + options.send_to; - Module.ccall ('mono_wasm_load_profiler_aot', null, ['string'], [arg]); - },mono_wasm_init_coverage_profiler:function (options) { - if (options == null) - options = {} - if (!('write_at' in options)) - options.write_at = 'WebAssembly.Runtime::StopProfile'; - if (!('send_to' in options)) - options.send_to = 'WebAssembly.Runtime::DumpCoverageProfileData'; - var arg = "coverage:write-at-method=" + options.write_at + ",send-to-method=" + options.send_to; - Module.ccall ('mono_wasm_load_profiler_coverage', null, ['string'], [arg]); - },_apply_configuration_from_args:function (args) { - for (var k in (args.environment_variables || {})) - MONO.mono_wasm_setenv (k, args.environment_variables[k]); - - if (args.runtime_options) - MONO.mono_wasm_set_runtime_options (args.runtime_options); - - if (args.aot_profiler_options) - MONO.mono_wasm_init_aot_profiler (args.aot_profiler_options); - - if (args.coverage_profiler_options) - MONO.mono_wasm_init_coverage_profiler (args.coverage_profiler_options); - },_get_fetch_file_cb_from_args:function (args) { - if (typeof (args.fetch_file_cb) === "function") - return args.fetch_file_cb; - - if (ENVIRONMENT_IS_NODE) { - var fs = require('fs'); - return function (asset) { - console.debug ("MONO_WASM: Loading... " + asset); - var binary = fs.readFileSync (asset); - var resolve_func2 = function (resolve, reject) { - resolve (new Uint8Array (binary)); - }; - - var resolve_func1 = function (resolve, reject) { - var response = { - ok: true, - url: asset, - arrayBuffer: function () { - return new Promise (resolve_func2); - } - }; - resolve (response); - }; - - return new Promise (resolve_func1); - }; - } else if (typeof (fetch) === "function") { - return function (asset) { - return fetch (asset, { credentials: 'same-origin' }); - }; - } else { - throw new Error ("No fetch_file_cb was provided and this environment does not expose 'fetch'."); - } - },_handle_loaded_asset:function (ctx, asset, url, blob) { - var bytes = new Uint8Array (blob); - if (ctx.tracing) - console.log ("MONO_WASM: Loaded:", asset.name, "size", bytes.length, "from", url); - - var virtualName = asset.virtual_path || asset.name; - var offset = null; - - switch (asset.behavior) { - case "resource": - case "assembly": - ctx.loaded_files.push ({ url: url, file: virtualName}); - case "heap": - case "icu": - offset = this.mono_wasm_load_bytes_into_heap (bytes); - ctx.loaded_assets[virtualName] = [offset, bytes.length]; - break; - - case "vfs": - // FIXME - var lastSlash = virtualName.lastIndexOf("/"); - var parentDirectory = (lastSlash > 0) - ? virtualName.substr(0, lastSlash) - : null; - var fileName = (lastSlash > 0) - ? virtualName.substr(lastSlash + 1) - : virtualName; - if (fileName.startsWith("/")) - fileName = fileName.substr(1); - if (parentDirectory) { - if (ctx.tracing) - console.log ("MONO_WASM: Creating directory '" + parentDirectory + "'"); - - var pathRet = ctx.createPath( - "/", parentDirectory, true, true // fixme: should canWrite be false? - ); - } else { - parentDirectory = "/"; - } - - if (ctx.tracing) - console.log ("MONO_WASM: Creating file '" + fileName + "' in directory '" + parentDirectory + "'"); - - if (!this.mono_wasm_load_data_archive (bytes, parentDirectory)) { - var fileRet = ctx.createDataFile ( - parentDirectory, fileName, - bytes, true /* canRead */, true /* canWrite */, true /* canOwn */ - ); - } - break; - - default: - throw new Error ("Unrecognized asset behavior:", asset.behavior, "for asset", asset.name); - } - - if (asset.behavior === "assembly") { - var hasPpdb = ctx.mono_wasm_add_assembly (virtualName, offset, bytes.length); - - if (!hasPpdb) { - var index = ctx.loaded_files.findIndex(element => element.file == virtualName); - ctx.loaded_files.splice(index, 1); - } - } - else if (asset.behavior === "icu") { - if (this.mono_wasm_load_icu_data (offset)) - ctx.num_icu_assets_loaded_successfully += 1; - else - console.error ("Error loading ICU asset", asset.name); - } - else if (asset.behavior === "resource") { - ctx.mono_wasm_add_satellite_assembly (virtualName, asset.culture, offset, bytes.length); - } - },mono_load_runtime_and_bcl:function ( - unused_vfs_prefix, deploy_prefix, debug_level, file_list, loaded_cb, fetch_file_cb - ) { - var args = { - fetch_file_cb: fetch_file_cb, - loaded_cb: loaded_cb, - debug_level: debug_level, - assembly_root: deploy_prefix, - assets: [] - }; - - for (var i = 0; i < file_list.length; i++) { - var file_name = file_list[i]; - var behavior; - if (file_name.startsWith ("icudt") && file_name.endsWith (".dat")) { - // ICU data files are expected to be "icudt%FilterName%.dat" - behavior = "icu"; - } else { // if (file_name.endsWith (".pdb") || file_name.endsWith (".dll")) - behavior = "assembly"; - } - - args.assets.push ({ - name: file_name, - behavior: behavior - }); - } - - return this.mono_load_runtime_and_bcl_args (args); - },mono_load_runtime_and_bcl_args:function (args) { - try { - return this._load_assets_and_runtime (args); - } catch (exc) { - console.error ("error in mono_load_runtime_and_bcl_args:", exc); - throw exc; - } - },mono_wasm_load_bytes_into_heap:function (bytes) { - var memoryOffset = Module._malloc (bytes.length); - var heapBytes = new Uint8Array (Module.HEAPU8.buffer, memoryOffset, bytes.length); - heapBytes.set (bytes); - return memoryOffset; - },num_icu_assets_loaded_successfully:0,mono_wasm_load_icu_data:function (offset) { - var fn = Module.cwrap ('mono_wasm_load_icu_data', 'number', ['number']); - var ok = (fn (offset)) === 1; - if (ok) - this.num_icu_assets_loaded_successfully++; - return ok; - },mono_wasm_get_icudt_name:function (culture) { - return Module.ccall ('mono_wasm_get_icudt_name', 'string', ['string'], [culture]); - },_finalize_startup:function (args, ctx) { - var loaded_files_with_debug_info = []; - - MONO.loaded_assets = ctx.loaded_assets; - ctx.loaded_files.forEach(value => loaded_files_with_debug_info.push(value.url)); - MONO.loaded_files = loaded_files_with_debug_info; - if (ctx.tracing) { - console.log ("MONO_WASM: loaded_assets: " + JSON.stringify(ctx.loaded_assets)); - console.log ("MONO_WASM: loaded_files: " + JSON.stringify(ctx.loaded_files)); - } - - var load_runtime = Module.cwrap ('mono_wasm_load_runtime', null, ['string', 'number']); - - console.debug ("MONO_WASM: Initializing mono runtime"); - - this.mono_wasm_globalization_init (args.globalization_mode); - - if (ENVIRONMENT_IS_SHELL || ENVIRONMENT_IS_NODE) { - try { - load_runtime ("unused", args.debug_level); - } catch (ex) { - print ("MONO_WASM: load_runtime () failed: " + ex); - print ("MONO_WASM: Stacktrace: \n"); - print (ex.stack); - - var wasm_exit = Module.cwrap ('mono_wasm_exit', null, ['number']); - wasm_exit (1); - } - } else { - load_runtime ("unused", args.debug_level); - } - - let tz; - try { - tz = Intl.DateTimeFormat().resolvedOptions().timeZone; - } catch {} - MONO.mono_wasm_setenv ("TZ", tz || "UTC"); - MONO.mono_wasm_runtime_ready (); - args.loaded_cb (); - },_load_assets_and_runtime:function (args) { - if (args.enable_debugging) - args.debug_level = args.enable_debugging; - if (args.assembly_list) - throw new Error ("Invalid args (assembly_list was replaced by assets)"); - if (args.runtime_assets) - throw new Error ("Invalid args (runtime_assets was replaced by assets)"); - if (args.runtime_asset_sources) - throw new Error ("Invalid args (runtime_asset_sources was replaced by remote_sources)"); - if (!args.loaded_cb) - throw new Error ("loaded_cb not provided"); - - var ctx = { - tracing: args.diagnostic_tracing || false, - pending_count: args.assets.length, - mono_wasm_add_assembly: Module.cwrap ('mono_wasm_add_assembly', 'number', ['string', 'number', 'number']), - mono_wasm_add_satellite_assembly: Module.cwrap ('mono_wasm_add_satellite_assembly', 'void', ['string', 'string', 'number', 'number']), - loaded_assets: Object.create (null), - // dlls and pdbs, used by blazor and the debugger - loaded_files: [], - createPath: Module['FS_createPath'], - createDataFile: Module['FS_createDataFile'] - }; - - if (ctx.tracing) - console.log ("mono_wasm_load_runtime_with_args", JSON.stringify(args)); - - this._apply_configuration_from_args (args); - - var fetch_file_cb = this._get_fetch_file_cb_from_args (args); - - var onPendingRequestComplete = function () { - --ctx.pending_count; - - if (ctx.pending_count === 0) { - try { - MONO._finalize_startup (args, ctx); - } catch (exc) { - console.error ("Unhandled exception in _finalize_startup", exc); - throw exc; - } - } - }; - - var processFetchResponseBuffer = function (asset, url, blob) { - try { - MONO._handle_loaded_asset (ctx, asset, url, blob); - } catch (exc) { - console.error ("Unhandled exception in processFetchResponseBuffer", exc); - throw exc; - } finally { - onPendingRequestComplete (); - } - }; - - args.assets.forEach (function (asset) { - var attemptNextSource; - var sourceIndex = 0; - var sourcesList = asset.load_remote ? args.remote_sources : [""]; - - var handleFetchResponse = function (response) { - if (!response.ok) { - try { - attemptNextSource (); - return; - } catch (exc) { - console.error ("MONO_WASM: Unhandled exception in handleFetchResponse attemptNextSource for asset", asset.name, exc); - throw exc; - } - } - - try { - var bufferPromise = response ['arrayBuffer'] (); - bufferPromise.then (processFetchResponseBuffer.bind (this, asset, response.url)); - } catch (exc) { - console.error ("MONO_WASM: Unhandled exception in handleFetchResponse for asset", asset.name, exc); - attemptNextSource (); - } - }; - - attemptNextSource = function () { - if (sourceIndex >= sourcesList.length) { - var msg = "MONO_WASM: Failed to load " + asset.name; - try { - var isOk = asset.is_optional || - (asset.name.match (/\.pdb$/) && MONO.mono_wasm_ignore_pdb_load_errors); - - if (isOk) - console.debug (msg); - else { - console.error (msg); - throw new Error (msg); - } - } finally { - onPendingRequestComplete (); - } - } - - var sourcePrefix = sourcesList[sourceIndex]; - sourceIndex++; - - // HACK: Special-case because MSBuild doesn't allow "" as an attribute - if (sourcePrefix === "./") - sourcePrefix = ""; - - var attemptUrl; - if (sourcePrefix.trim() === "") { - if (asset.behavior === "assembly") - attemptUrl = locateFile (args.assembly_root + "/" + asset.name); - else if (asset.behavior === "resource") { - var path = asset.culture !== '' ? `${asset.culture}/${asset.name}` : asset.name; - attemptUrl = locateFile (args.assembly_root + "/" + path); - } - else - attemptUrl = asset.name; - } else { - attemptUrl = sourcePrefix + asset.name; - } - - try { - if (asset.name === attemptUrl) { - if (ctx.tracing) - console.log ("Attempting to fetch '%s'", attemptUrl); - } else { - if (ctx.tracing) - console.log ("Attempting to fetch '%s' for '%s'", attemptUrl, asset.name); - } - var fetch_promise = fetch_file_cb (attemptUrl); - fetch_promise.then (handleFetchResponse); - } catch (exc) { - console.error ("MONO_WASM: Error fetching '%s'\n%s", attemptUrl, exc); - attemptNextSource (); - } - }; - - attemptNextSource (); - }); - },mono_wasm_globalization_init:function (globalization_mode) { - var invariantMode = false; - - if (globalization_mode === "invariant") - invariantMode = true; - - if (!invariantMode) { - if (this.num_icu_assets_loaded_successfully > 0) { - console.debug ("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode"); - } else if (globalization_mode !== "icu") { - console.debug ("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode"); - invariantMode = true; - } else { - var msg = "invariant globalization mode is inactive and no ICU data archives were loaded"; - console.error ("MONO_WASM: ERROR: " + msg); - throw new Error (msg); - } - } - - if (invariantMode) - this.mono_wasm_setenv ("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT", "1"); - - // Set globalization mode to PredefinedCulturesOnly - this.mono_wasm_setenv ("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY", "1"); - },mono_wasm_get_loaded_files:function() { - if (!this.mono_wasm_set_is_debugger_attached) - this.mono_wasm_set_is_debugger_attached = Module.cwrap ('mono_wasm_set_is_debugger_attached', 'void', ['bool']); - this.mono_wasm_set_is_debugger_attached (true); - return MONO.loaded_files; - },mono_wasm_get_loaded_asset_table:function() { - return MONO.loaded_assets; - },_base64_to_uint8:function (base64String) { - const byteCharacters = atob (base64String); - const byteNumbers = new Array(byteCharacters.length); - for (let i = 0; i < byteCharacters.length; i++) { - byteNumbers[i] = byteCharacters.charCodeAt(i); - } - - return new Uint8Array (byteNumbers); - },mono_wasm_load_data_archive:function (data, prefix) { - if (data.length < 8) - return false; - - var dataview = new DataView(data.buffer); - var magic = dataview.getUint32(0, true); - // get magic number - if (magic != 0x626c6174) { - return false; - } - var manifestSize = dataview.getUint32(4, true); - if (manifestSize == 0 || data.length < manifestSize + 8) - return false; - - var manifest; - try { - manifestContent = Module.UTF8ArrayToString(data, 8, manifestSize); - manifest = JSON.parse(manifestContent); - if (!(manifest instanceof Array)) - return false; - } catch (exc) { - return false; - } - - data = data.slice(manifestSize+8); - - // Create the folder structure - // /usr/share/zoneinfo - // /usr/share/zoneinfo/Africa - // /usr/share/zoneinfo/Asia - // .. - - var folders = new Set() - manifest.filter(m => { - var file = m[0]; - var last = file.lastIndexOf ("/"); - var directory = file.slice (0, last+1); - folders.add(directory); - }); - folders.forEach(folder => { - Module['FS_createPath'](prefix, folder, true, true); - }); - - for (row of manifest) { - var name = row[0]; - var length = row[1]; - var bytes = data.slice(0, length); - Module['FS_createDataFile'](prefix, name, bytes, true, true); - data = data.slice(length); - } - return true; - },mono_wasm_raise_debug_event:function(event, args={}) { - if (typeof event !== 'object') - throw new Error(`event must be an object, but got ${JSON.stringify(event)}`); - - if (event.eventName === undefined) - throw new Error(`event.eventName is a required parameter, in event: ${JSON.stringify(event)}`); - - if (typeof args !== 'object') - throw new Error(`args must be an object, but got ${JSON.stringify(args)}`); - - console.debug('mono_wasm_debug_event_raised:aef14bca-5519-4dfe-b35a-f867abc123ae', JSON.stringify(event), JSON.stringify(args)); - },mono_wasm_load_config:async function (configFilePath) { - Module.addRunDependency(configFilePath); - try { - let config = null; - // NOTE: when we add nodejs make sure to include the nodejs fetch package - if (ENVIRONMENT_IS_WEB) { - const configRaw = await fetch(configFilePath); - config = await configRaw.json(); - }else if (ENVIRONMENT_IS_NODE) { - config = require(configFilePath); - } else { // shell or worker - config = JSON.parse(read(configFilePath)); // read is a v8 debugger command - } - Module.config = config; - } catch(e) { - Module.config = {message: "failed to load config file", error: e}; - } finally { - Module.removeRunDependency(configFilePath); - } - },mono_wasm_set_timeout_exec:function(id){ - if (!this.mono_set_timeout_exec) - this.mono_set_timeout_exec = Module.cwrap ("mono_set_timeout_exec", null, [ 'number' ]); - this.mono_set_timeout_exec (id); - },prevent_timer_throttling:function () { - // this will schedule timers every second for next 6 minutes, it should be called from WebSocket event, to make it work - // on next call, it would only extend the timers to cover yet uncovered future - let now = new Date().valueOf(); - const desired_reach_time = now + (1000 * 60 * 6); - const next_reach_time = Math.max(now + 1000, this.spread_timers_maximum); - const light_throttling_frequency = 1000; - for (var schedule = next_reach_time; schedule < desired_reach_time; schedule += light_throttling_frequency) { - const delay = schedule - now; - setTimeout(() => { - this.mono_wasm_set_timeout_exec(0); - MONO.pump_count++; - MONO.pump_message(); - }, delay); - } - this.spread_timers_maximum = desired_reach_time; - }}; - function _mono_set_timeout(timeout, id) { - - if (typeof globalThis.setTimeout === 'function') { - if (MONO.lastScheduleTimeoutId) { - globalThis.clearTimeout(MONO.lastScheduleTimeoutId); - MONO.lastScheduleTimeoutId = undefined; - } - MONO.lastScheduleTimeoutId = globalThis.setTimeout(function mono_wasm_set_timeout_exec () { - MONO.mono_wasm_set_timeout_exec(id); - }, timeout); - } else { - ++MONO.pump_count; - MONO.timeout_queue.push(function() { - MONO.mono_wasm_set_timeout_exec (id); - }) - } - } - - var BINDING={BINDING_ASM:"[System.Private.Runtime.InteropServices.JavaScript]System.Runtime.InteropServices.JavaScript.Runtime",_cs_owned_objects_by_js_handle:[],_js_handle_free_list:[],_next_js_handle:1,mono_wasm_marshal_enum_as_int:true,mono_bindings_init:function (binding_asm) { - this.BINDING_ASM = binding_asm; - },export_functions:function (module) { - module ["mono_bindings_init"] = BINDING.mono_bindings_init.bind(BINDING); - module ["mono_bind_method"] = BINDING.bind_method.bind(BINDING); - module ["mono_method_invoke"] = BINDING.call_method.bind(BINDING); - module ["mono_method_get_call_signature"] = BINDING.mono_method_get_call_signature.bind(BINDING); - module ["mono_method_resolve"] = BINDING.resolve_method_fqn.bind(BINDING); - module ["mono_bind_static_method"] = BINDING.bind_static_method.bind(BINDING); - module ["mono_call_static_method"] = BINDING.call_static_method.bind(BINDING); - module ["mono_bind_assembly_entry_point"] = BINDING.bind_assembly_entry_point.bind(BINDING); - module ["mono_call_assembly_entry_point"] = BINDING.call_assembly_entry_point.bind(BINDING); - module ["mono_intern_string"] = BINDING.mono_intern_string.bind(BINDING); - },bindings_lazy_init:function () { - if (this.init) - return; - - // avoid infinite recursion - this.init = true; - this.wasm_type_symbol = Symbol.for("wasm type"); - this.js_owned_gc_handle_symbol = Symbol.for("wasm js_owned_gc_handle"); - this.cs_owned_js_handle_symbol = Symbol.for("wasm cs_owned_js_handle"); - this.delegate_invoke_symbol = Symbol.for("wasm delegate_invoke"); - this.delegate_invoke_signature_symbol = Symbol.for("wasm delegate_invoke_signature"); - this.listener_registration_count_symbol = Symbol.for("wasm listener_registration_count"); - - // please keep System.Runtime.InteropServices.JavaScript.Runtime.MappedType in sync - Object.prototype[this.wasm_type_symbol] = 0; - Array.prototype[this.wasm_type_symbol] = 1; - ArrayBuffer.prototype[this.wasm_type_symbol] = 2; - DataView.prototype[this.wasm_type_symbol] = 3; - Function.prototype[this.wasm_type_symbol] = 4; - Map.prototype[this.wasm_type_symbol] = 5; - if (typeof SharedArrayBuffer !== 'undefined') - SharedArrayBuffer.prototype[this.wasm_type_symbol] = 6; - Int8Array.prototype[this.wasm_type_symbol] = 10; - Uint8Array.prototype[this.wasm_type_symbol] = 11; - Uint8ClampedArray.prototype[this.wasm_type_symbol] = 12; - Int16Array.prototype[this.wasm_type_symbol] = 13; - Uint16Array.prototype[this.wasm_type_symbol] = 14; - Int32Array.prototype[this.wasm_type_symbol] = 15; - Uint32Array.prototype[this.wasm_type_symbol] = 16; - Float32Array.prototype[this.wasm_type_symbol] = 17; - Float64Array.prototype[this.wasm_type_symbol] = 18; - - this.assembly_load = Module.cwrap ('mono_wasm_assembly_load', 'number', ['string']); - this.find_corlib_class = Module.cwrap ('mono_wasm_find_corlib_class', 'number', ['string', 'string']); - this.find_class = Module.cwrap ('mono_wasm_assembly_find_class', 'number', ['number', 'string', 'string']); - this._find_method = Module.cwrap ('mono_wasm_assembly_find_method', 'number', ['number', 'string', 'number']); - this.invoke_method = Module.cwrap ('mono_wasm_invoke_method', 'number', ['number', 'number', 'number', 'number']); - this.mono_string_get_utf8 = Module.cwrap ('mono_wasm_string_get_utf8', 'number', ['number']); - this.mono_wasm_string_from_utf16 = Module.cwrap ('mono_wasm_string_from_utf16', 'number', ['number', 'number']); - this.mono_get_obj_type = Module.cwrap ('mono_wasm_get_obj_type', 'number', ['number']); - this.mono_array_length = Module.cwrap ('mono_wasm_array_length', 'number', ['number']); - this.mono_array_get = Module.cwrap ('mono_wasm_array_get', 'number', ['number', 'number']); - this.mono_obj_array_new = Module.cwrap ('mono_wasm_obj_array_new', 'number', ['number']); - this.mono_obj_array_set = Module.cwrap ('mono_wasm_obj_array_set', 'void', ['number', 'number', 'number']); - this.mono_wasm_register_bundled_satellite_assemblies = Module.cwrap ('mono_wasm_register_bundled_satellite_assemblies', 'void', [ ]); - this.mono_wasm_try_unbox_primitive_and_get_type = Module.cwrap ('mono_wasm_try_unbox_primitive_and_get_type', 'number', ['number', 'number']); - this.mono_wasm_box_primitive = Module.cwrap ('mono_wasm_box_primitive', 'number', ['number', 'number', 'number']); - this.mono_wasm_intern_string = Module.cwrap ('mono_wasm_intern_string', 'number', ['number']); - this.assembly_get_entry_point = Module.cwrap ('mono_wasm_assembly_get_entry_point', 'number', ['number']); - this.mono_wasm_get_delegate_invoke = Module.cwrap ('mono_wasm_get_delegate_invoke', 'number', ['number']); - this.mono_wasm_string_array_new = Module.cwrap ('mono_wasm_string_array_new', 'number', ['number']); - - this._box_buffer = Module._malloc(16); - this._unbox_buffer = Module._malloc(16); - this._class_int32 = this.find_corlib_class ("System", "Int32"); - this._class_uint32 = this.find_corlib_class ("System", "UInt32"); - this._class_double = this.find_corlib_class ("System", "Double"); - this._class_boolean = this.find_corlib_class ("System", "Boolean"); - - // receives a byteoffset into allocated Heap with a size. - this.mono_typed_array_new = Module.cwrap ('mono_wasm_typed_array_new', 'number', ['number','number','number','number']); - - var binding_fqn_asm = this.BINDING_ASM.substring(this.BINDING_ASM.indexOf ("[") + 1, this.BINDING_ASM.indexOf ("]")).trim(); - var binding_fqn_class = this.BINDING_ASM.substring (this.BINDING_ASM.indexOf ("]") + 1).trim(); - - this.binding_module = this.assembly_load (binding_fqn_asm); - if (!this.binding_module) - throw "Can't find bindings module assembly: " + binding_fqn_asm; - - var namespace = null, classname = null; - if (binding_fqn_class !== null && typeof binding_fqn_class !== "undefined") - { - namespace = "System.Runtime.InteropServices.JavaScript"; - classname = binding_fqn_class.length > 0 ? binding_fqn_class : "Runtime"; - if (binding_fqn_class.indexOf(".") != -1) { - var idx = binding_fqn_class.lastIndexOf("."); - namespace = binding_fqn_class.substring (0, idx); - classname = binding_fqn_class.substring (idx + 1); - } - } - - var wasm_runtime_class = this.find_class (this.binding_module, namespace, classname); - if (!wasm_runtime_class) - throw "Can't find " + binding_fqn_class + " class"; - - var get_method = function(method_name) { - var res = BINDING.find_method (wasm_runtime_class, method_name, -1); - if (!res) - throw "Can't find method " + namespace + "." + classname + ":" + method_name; - return res; - }; - - var bind_runtime_method = function (method_name, signature) { - var method = get_method (method_name); - return BINDING.bind_method (method, 0, signature, "BINDINGS_" + method_name); - }; - - this.get_call_sig = get_method ("GetCallSignature"); - - // NOTE: The bound methods have a _ prefix on their names to ensure - // that any code relying on the old get_method/call_method pattern will - // break in a more understandable way. - - this._get_cs_owned_object_by_js_handle = bind_runtime_method ("GetCSOwnedObjectByJSHandle", "ii!"); - this._get_cs_owned_object_js_handle = bind_runtime_method ("GetCSOwnedObjectJSHandle", 'mi'); - this._try_get_cs_owned_object_js_handle = bind_runtime_method ("TryGetCSOwnedObjectJSHandle", "mi"); - this._create_cs_owned_proxy = bind_runtime_method ("CreateCSOwnedProxy", "iii!"); - - this._get_js_owned_object_by_gc_handle = bind_runtime_method ("GetJSOwnedObjectByGCHandle", "i!"); - this._get_js_owned_object_gc_handle = bind_runtime_method ("GetJSOwnedObjectGCHandle", "m"); - this._release_js_owned_object_by_gc_handle = bind_runtime_method ("ReleaseJSOwnedObjectByGCHandle", "i"); - - this._create_tcs = bind_runtime_method ("CreateTaskSource",""); - this._set_tcs_result = bind_runtime_method ("SetTaskSourceResult","io"); - this._set_tcs_failure = bind_runtime_method ("SetTaskSourceFailure","is"); - this._get_tcs_task = bind_runtime_method ("GetTaskSourceTask","i!"); - this._setup_js_cont = bind_runtime_method ("SetupJSContinuation", "mo"); - - this._object_to_string = bind_runtime_method ("ObjectToString", "m"); - this._get_date_value = bind_runtime_method ("GetDateValue", "m"); - this._create_date_time = bind_runtime_method ("CreateDateTime", "d!"); - this._create_uri = bind_runtime_method ("CreateUri","s!"); - this._is_simple_array = bind_runtime_method ("IsSimpleArray", "m"); - - this._are_promises_supported = ((typeof Promise === "object") || (typeof Promise === "function")) && (typeof Promise.resolve === "function"); - this.isThenable = (js_obj) => { - // When using an external Promise library like Bluebird the Promise.resolve may not be sufficient - // to identify the object as a Promise. - return Promise.resolve(js_obj) === js_obj || - ((typeof js_obj === "object" || typeof js_obj === "function") && typeof js_obj.then === "function") - }; - this.isChromium = false; - if (globalThis.navigator) { - var nav = globalThis.navigator; - if (nav.userAgentData && nav.userAgentData.brands) { - this.isChromium = nav.userAgentData.brands.some((i) => i.brand == 'Chromium'); - } - else if (globalThis.navigator.userAgent) { - this.isChromium = nav.userAgent.includes("Chrome"); - } - } - - this._empty_string = ""; - this._empty_string_ptr = 0; - this._interned_string_full_root_buffers = []; - this._interned_string_current_root_buffer = null; - this._interned_string_current_root_buffer_count = 0; - this._interned_js_string_table = new Map (); - - this._js_owned_object_table = new Map (); - // NOTE: FinalizationRegistry and WeakRef are missing on Safari below 14.1 - this._use_finalization_registry = typeof globalThis.FinalizationRegistry === "function"; - this._use_weak_ref = typeof globalThis.WeakRef === "function"; - - if (this._use_finalization_registry) { - this._js_owned_object_registry = new globalThis.FinalizationRegistry(this._js_owned_object_finalized.bind(this)); - } - },_js_owned_object_finalized:function (gc_handle) { - // The JS object associated with this gc_handle has been collected by the JS GC. - // As such, it's not possible for this gc_handle to be invoked by JS anymore, so - // we can release the tracking weakref (it's null now, by definition), - // and tell the C# side to stop holding a reference to the managed object. - this._js_owned_object_table.delete(gc_handle); - this._release_js_owned_object_by_gc_handle(gc_handle); - },_lookup_js_owned_object:function (gc_handle) { - if (!gc_handle) - return null; - var wr = this._js_owned_object_table.get(gc_handle); - if (wr) { - return wr.deref(); - // TODO: could this be null before _js_owned_object_finalized was called ? - // TODO: are there race condition consequences ? - } - return null; - },_register_js_owned_object:function (gc_handle, js_obj) { - var wr; - if (this._use_weak_ref) { - wr = new WeakRef(js_obj); - } - else { - // this is trivial WeakRef replacement, which holds strong refrence, instead of weak one, when the browser doesn't support it - wr = { - deref: () => { - return js_obj; - } - } - } - - this._js_owned_object_table.set(gc_handle, wr); - },_wrap_js_thenable_as_task:function (thenable) { - this.bindings_lazy_init (); - if (!thenable) - return null; - - // hold strong JS reference to thenable while in flight - // ideally, this should be hold alive by lifespan of the resulting C# Task, but this is good cheap aproximation - var thenable_js_handle = BINDING.mono_wasm_get_js_handle(thenable); - - // Note that we do not implement promise/task roundtrip. - // With more complexity we could recover original instance when this Task is marshaled back to JS. - // TODO optimization: return the tcs.Task on this same call instead of _get_tcs_task - const tcs_gc_handle = this._create_tcs(); - thenable.then ((result) => { - this._set_tcs_result(tcs_gc_handle, result); - // let go of the thenable reference - this._mono_wasm_release_js_handle(thenable_js_handle); - - // when FinalizationRegistry is not supported by this browser, we will do immediate cleanup after use - if (!this._use_finalization_registry) { - this._release_js_owned_object_by_gc_handle(tcs_gc_handle); - } - }, (reason) => { - this._set_tcs_failure(tcs_gc_handle, reason ? reason.toString() : ""); - // let go of the thenable reference - this._mono_wasm_release_js_handle(thenable_js_handle); - - // when FinalizationRegistry is not supported by this browser, we will do immediate cleanup after use - if (!this._use_finalization_registry) { - this._release_js_owned_object_by_gc_handle(tcs_gc_handle); - } - }); - - // collect the TaskCompletionSource with its Task after js doesn't hold the thenable anymore - if (this._use_finalization_registry) { - this._js_owned_object_registry.register(thenable, tcs_gc_handle); - } - - // returns raw pointer to tcs.Task - return this._get_tcs_task(tcs_gc_handle); - },_unbox_task_root_as_promise:function (root) { - this.bindings_lazy_init (); - const self = this; - if (root.value === 0) - return null; - - if (!this._are_promises_supported) - throw new Error ("Promises are not supported thus 'System.Threading.Tasks.Task' can not work in this context."); - - // get strong reference to Task - const gc_handle = this._get_js_owned_object_gc_handle(root.value); - - // see if we have js owned instance for this gc_handle already - var result = this._lookup_js_owned_object(gc_handle); - - // If the promise for this gc_handle was already collected (or was never created) - if (!result) { - - var cont_obj = null; - // note that we do not implement promise/task roundtrip - // With more complexity we could recover original instance when this promise is marshaled back to C#. - var result = new Promise(function (resolve, reject) { - if (self._use_finalization_registry) { - cont_obj = { - resolve: resolve, - reject: reject - }; - } else { - // when FinalizationRegistry is not supported by this browser, we will do immediate cleanup after use - cont_obj = { - resolve: function () { - const res = resolve.apply(null, arguments); - self._js_owned_object_table.delete(gc_handle); - self._release_js_owned_object_by_gc_handle(gc_handle); - return res; - }, - reject: function () { - const res = reject.apply(null, arguments); - self._js_owned_object_table.delete(gc_handle); - self._release_js_owned_object_by_gc_handle(gc_handle); - return res; - } - }; - } - }); - - // register C# side of the continuation - this._setup_js_cont (root.value, cont_obj ); - - // register for GC of the Task after the JS side is done with the promise - if (this._use_finalization_registry) { - this._js_owned_object_registry.register(result, gc_handle); - } - - // register for instance reuse - this._register_js_owned_object(gc_handle, result); - } - - return result; - },_unbox_ref_type_root_as_js_object:function (root) { - this.bindings_lazy_init (); - if (root.value === 0) - return null; - - // this could be JSObject proxy of a js native object - // we don't need in-flight reference as we already have it rooted here - var js_handle = this._try_get_cs_owned_object_js_handle (root.value, false); - if (js_handle) { - if (js_handle===-1){ - throw new Error("Cannot access a disposed JSObject at " + root.value); - } - return this.mono_wasm_get_jsobj_from_js_handle(js_handle); - } - // otherwise this is C# only object - - // get strong reference to Object - const gc_handle = this._get_js_owned_object_gc_handle(root.value); - - // see if we have js owned instance for this gc_handle already - var result = this._lookup_js_owned_object(gc_handle); - - // If the JS object for this gc_handle was already collected (or was never created) - if (!result) { - result = {}; - - // keep the gc_handle so that we could easily convert it back to original C# object for roundtrip - result[BINDING.js_owned_gc_handle_symbol]=gc_handle; - - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry/WeakRef - if (this._use_finalization_registry) { - // register for GC of the C# object after the JS side is done with the object - this._js_owned_object_registry.register(result, gc_handle); - } - - // register for instance reuse - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry/WeakRef - this._register_js_owned_object(gc_handle, result); - } - - return result; - },_wrap_delegate_root_as_function:function (root) { - this.bindings_lazy_init (); - if (root.value === 0) - return null; - - // get strong reference to the Delegate - const gc_handle = this._get_js_owned_object_gc_handle(root.value); - return this._wrap_delegate_gc_handle_as_function(gc_handle); - },_wrap_delegate_gc_handle_as_function:function (gc_handle, after_listener_callback) { - this.bindings_lazy_init (); - - // see if we have js owned instance for this gc_handle already - var result = this._lookup_js_owned_object(gc_handle); - - // If the function for this gc_handle was already collected (or was never created) - if (!result) { - // note that we do not implement function/delegate roundtrip - result = function() { - const delegateRoot = MONO.mono_wasm_new_root (BINDING.get_js_owned_object_by_gc_handle(gc_handle)); - try { - const res = BINDING.call_method(result[BINDING.delegate_invoke_symbol], delegateRoot.value, result[BINDING.delegate_invoke_signature_symbol], arguments); - if (after_listener_callback) { - after_listener_callback(); - } - return res; - } finally { - delegateRoot.release(); - } - }; - - // bind the method - const delegateRoot = MONO.mono_wasm_new_root (BINDING.get_js_owned_object_by_gc_handle(gc_handle)); - try { - if (typeof result[BINDING.delegate_invoke_symbol] === "undefined"){ - result[BINDING.delegate_invoke_symbol] = BINDING.mono_wasm_get_delegate_invoke(delegateRoot.value); - if (!result[BINDING.delegate_invoke_symbol]){ - throw new Error("System.Delegate Invoke method can not be resolved."); - } - } - - if (typeof result[BINDING.delegate_invoke_signature_symbol] === "undefined"){ - result[BINDING.delegate_invoke_signature_symbol] = Module.mono_method_get_call_signature (result[BINDING.delegate_invoke_symbol], delegateRoot.value); - } - } finally { - delegateRoot.release(); - } - - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry. Except in case of EventListener where we cleanup after unregistration. - if (this._use_finalization_registry) { - // register for GC of the deleate after the JS side is done with the function - this._js_owned_object_registry.register(result, gc_handle); - } - - // register for instance reuse - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry/WeakRef. Except in case of EventListener where we cleanup after unregistration. - this._register_js_owned_object(gc_handle, result); - } - - return result; - },mono_intern_string:function (string) { - if (string.length === 0) - return this._empty_string; - - var ptr = this.js_string_to_mono_string_interned (string); - var result = MONO.interned_string_table.get (ptr); - return result; - },_store_string_in_intern_table:function (string, ptr, internIt) { - if (!ptr) - throw new Error ("null pointer passed to _store_string_in_intern_table"); - else if (typeof (ptr) !== "number") - throw new Error (`non-pointer passed to _store_string_in_intern_table: ${typeof(ptr)}`); - - const internBufferSize = 8192; - - if (this._interned_string_current_root_buffer_count >= internBufferSize) { - this._interned_string_full_root_buffers.push (this._interned_string_current_root_buffer); - this._interned_string_current_root_buffer = null; - } - if (!this._interned_string_current_root_buffer) { - this._interned_string_current_root_buffer = MONO.mono_wasm_new_root_buffer (internBufferSize, "interned strings"); - this._interned_string_current_root_buffer_count = 0; - } - - var rootBuffer = this._interned_string_current_root_buffer; - var index = this._interned_string_current_root_buffer_count++; - rootBuffer.set (index, ptr); - - // Store the managed string into the managed intern table. This can theoretically - // provide a different managed object than the one we passed in, so update our - // pointer (stored in the root) with the result. - if (internIt) - rootBuffer.set (index, ptr = this.mono_wasm_intern_string (ptr)); - - if (!ptr) - throw new Error ("mono_wasm_intern_string produced a null pointer"); - - this._interned_js_string_table.set (string, ptr); - if (!MONO.interned_string_table) - MONO.interned_string_table = new Map(); - MONO.interned_string_table.set (ptr, string); - - if ((string.length === 0) && !this._empty_string_ptr) - this._empty_string_ptr = ptr; - - return ptr; - },js_string_to_mono_string_interned:function (string) { - var text = (typeof (string) === "symbol") - ? (string.description || Symbol.keyFor(string) || "") - : string; - - if ((text.length === 0) && this._empty_string_ptr) - return this._empty_string_ptr; - - var ptr = this._interned_js_string_table.get (string); - if (ptr) - return ptr; - - ptr = this.js_string_to_mono_string_new (text); - ptr = this._store_string_in_intern_table (string, ptr, true); - - return ptr; - },js_string_to_mono_string:function (string) { - if (string === null) - return null; - else if (typeof (string) === "symbol") - return this.js_string_to_mono_string_interned (string); - else if (typeof (string) !== "string") - throw new Error ("Expected string argument, got "+ typeof (string)); - - // Always use an interned pointer for empty strings - if (string.length === 0) - return this.js_string_to_mono_string_interned (string); - - // Looking up large strings in the intern table will require the JS runtime to - // potentially hash them and then do full byte-by-byte comparisons, which is - // very expensive. Because we can not guarantee it won't happen, try to minimize - // the cost of this and prevent performance issues for large strings - if (string.length <= 256) { - var interned = this._interned_js_string_table.get (string); - if (interned) - return interned; - } - - return this.js_string_to_mono_string_new (string); - },js_string_to_mono_string_new:function (string) { - var buffer = Module._malloc ((string.length + 1) * 2); - var buffer16 = (buffer / 2) | 0; - for (var i = 0; i < string.length; i++) - Module.HEAP16[buffer16 + i] = string.charCodeAt (i); - Module.HEAP16[buffer16 + string.length] = 0; - var result = this.mono_wasm_string_from_utf16 (buffer, string.length); - Module._free (buffer); - return result; - },find_method:function (klass, name, n) { - var result = this._find_method(klass, name, n); - if (result) { - if (!this._method_descriptions) - this._method_descriptions = new Map(); - this._method_descriptions.set(result, name); - } - return result; - },get_js_obj:function (js_handle) { - if (js_handle > 0) - return this.mono_wasm_get_jsobj_from_js_handle(js_handle); - return null; - },_get_string_from_intern_table:function (mono_obj) { - if (!MONO.interned_string_table) - return undefined; - return MONO.interned_string_table.get (mono_obj); - },conv_string:function (mono_obj) { - return MONO.string_decoder.copy (mono_obj); - },is_nested_array:function (ele) { - return this._is_simple_array(ele); - },mono_array_to_js_array:function (mono_array) { - if (mono_array === 0) - return null; - - var arrayRoot = MONO.mono_wasm_new_root (mono_array); - try { - return this._mono_array_root_to_js_array (arrayRoot); - } finally { - arrayRoot.release(); - } - },_mono_array_root_to_js_array:function (arrayRoot) { - if (arrayRoot.value === 0) - return null; - - let elemRoot = MONO.mono_wasm_new_root (); - - try { - var len = this.mono_array_length (arrayRoot.value); - var res = new Array (len); - for (var i = 0; i < len; ++i) - { - elemRoot.value = this.mono_array_get (arrayRoot.value, i); - - if (this.is_nested_array (elemRoot.value)) - res[i] = this._mono_array_root_to_js_array (elemRoot); - else - res[i] = this._unbox_mono_obj_root (elemRoot); - } - } finally { - elemRoot.release (); - } - - return res; - },js_array_to_mono_array:function (js_array, asString, should_add_in_flight) { - var mono_array = asString ? this.mono_wasm_string_array_new (js_array.length) : this.mono_obj_array_new (js_array.length); - let [arrayRoot, elemRoot] = MONO.mono_wasm_new_roots ([mono_array, 0]); - - try { - for (var i = 0; i < js_array.length; ++i) { - var obj = js_array[i]; - if (asString) - obj = obj.toString (); - - elemRoot.value = this._js_to_mono_obj (should_add_in_flight, obj); - this.mono_obj_array_set (arrayRoot.value, i, elemRoot.value); - } - - return mono_array; - } finally { - MONO.mono_wasm_release_roots (arrayRoot, elemRoot); - } - },js_to_mono_obj:function (js_obj) { - return this._js_to_mono_obj(false, js_obj) - },unbox_mono_obj:function (mono_obj) { - if (mono_obj === 0) - return undefined; - - var root = MONO.mono_wasm_new_root (mono_obj); - try { - return this._unbox_mono_obj_root (root); - } finally { - root.release(); - } - },_unbox_cs_owned_root_as_js_object:function (root) { - // we don't need in-flight reference as we already have it rooted here - var js_handle = this._get_cs_owned_object_js_handle(root.value, false); - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - return js_obj; - },_unbox_mono_obj_root_with_known_nonprimitive_type:function (root, type) { - if (root.value === undefined) - throw new Error(`Expected a root but got ${root}`); - - //See MARSHAL_TYPE_ defines in driver.c - switch (type) { - case 26: // int64 - case 27: // uint64 - // TODO: Fix this once emscripten offers HEAPI64/HEAPU64 or can return them - throw new Error ("int64 not available"); - case 3: // string - case 29: // interned string - return this.conv_string (root.value); - case 4: //vts - throw new Error ("no idea on how to unbox value types"); - case 5: // delegate - return this._wrap_delegate_root_as_function (root); - case 6: // Task - return this._unbox_task_root_as_promise (root); - case 7: // ref type - return this._unbox_ref_type_root_as_js_object (root); - case 10: // arrays - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - throw new Error ("Marshalling of primitive arrays are not supported. Use the corresponding TypedArray instead."); - case 20: // clr .NET DateTime - var dateValue = this._get_date_value(root.value); - return new Date(dateValue); - case 21: // clr .NET DateTimeOffset - var dateoffsetValue = this._object_to_string (root.value); - return dateoffsetValue; - case 22: // clr .NET Uri - var uriValue = this._object_to_string (root.value); - return uriValue; - case 23: // clr .NET SafeHandle/JSObject - return this._unbox_cs_owned_root_as_js_object (root); - case 30: - return undefined; - default: - throw new Error (`no idea on how to unbox object kind ${type} at offset ${root.value} (root address is ${root.get_address()})`); - } - },_unbox_mono_obj_root:function (root) { - if (root.value === 0) - return undefined; - - var type = this.mono_wasm_try_unbox_primitive_and_get_type (root.value, this._unbox_buffer); - switch (type) { - case 1: // int - return Module.HEAP32[this._unbox_buffer / 4]; - case 25: // uint32 - return Module.HEAPU32[this._unbox_buffer / 4]; - case 24: // float32 - return Module.HEAPF32[this._unbox_buffer / 4]; - case 2: // float64 - return Module.HEAPF64[this._unbox_buffer / 8]; - case 8: // boolean - return (Module.HEAP32[this._unbox_buffer / 4]) !== 0; - case 28: // char - return String.fromCharCode(Module.HEAP32[this._unbox_buffer / 4]); - default: - return this._unbox_mono_obj_root_with_known_nonprimitive_type (root, type); - } - },js_typedarray_to_heap:function(typedArray){ - var numBytes = typedArray.length * typedArray.BYTES_PER_ELEMENT; - var ptr = Module._malloc(numBytes); - var heapBytes = new Uint8Array(Module.HEAPU8.buffer, ptr, numBytes); - heapBytes.set(new Uint8Array(typedArray.buffer, typedArray.byteOffset, numBytes)); - return heapBytes; - },_box_js_int:function (js_obj) { - Module.HEAP32[this._box_buffer / 4] = js_obj; - return this.mono_wasm_box_primitive (this._class_int32, this._box_buffer, 4); - },_box_js_uint:function (js_obj) { - Module.HEAPU32[this._box_buffer / 4] = js_obj; - return this.mono_wasm_box_primitive (this._class_uint32, this._box_buffer, 4); - },_box_js_double:function (js_obj) { - Module.HEAPF64[this._box_buffer / 8] = js_obj; - return this.mono_wasm_box_primitive (this._class_double, this._box_buffer, 8); - },_box_js_bool:function (js_obj) { - Module.HEAP32[this._box_buffer / 4] = js_obj ? 1 : 0; - return this.mono_wasm_box_primitive (this._class_boolean, this._box_buffer, 4); - },_js_to_mono_uri:function (should_add_in_flight, js_obj) { - this.bindings_lazy_init (); - - switch (true) { - case js_obj === null: - case typeof js_obj === "undefined": - return 0; - case typeof js_obj === "symbol": - case typeof js_obj === "string": - return this._create_uri(js_obj) - default: - return this._extract_mono_obj (should_add_in_flight, js_obj); - } - },_js_to_mono_obj:function (should_add_in_flight, js_obj) { - this.bindings_lazy_init (); - - switch (true) { - case js_obj === null: - case typeof js_obj === "undefined": - return 0; - case typeof js_obj === "number": { - if ((js_obj | 0) === js_obj) - result = this._box_js_int (js_obj); - else if ((js_obj >>> 0) === js_obj) - result = this._box_js_uint (js_obj); - else - result = this._box_js_double (js_obj); - - if (!result) - throw new Error (`Boxing failed for ${js_obj}`); - - return result; - } case typeof js_obj === "string": - return this.js_string_to_mono_string (js_obj); - case typeof js_obj === "symbol": - return this.js_string_to_mono_string_interned (js_obj); - case typeof js_obj === "boolean": - return this._box_js_bool (js_obj); - case this.isThenable(js_obj) === true: - return this._wrap_js_thenable_as_task (js_obj); - case js_obj.constructor.name === "Date": - // getTime() is always UTC - return this._create_date_time(js_obj.getTime()); - default: - return this._extract_mono_obj (should_add_in_flight, js_obj); - } - },_extract_mono_obj:function (should_add_in_flight, js_obj) { - if (js_obj === null || typeof js_obj === "undefined") - return 0; - - var result = null; - if (js_obj[BINDING.js_owned_gc_handle_symbol]) { - // for js_owned_gc_handle we don't want to create new proxy - // since this is strong gc_handle we don't need to in-flight reference - result = this.get_js_owned_object_by_gc_handle (js_obj[BINDING.js_owned_gc_handle_symbol]); - return result; - } - if (js_obj[BINDING.cs_owned_js_handle_symbol]) { - result = this.get_cs_owned_object_by_js_handle (js_obj[BINDING.cs_owned_js_handle_symbol], should_add_in_flight); - - // It's possible the managed object corresponding to this JS object was collected, - // in which case we need to make a new one. - if (!result) { - delete js_obj[BINDING.cs_owned_js_handle_symbol]; - } - } - - if (!result) { - // Obtain the JS -> C# type mapping. - const wasm_type = js_obj[this.wasm_type_symbol]; - const wasm_type_id = typeof wasm_type === "undefined" ? 0 : wasm_type; - - var js_handle = BINDING.mono_wasm_get_js_handle(js_obj); - - result = this._create_cs_owned_proxy(js_handle, wasm_type_id, should_add_in_flight); - } - - return result; - },has_backing_array_buffer:function (js_obj) { - return typeof SharedArrayBuffer !== 'undefined' - ? js_obj.buffer instanceof ArrayBuffer || js_obj.buffer instanceof SharedArrayBuffer - : js_obj.buffer instanceof ArrayBuffer; - },js_typed_array_to_array:function (js_obj) { - - // JavaScript typed arrays are array-like objects and provide a mechanism for accessing - // raw binary data. (...) To achieve maximum flexibility and efficiency, JavaScript typed arrays - // split the implementation into buffers and views. A buffer (implemented by the ArrayBuffer object) - // is an object representing a chunk of data; it has no format to speak of, and offers no - // mechanism for accessing its contents. In order to access the memory contained in a buffer, - // you need to use a view. A view provides a context — that is, a data type, starting offset, - // and number of elements — that turns the data into an actual typed array. - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays - if (!!(this.has_backing_array_buffer(js_obj) && js_obj.BYTES_PER_ELEMENT)) - { - var arrayType = js_obj[this.wasm_type_symbol]; - var heapBytes = this.js_typedarray_to_heap(js_obj); - var bufferArray = this.mono_typed_array_new(heapBytes.byteOffset, js_obj.length, js_obj.BYTES_PER_ELEMENT, arrayType); - Module._free(heapBytes.byteOffset); - return bufferArray; - } - else { - throw new Error("Object '" + js_obj + "' is not a typed array"); - } - - },typedarray_copy_to:function (typed_array, pinned_array, begin, end, bytes_per_element) { - - // JavaScript typed arrays are array-like objects and provide a mechanism for accessing - // raw binary data. (...) To achieve maximum flexibility and efficiency, JavaScript typed arrays - // split the implementation into buffers and views. A buffer (implemented by the ArrayBuffer object) - // is an object representing a chunk of data; it has no format to speak of, and offers no - // mechanism for accessing its contents. In order to access the memory contained in a buffer, - // you need to use a view. A view provides a context — that is, a data type, starting offset, - // and number of elements — that turns the data into an actual typed array. - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays - if (!!(this.has_backing_array_buffer(typed_array) && typed_array.BYTES_PER_ELEMENT)) - { - // Some sanity checks of what is being asked of us - // lets play it safe and throw an error here instead of assuming to much. - // Better safe than sorry later - if (bytes_per_element !== typed_array.BYTES_PER_ELEMENT) - throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '" + typed_array.BYTES_PER_ELEMENT + "' sizeof managed element: '" + bytes_per_element + "'"); - - // how much space we have to work with - var num_of_bytes = (end - begin) * bytes_per_element; - // how much typed buffer space are we talking about - var view_bytes = typed_array.length * typed_array.BYTES_PER_ELEMENT; - // only use what is needed. - if (num_of_bytes > view_bytes) - num_of_bytes = view_bytes; - - // offset index into the view - var offset = begin * bytes_per_element; - - // Create a view over the heap pointed to by the pinned array address - var heapBytes = new Uint8Array(Module.HEAPU8.buffer, pinned_array + offset, num_of_bytes); - // Copy the bytes of the typed array to the heap. - heapBytes.set(new Uint8Array(typed_array.buffer, typed_array.byteOffset, num_of_bytes)); - - return num_of_bytes; - } - else { - throw new Error("Object '" + typed_array + "' is not a typed array"); - } - - },typedarray_copy_from:function (typed_array, pinned_array, begin, end, bytes_per_element) { - - // JavaScript typed arrays are array-like objects and provide a mechanism for accessing - // raw binary data. (...) To achieve maximum flexibility and efficiency, JavaScript typed arrays - // split the implementation into buffers and views. A buffer (implemented by the ArrayBuffer object) - // is an object representing a chunk of data; it has no format to speak of, and offers no - // mechanism for accessing its contents. In order to access the memory contained in a buffer, - // you need to use a view. A view provides a context — that is, a data type, starting offset, - // and number of elements — that turns the data into an actual typed array. - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays - if (!!(this.has_backing_array_buffer(typed_array) && typed_array.BYTES_PER_ELEMENT)) - { - // Some sanity checks of what is being asked of us - // lets play it safe and throw an error here instead of assuming to much. - // Better safe than sorry later - if (bytes_per_element !== typed_array.BYTES_PER_ELEMENT) - throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '" + typed_array.BYTES_PER_ELEMENT + "' sizeof managed element: '" + bytes_per_element + "'"); - - // how much space we have to work with - var num_of_bytes = (end - begin) * bytes_per_element; - // how much typed buffer space are we talking about - var view_bytes = typed_array.length * typed_array.BYTES_PER_ELEMENT; - // only use what is needed. - if (num_of_bytes > view_bytes) - num_of_bytes = view_bytes; - - // Create a new view for mapping - var typedarrayBytes = new Uint8Array(typed_array.buffer, 0, num_of_bytes); - // offset index into the view - var offset = begin * bytes_per_element; - // Set view bytes to value from HEAPU8 - typedarrayBytes.set(Module.HEAPU8.subarray(pinned_array + offset, pinned_array + offset + num_of_bytes)); - return num_of_bytes; - } - else { - throw new Error("Object '" + typed_array + "' is not a typed array"); - } - - },typed_array_from:function (pinned_array, begin, end, bytes_per_element, type) { - - // typed array - var newTypedArray = 0; - - switch (type) - { - case 5: - newTypedArray = new Int8Array(end - begin); - break; - case 6: - newTypedArray = new Uint8Array(end - begin); - break; - case 7: - newTypedArray = new Int16Array(end - begin); - break; - case 8: - newTypedArray = new Uint16Array(end - begin); - break; - case 9: - newTypedArray = new Int32Array(end - begin); - break; - case 10: - newTypedArray = new Uint32Array(end - begin); - break; - case 13: - newTypedArray = new Float32Array(end - begin); - break; - case 14: - newTypedArray = new Float64Array(end - begin); - break; - case 15: // This is a special case because the typed array is also byte[] - newTypedArray = new Uint8ClampedArray(end - begin); - break; - } - - this.typedarray_copy_from(newTypedArray, pinned_array, begin, end, bytes_per_element); - return newTypedArray; - },js_to_mono_enum:function (js_obj, method, parmIdx) { - this.bindings_lazy_init (); - - if (typeof (js_obj) !== "number") - throw new Error (`Expected numeric value for enum argument, got '${js_obj}'`); - - return js_obj | 0; - },get_js_owned_object_by_gc_handle:function (gc_handle) - { - if(!gc_handle){ - return 0; - } - // this is always strong gc_handle - return this._get_js_owned_object_by_gc_handle (gc_handle); - },get_cs_owned_object_by_js_handle:function (js_handle, should_add_in_flight) - { - if(!js_handle){ - return 0; - } - return this._get_cs_owned_object_by_js_handle (js_handle, should_add_in_flight); - },mono_method_get_call_signature:function(method, mono_obj) { - let instanceRoot = MONO.mono_wasm_new_root (mono_obj); - try { - this.bindings_lazy_init (); - - return this.call_method (this.get_call_sig, null, "im", [ method, instanceRoot.value ]); - } finally { - instanceRoot.release(); - } - },_create_named_function:function (name, argumentNames, body, closure) { - var result = null, keys = null, closureArgumentList = null, closureArgumentNames = null; - - if (closure) { - closureArgumentNames = Object.keys (closure); - closureArgumentList = new Array (closureArgumentNames.length); - for (var i = 0, l = closureArgumentNames.length; i < l; i++) - closureArgumentList[i] = closure[closureArgumentNames[i]]; - } - - var constructor = this._create_rebindable_named_function (name, argumentNames, body, closureArgumentNames); - result = constructor.apply (null, closureArgumentList); - - return result; - },_create_rebindable_named_function:function (name, argumentNames, body, closureArgNames) { - var strictPrefix = "\"use strict\";\r\n"; - var uriPrefix = "", escapedFunctionIdentifier = ""; - - if (name) { - uriPrefix = "//# sourceURL=https://mono-wasm.invalid/" + name + "\r\n"; - escapedFunctionIdentifier = name; - } else { - escapedFunctionIdentifier = "unnamed"; - } - - var rawFunctionText = "function " + escapedFunctionIdentifier + "(" + - argumentNames.join(", ") + - ") {\r\n" + - body + - "\r\n};\r\n"; - - var lineBreakRE = /\r(\n?)/g; - - rawFunctionText = - uriPrefix + strictPrefix + - rawFunctionText.replace(lineBreakRE, "\r\n ") + - ` return ${escapedFunctionIdentifier};\r\n`; - - var result = null, keys = null; - - if (closureArgNames) { - keys = closureArgNames.concat ([rawFunctionText]); - } else { - keys = [rawFunctionText]; - } - - result = Function.apply (Function, keys); - return result; - },_create_primitive_converters:function () { - var result = new Map (); - result.set ('m', { steps: [{ }], size: 0}); - result.set ('s', { steps: [{ convert: this.js_string_to_mono_string.bind (this) }], size: 0, needs_root: true }); - result.set ('S', { steps: [{ convert: this.js_string_to_mono_string_interned.bind (this) }], size: 0, needs_root: true }); - // note we also bind first argument to false for both _js_to_mono_obj and _js_to_mono_uri, - // because we will root the reference, so we don't need in-flight reference - // also as those are callback arguments and we don't have platform code which would release the in-flight reference on C# end - result.set ('o', { steps: [{ convert: this._js_to_mono_obj.bind (this, false) }], size: 0, needs_root: true }); - result.set ('u', { steps: [{ convert: this._js_to_mono_uri.bind (this, false) }], size: 0, needs_root: true }); - - // result.set ('k', { steps: [{ convert: this.js_to_mono_enum.bind (this), indirect: 'i64'}], size: 8}); - result.set ('j', { steps: [{ convert: this.js_to_mono_enum.bind (this), indirect: 'i32'}], size: 8}); - - result.set ('i', { steps: [{ indirect: 'i32'}], size: 8}); - result.set ('l', { steps: [{ indirect: 'i64'}], size: 8}); - result.set ('f', { steps: [{ indirect: 'float'}], size: 8}); - result.set ('d', { steps: [{ indirect: 'double'}], size: 8}); - - this._primitive_converters = result; - return result; - },_create_converter_for_marshal_string:function (args_marshal) { - var primitiveConverters = this._primitive_converters; - if (!primitiveConverters) - primitiveConverters = this._create_primitive_converters (); - - var steps = []; - var size = 0; - var is_result_definitely_unmarshaled = false, - is_result_possibly_unmarshaled = false, - result_unmarshaled_if_argc = -1, - needs_root_buffer = false; - - for (var i = 0; i < args_marshal.length; ++i) { - var key = args_marshal[i]; - - if (i === args_marshal.length - 1) { - if (key === "!") { - is_result_definitely_unmarshaled = true; - continue; - } else if (key === "m") { - is_result_possibly_unmarshaled = true; - result_unmarshaled_if_argc = args_marshal.length - 1; - } - } else if (key === "!") - throw new Error ("! must be at the end of the signature"); - - var conv = primitiveConverters.get (key); - if (!conv) - throw new Error ("Unknown parameter type " + type); - - var localStep = Object.create (conv.steps[0]); - localStep.size = conv.size; - if (conv.needs_root) - needs_root_buffer = true; - localStep.needs_root = conv.needs_root; - localStep.key = args_marshal[i]; - steps.push (localStep); - size += conv.size; - } - - return { - steps: steps, size: size, args_marshal: args_marshal, - is_result_definitely_unmarshaled: is_result_definitely_unmarshaled, - is_result_possibly_unmarshaled: is_result_possibly_unmarshaled, - result_unmarshaled_if_argc: result_unmarshaled_if_argc, - needs_root_buffer: needs_root_buffer - }; - },_get_converter_for_marshal_string:function (args_marshal) { - if (!this._signature_converters) - this._signature_converters = new Map(); - - var converter = this._signature_converters.get (args_marshal); - if (!converter) { - converter = this._create_converter_for_marshal_string (args_marshal); - this._signature_converters.set (args_marshal, converter); - } - - return converter; - },_compile_converter_for_marshal_string:function (args_marshal) { - var converter = this._get_converter_for_marshal_string (args_marshal); - if (typeof (converter.args_marshal) !== "string") - throw new Error ("Corrupt converter for '" + args_marshal + "'"); - - if (converter.compiled_function && converter.compiled_variadic_function) - return converter; - - var converterName = args_marshal.replace("!", "_result_unmarshaled"); - converter.name = converterName; - - var body = []; - var argumentNames = ["buffer", "rootBuffer", "method"]; - - // worst-case allocation size instead of allocating dynamically, plus padding - var bufferSizeBytes = converter.size + (args_marshal.length * 4) + 16; - var rootBufferSize = args_marshal.length; - // ensure the indirect values are 8-byte aligned so that aligned loads and stores will work - var indirectBaseOffset = ((((args_marshal.length * 4) + 7) / 8) | 0) * 8; - - var closure = {}; - var indirectLocalOffset = 0; - - body.push ( - `if (!buffer) buffer = Module._malloc (${bufferSizeBytes});`, - `var indirectStart = buffer + ${indirectBaseOffset};`, - "var indirect32 = (indirectStart / 4) | 0, indirect64 = (indirectStart / 8) | 0;", - "var buffer32 = (buffer / 4) | 0;", - "" - ); - - for (let i = 0; i < converter.steps.length; i++) { - var step = converter.steps[i]; - var closureKey = "step" + i; - var valueKey = "value" + i; - - var argKey = "arg" + i; - argumentNames.push (argKey); - - if (step.convert) { - closure[closureKey] = step.convert; - body.push (`var ${valueKey} = ${closureKey}(${argKey}, method, ${i});`); - } else { - body.push (`var ${valueKey} = ${argKey};`); - } - - if (step.needs_root) - body.push (`rootBuffer.set (${i}, ${valueKey});`); - - if (step.indirect) { - var heapArrayName = null; - - switch (step.indirect) { - case "u32": - heapArrayName = "HEAPU32"; - break; - case "i32": - heapArrayName = "HEAP32"; - break; - case "float": - heapArrayName = "HEAPF32"; - break; - case "double": - body.push (`Module.HEAPF64[indirect64 + ${(indirectLocalOffset / 8)}] = ${valueKey};`); - break; - case "i64": - body.push (`Module.setValue (indirectStart + ${indirectLocalOffset}, ${valueKey}, 'i64');`); - break; - default: - throw new Error ("Unimplemented indirect type: " + step.indirect); - } - - if (heapArrayName) - body.push (`Module.${heapArrayName}[indirect32 + ${(indirectLocalOffset / 4)}] = ${valueKey};`); - - body.push (`Module.HEAP32[buffer32 + ${i}] = indirectStart + ${indirectLocalOffset};`, ""); - indirectLocalOffset += step.size; - } else { - body.push (`Module.HEAP32[buffer32 + ${i}] = ${valueKey};`, ""); - indirectLocalOffset += 4; - } - } - - body.push ("return buffer;"); - - var bodyJs = body.join ("\r\n"), compiledFunction = null, compiledVariadicFunction = null; - try { - compiledFunction = this._create_named_function("converter_" + converterName, argumentNames, bodyJs, closure); - converter.compiled_function = compiledFunction; - } catch (exc) { - converter.compiled_function = null; - console.warn("compiling converter failed for", bodyJs, "with error", exc); - throw exc; - } - - argumentNames = ["existingBuffer", "rootBuffer", "method", "args"]; - closure = { - converter: compiledFunction - }; - body = [ - "return converter(", - " existingBuffer, rootBuffer, method," - ]; - - for (let i = 0; i < converter.steps.length; i++) { - body.push( - " args[" + i + - ( - (i == converter.steps.length - 1) - ? "]" - : "], " - ) - ); - } - - body.push(");"); - - bodyJs = body.join ("\r\n"); - try { - compiledVariadicFunction = this._create_named_function("variadic_converter_" + converterName, argumentNames, bodyJs, closure); - converter.compiled_variadic_function = compiledVariadicFunction; - } catch (exc) { - converter.compiled_variadic_function = null; - console.warn("compiling converter failed for", bodyJs, "with error", exc); - throw exc; - } - - converter.scratchRootBuffer = null; - converter.scratchBuffer = 0 | 0; - - return converter; - },_verify_args_for_method_call:function (args_marshal, args) { - var has_args = args && (typeof args === "object") && args.length > 0; - var has_args_marshal = typeof args_marshal === "string"; - - if (has_args) { - if (!has_args_marshal) - throw new Error ("No signature provided for method call."); - else if (args.length > args_marshal.length) - throw new Error ("Too many parameter values. Expected at most " + args_marshal.length + " value(s) for signature " + args_marshal); - } - - return has_args_marshal && has_args; - },_get_buffer_for_method_call:function (converter) { - if (!converter) - return 0; - - var result = converter.scratchBuffer; - converter.scratchBuffer = 0; - return result; - },_get_args_root_buffer_for_method_call:function (converter) { - if (!converter) - return null; - - if (!converter.needs_root_buffer) - return null; - - var result; - if (converter.scratchRootBuffer) { - result = converter.scratchRootBuffer; - converter.scratchRootBuffer = null; - } else { - // TODO: Expand the converter's heap allocation and then use - // mono_wasm_new_root_buffer_from_pointer instead. Not that important - // at present because the scratch buffer will be reused unless we are - // recursing through a re-entrant call - result = MONO.mono_wasm_new_root_buffer (converter.steps.length); - result.converter = converter; - } - return result; - },_release_args_root_buffer_from_method_call:function (converter, argsRootBuffer) { - if (!argsRootBuffer || !converter) - return; - - // Store the arguments root buffer for re-use in later calls - if (!converter.scratchRootBuffer) { - argsRootBuffer.clear (); - converter.scratchRootBuffer = argsRootBuffer; - } else { - argsRootBuffer.release (); - } - },_release_buffer_from_method_call:function (converter, buffer) { - if (!converter || !buffer) - return; - - if (!converter.scratchBuffer) - converter.scratchBuffer = buffer | 0; - else - Module._free (buffer | 0); - },_convert_exception_for_method_call:function (result, exception) { - if (exception === 0) - return null; - - var msg = this.conv_string (result); - var err = new Error (msg); //the convention is that invoke_method ToString () any outgoing exception - // console.warn ("error", msg, "at location", err.stack); - return err; - },_maybe_produce_signature_warning:function (converter) { - if (converter.has_warned_about_signature) - return; - - console.warn ("MONO_WASM: Deprecated raw return value signature: '" + converter.args_marshal + "'. End the signature with '!' instead of 'm'."); - converter.has_warned_about_signature = true; - },_decide_if_result_is_marshaled:function (converter, argc) { - if (!converter) - return true; - - if ( - converter.is_result_possibly_unmarshaled && - (argc === converter.result_unmarshaled_if_argc) - ) { - if (argc < converter.result_unmarshaled_if_argc) - throw new Error(["Expected >= ", converter.result_unmarshaled_if_argc, "argument(s) but got", argc, "for signature " + converter.args_marshal].join(" ")); - - this._maybe_produce_signature_warning (converter); - return false; - } else { - if (argc < converter.steps.length) - throw new Error(["Expected", converter.steps.length, "argument(s) but got", argc, "for signature " + converter.args_marshal].join(" ")); - - return !converter.is_result_definitely_unmarshaled; - } - },call_method:function (method, this_arg, args_marshal, args) { - this.bindings_lazy_init (); - - // HACK: Sometimes callers pass null or undefined, coerce it to 0 since that's what wasm expects - this_arg = this_arg | 0; - - // Detect someone accidentally passing the wrong type of value to method - if ((method | 0) !== method) - throw new Error (`method must be an address in the native heap, but was '${method}'`); - if (!method) - throw new Error ("no method specified"); - - var needs_converter = this._verify_args_for_method_call (args_marshal, args); - - var buffer = 0, converter = null, argsRootBuffer = null; - var is_result_marshaled = true; - - // check if the method signature needs argument mashalling - if (needs_converter) { - converter = this._compile_converter_for_marshal_string (args_marshal); - - is_result_marshaled = this._decide_if_result_is_marshaled (converter, args.length); - - argsRootBuffer = this._get_args_root_buffer_for_method_call (converter); - - var scratchBuffer = this._get_buffer_for_method_call (converter); - - buffer = converter.compiled_variadic_function (scratchBuffer, argsRootBuffer, method, args); - } - return this._call_method_with_converted_args (method, this_arg, converter, buffer, is_result_marshaled, argsRootBuffer); - },_handle_exception_for_call:function ( - converter, buffer, resultRoot, exceptionRoot, argsRootBuffer - ) { - var exc = this._convert_exception_for_method_call (resultRoot.value, exceptionRoot.value); - if (!exc) - return; - - this._teardown_after_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer); - throw exc; - },_handle_exception_and_produce_result_for_call:function ( - converter, buffer, resultRoot, exceptionRoot, argsRootBuffer, is_result_marshaled - ) { - this._handle_exception_for_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer); - - if (is_result_marshaled) - result = this._unbox_mono_obj_root (resultRoot); - else - result = resultRoot.value; - - this._teardown_after_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer); - return result; - },_teardown_after_call:function (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer) { - this._release_args_root_buffer_from_method_call (converter, argsRootBuffer); - this._release_buffer_from_method_call (converter, buffer | 0); - - if (resultRoot) - resultRoot.release (); - if (exceptionRoot) - exceptionRoot.release (); - },_get_method_description:function (method) { - if (!this._method_descriptions) - this._method_descriptions = new Map(); - - var result = this._method_descriptions.get (method); - if (!result) - result = "method#" + method; - return result; - },_call_method_with_converted_args:function (method, this_arg, converter, buffer, is_result_marshaled, argsRootBuffer) { - var resultRoot = MONO.mono_wasm_new_root (), exceptionRoot = MONO.mono_wasm_new_root (); - resultRoot.value = this.invoke_method (method, this_arg, buffer, exceptionRoot.get_address ()); - return this._handle_exception_and_produce_result_for_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer, is_result_marshaled); - },bind_method:function (method, this_arg, args_marshal, friendly_name) { - this.bindings_lazy_init (); - - this_arg = this_arg | 0; - - var converter = null; - if (typeof (args_marshal) === "string") - converter = this._compile_converter_for_marshal_string (args_marshal); - - var closure = { - library_mono: MONO, - binding_support: this, - method: method, - this_arg: this_arg - }; - - var converterKey = "converter_" + converter.name; - - if (converter) - closure[converterKey] = converter; - - var argumentNames = []; - var body = [ - "var resultRoot = library_mono.mono_wasm_new_root (), exceptionRoot = library_mono.mono_wasm_new_root ();", - "" - ]; - - if (converter) { - body.push( - `var argsRootBuffer = binding_support._get_args_root_buffer_for_method_call (${converterKey});`, - `var scratchBuffer = binding_support._get_buffer_for_method_call (${converterKey});`, - `var buffer = ${converterKey}.compiled_function (`, - " scratchBuffer, argsRootBuffer, method," - ); - - for (var i = 0; i < converter.steps.length; i++) { - var argName = "arg" + i; - argumentNames.push(argName); - body.push( - " " + argName + - ( - (i == converter.steps.length - 1) - ? "" - : ", " - ) - ); - } - - body.push(");"); - - } else { - body.push("var argsRootBuffer = null, buffer = 0;"); - } - - if (converter.is_result_definitely_unmarshaled) { - body.push ("var is_result_marshaled = false;"); - } else if (converter.is_result_possibly_unmarshaled) { - body.push (`var is_result_marshaled = arguments.length !== ${converter.result_unmarshaled_if_argc};`); - } else { - body.push ("var is_result_marshaled = true;"); - } - - // We inline a bunch of the invoke and marshaling logic here in order to eliminate the GC pressure normally - // created by the unboxing part of the call process. Because unbox_mono_obj(_root) can return non-numeric - // types, v8 and spidermonkey allocate and store its result on the heap (in the nursery, to be fair). - // For a bound method however, we know the result will always be the same type because C# methods have known - // return types. Inlining the invoke and marshaling logic means that even though the bound method has logic - // for handling various types, only one path through the method (for its appropriate return type) will ever - // be taken, and the JIT will see that the 'result' local and thus the return value of this function are - // always of the exact same type. All of the branches related to this end up being predicted and low-cost. - // The end result is that bound method invocations don't always allocate, so no more nursery GCs. Yay! -kg - body.push( - "", - "resultRoot.value = binding_support.invoke_method (method, this_arg, buffer, exceptionRoot.get_address ());", - `binding_support._handle_exception_for_call (${converterKey}, buffer, resultRoot, exceptionRoot, argsRootBuffer);`, - "", - "var result = undefined;", - "if (!is_result_marshaled) ", - " result = resultRoot.value;", - "else if (resultRoot.value !== 0) {", - // For the common scenario where the return type is a primitive, we want to try and unbox it directly - // into our existing heap allocation and then read it out of the heap. Doing this all in one operation - // means that we only need to enter a gc safe region twice (instead of 3+ times with the normal, - // slower check-type-and-then-unbox flow which has extra checks since unbox verifies the type). - " var resultType = binding_support.mono_wasm_try_unbox_primitive_and_get_type (resultRoot.value, buffer);", - " switch (resultType) {", - " case 1:", // int - " result = Module.HEAP32[buffer / 4]; break;", - " case 25:", // uint32 - " result = Module.HEAPU32[buffer / 4]; break;", - " case 24:", // float32 - " result = Module.HEAPF32[buffer / 4]; break;", - " case 2:", // float64 - " result = Module.HEAPF64[buffer / 8]; break;", - " case 8:", // boolean - " result = (Module.HEAP32[buffer / 4]) !== 0; break;", - " case 28:", // char - " result = String.fromCharCode(Module.HEAP32[buffer / 4]); break;", - " default:", - " result = binding_support._unbox_mono_obj_root_with_known_nonprimitive_type (resultRoot, resultType); break;", - " }", - "}", - "", - `binding_support._teardown_after_call (${converterKey}, buffer, resultRoot, exceptionRoot, argsRootBuffer);`, - "return result;" - ); - - bodyJs = body.join ("\r\n"); - - if (friendly_name) { - var escapeRE = /[^A-Za-z0-9_]/g; - friendly_name = friendly_name.replace(escapeRE, "_"); - } - - var displayName = "managed_" + (friendly_name || method); - - if (this_arg) - displayName += "_with_this_" + this_arg; - - return this._create_named_function(displayName, argumentNames, bodyJs, closure); - },resolve_method_fqn:function (fqn) { - this.bindings_lazy_init (); - - var assembly = fqn.substring(fqn.indexOf ("[") + 1, fqn.indexOf ("]")).trim(); - fqn = fqn.substring (fqn.indexOf ("]") + 1).trim(); - - var methodname = fqn.substring(fqn.indexOf (":") + 1); - fqn = fqn.substring (0, fqn.indexOf (":")).trim (); - - var namespace = ""; - var classname = fqn; - if (fqn.indexOf(".") != -1) { - var idx = fqn.lastIndexOf("."); - namespace = fqn.substring (0, idx); - classname = fqn.substring (idx + 1); - } - - if (!assembly.trim()) - throw new Error("No assembly name specified"); - if (!classname.trim()) - throw new Error("No class name specified"); - if (!methodname.trim()) - throw new Error("No method name specified"); - - var asm = this.assembly_load (assembly); - if (!asm) - throw new Error ("Could not find assembly: " + assembly); - - var klass = this.find_class(asm, namespace, classname); - if (!klass) - throw new Error ("Could not find class: " + namespace + ":" + classname + " in assembly " + assembly); - - var method = this.find_method (klass, methodname, -1); - if (!method) - throw new Error ("Could not find method: " + methodname); - return method; - },call_static_method:function (fqn, args, signature) { - this.bindings_lazy_init (); - - var method = this.resolve_method_fqn (fqn); - - if (typeof signature === "undefined") - signature = Module.mono_method_get_call_signature (method); - - return this.call_method (method, null, signature, args); - },bind_static_method:function (fqn, signature) { - this.bindings_lazy_init (); - - var method = this.resolve_method_fqn (fqn); - - if (typeof signature === "undefined") - signature = Module.mono_method_get_call_signature (method); - - return BINDING.bind_method (method, null, signature, fqn); - },bind_assembly_entry_point:function (assembly, signature) { - this.bindings_lazy_init (); - - var asm = this.assembly_load (assembly); - if (!asm) - throw new Error ("Could not find assembly: " + assembly); - - var method = this.assembly_get_entry_point(asm); - if (!method) - throw new Error ("Could not find entry point for assembly: " + assembly); - - if (typeof signature === "undefined") - signature = Module.mono_method_get_call_signature (method); - - return function() { - try { - var args = [...arguments]; - if (args.length > 0 && Array.isArray (args[0])) - args[0] = BINDING.js_array_to_mono_array (args[0], true, false); - - let result = BINDING.call_method (method, null, signature, args); - return Promise.resolve (result); - } catch (error) { - return Promise.reject (error); - } - }; - },call_assembly_entry_point:function (assembly, args, signature) { - return this.bind_assembly_entry_point (assembly, signature) (...args) - },mono_wasm_get_jsobj_from_js_handle:function(js_handle) { - if (js_handle > 0) - return this._cs_owned_objects_by_js_handle[js_handle]; - return null; - },mono_wasm_get_js_handle:function(js_obj) { - if(js_obj[BINDING.cs_owned_js_handle_symbol]){ - return js_obj[BINDING.cs_owned_js_handle_symbol]; - } - var js_handle = this._js_handle_free_list.length ? this._js_handle_free_list.pop() : this._next_js_handle++; - // note _cs_owned_objects_by_js_handle is list, not Map. That's why we maintain _js_handle_free_list. - this._cs_owned_objects_by_js_handle[js_handle] = js_obj; - js_obj[BINDING.cs_owned_js_handle_symbol] = js_handle; - return js_handle; - },_mono_wasm_release_js_handle:function(js_handle) { - var obj = BINDING._cs_owned_objects_by_js_handle[js_handle]; - if (typeof obj !== "undefined" && obj !== null) { - // if this is the global object then do not - // unregister it. - if (globalThis === obj) - return obj; - - if (typeof obj[BINDING.cs_owned_js_handle_symbol] !== "undefined") { - obj[BINDING.cs_owned_js_handle_symbol] = undefined; - } - - BINDING._cs_owned_objects_by_js_handle[js_handle] = undefined; - BINDING._js_handle_free_list.push(js_handle); - } - return obj; - }}; - function _mono_wasm_add_event_listener(objHandle, name, listener_gc_handle, optionsHandle) { - var nameRoot = MONO.mono_wasm_new_root (name); - try { - BINDING.bindings_lazy_init (); - var sName = BINDING.conv_string(nameRoot.value); - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle); - if (!obj) - throw new Error("ERR09: Invalid JS object handle for '"+sName+"'"); - - const prevent_timer_throttling = !BINDING.isChromium || obj.constructor.name !== 'WebSocket' - ? null - : () => MONO.prevent_timer_throttling(0); - - var listener = BINDING._wrap_delegate_gc_handle_as_function(listener_gc_handle, prevent_timer_throttling); - if (!listener) - throw new Error("ERR10: Invalid listener gc_handle"); - - var options = optionsHandle - ? BINDING.mono_wasm_get_jsobj_from_js_handle(optionsHandle) - : null; - - if(!BINDING._use_finalization_registry){ - // we are counting registrations because same delegate could be registered into multiple sources - listener[BINDING.listener_registration_count_symbol] = listener[BINDING.listener_registration_count_symbol] ? listener[BINDING.listener_registration_count_symbol] + 1 : 1; - } - - if (options) - obj.addEventListener(sName, listener, options); - else - obj.addEventListener(sName, listener); - return 0; - } catch (exc) { - return BINDING.js_string_to_mono_string(exc.message); - } finally { - nameRoot.release(); - } - } - - function _mono_wasm_asm_loaded(assembly_name, assembly_ptr, assembly_len, pdb_ptr, pdb_len) { - // Only trigger this codepath for assemblies loaded after app is ready - if (MONO.mono_wasm_runtime_is_ready !== true) - return; - - const assembly_name_str = assembly_name !== 0 ? Module.UTF8ToString(assembly_name).concat('.dll') : ''; - - const assembly_data = new Uint8Array(Module.HEAPU8.buffer, assembly_ptr, assembly_len); - const assembly_b64 = MONO._base64Converter.toBase64StringImpl(assembly_data); - - let pdb_b64; - if (pdb_ptr) { - const pdb_data = new Uint8Array(Module.HEAPU8.buffer, pdb_ptr, pdb_len); - pdb_b64 = MONO._base64Converter.toBase64StringImpl(pdb_data); - } - - MONO.mono_wasm_raise_debug_event({ - eventName: 'AssemblyLoaded', - assembly_name: assembly_name_str, - assembly_b64, - pdb_b64 - }); - } - - function _mono_wasm_create_cs_owned_object(core_name, args, is_exception) { - var argsRoot = MONO.mono_wasm_new_root (args), nameRoot = MONO.mono_wasm_new_root (core_name); - try { - BINDING.bindings_lazy_init (); - - var js_name = BINDING.conv_string (nameRoot.value); - - if (!js_name) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Invalid name @" + nameRoot.value); - } - - var coreObj = globalThis[js_name]; - - if (coreObj === null || typeof coreObj === "undefined") { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("JavaScript host object '" + js_name + "' not found."); - } - - var js_args = BINDING._mono_array_root_to_js_array(argsRoot); - - try { - - // This is all experimental !!!!!! - var allocator = function(constructor, js_args) { - // Not sure if we should be checking for anything here - var argsList = new Array(); - argsList[0] = constructor; - if (js_args) - argsList = argsList.concat (js_args); - var tempCtor = constructor.bind.apply (constructor, argsList); - var js_obj = new tempCtor (); - return js_obj; - }; - - var js_obj = allocator(coreObj, js_args); - var js_handle = BINDING.mono_wasm_get_js_handle(js_obj); - // returns boxed js_handle int, because on exception we need to return String on same method signature - // here we don't have anything to in-flight reference, as the JSObject doesn't exist yet - return BINDING._js_to_mono_obj(false, js_handle); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || res === undefined) - res = "Error allocating object."; - return BINDING.js_string_to_mono_string (res); - } - } finally { - argsRoot.release(); - nameRoot.release(); - } - } - - function _mono_wasm_fire_debugger_agent_message() { - // eslint-disable-next-line no-debugger - debugger; - } - - function _mono_wasm_get_by_index(js_handle, property_index, is_exception) { - BINDING.bindings_lazy_init (); - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR03: Invalid JS object handle '" + js_handle + "' while getting ["+property_index+"]"); - } - - try { - var m = obj [property_index]; - return BINDING._js_to_mono_obj (true, m); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || typeof res === "undefined") - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } - - function _mono_wasm_get_global_object(global_name, is_exception) { - var nameRoot = MONO.mono_wasm_new_root (global_name); - try { - BINDING.bindings_lazy_init (); - - var js_name = BINDING.conv_string (nameRoot.value); - - var globalObj; - - if (!js_name) { - globalObj = globalThis; - } - else { - globalObj = globalThis[js_name]; - } - - // TODO returning null may be useful when probing for browser features - if (globalObj === null || typeof globalObj === undefined) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Global object '" + js_name + "' not found."); - } - - return BINDING._js_to_mono_obj (true, globalObj); - } finally { - nameRoot.release(); - } - } - - function _mono_wasm_get_object_property(js_handle, property_name, is_exception) { - BINDING.bindings_lazy_init (); - - var nameRoot = MONO.mono_wasm_new_root (property_name); - try { - var js_name = BINDING.conv_string (nameRoot.value); - if (!js_name) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Invalid property name object '" + nameRoot.value + "'"); - } - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR01: Invalid JS object handle '" + js_handle + "' while geting '"+js_name+"'"); - } - - var res; - try { - var m = obj [js_name]; - - return BINDING._js_to_mono_obj (true, m); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || typeof res === "undefined") - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } finally { - nameRoot.release(); - } - } - - var DOTNET={conv_string:function (mono_obj) { - return MONO.string_decoder.copy (mono_obj); - }}; - function _mono_wasm_invoke_js_blazor(exceptionMessage, callInfo, arg0, arg1, arg2) { - var mono_string = globalThis._mono_string_cached - || (globalThis._mono_string_cached = Module.cwrap('mono_wasm_string_from_js', 'number', ['string'])); - - try { - var blazorExports = globalThis.Blazor; - if (!blazorExports) { - throw new Error('The blazor.webassembly.js library is not loaded.'); - } - - return blazorExports._internal.invokeJSFromDotNet(callInfo, arg0, arg1, arg2); - } catch (ex) { - var exceptionJsString = ex.message + '\n' + ex.stack; - var exceptionSystemString = mono_string(exceptionJsString); - setValue (exceptionMessage, exceptionSystemString, 'i32'); // *exceptionMessage = exceptionSystemString; - return 0; - } - } - - function _mono_wasm_invoke_js_marshalled(exceptionMessage, asyncHandleLongPtr, functionName, argsJson, treatResultAsVoid) { - - var mono_string = globalThis._mono_string_cached - || (globalThis._mono_string_cached = Module.cwrap('mono_wasm_string_from_js', 'number', ['string'])); - - try { - // Passing a .NET long into JS via Emscripten is tricky. The method here is to pass - // as pointer to the long, then combine two reads from the HEAPU32 array. - // Even though JS numbers can't represent the full range of a .NET long, it's OK - // because we'll never exceed Number.MAX_SAFE_INTEGER (2^53 - 1) in this case. - //var u32Index = $1 >> 2; - var u32Index = asyncHandleLongPtr >> 2; - var asyncHandleJsNumber = Module.HEAPU32[u32Index + 1]*4294967296 + Module.HEAPU32[u32Index]; - - // var funcNameJsString = UTF8ToString (functionName); - // var argsJsonJsString = argsJson && UTF8ToString (argsJson); - var funcNameJsString = DOTNET.conv_string(functionName); - var argsJsonJsString = argsJson && DOTNET.conv_string (argsJson); - - var dotNetExports = globaThis.DotNet; - if (!dotNetExports) { - throw new Error('The Microsoft.JSInterop.js library is not loaded.'); - } - - if (asyncHandleJsNumber) { - dotNetExports.jsCallDispatcher.beginInvokeJSFromDotNet(asyncHandleJsNumber, funcNameJsString, argsJsonJsString, treatResultAsVoid); - return 0; - } else { - var resultJson = dotNetExports.jsCallDispatcher.invokeJSFromDotNet(funcNameJsString, argsJsonJsString, treatResultAsVoid); - return resultJson === null ? 0 : mono_string(resultJson); - } - } catch (ex) { - var exceptionJsString = ex.message + '\n' + ex.stack; - var exceptionSystemString = mono_string(exceptionJsString); - setValue (exceptionMessage, exceptionSystemString, 'i32'); // *exceptionMessage = exceptionSystemString; - return 0; - } - } - - function _mono_wasm_invoke_js_unmarshalled(exceptionMessage, funcName, arg0, arg1, arg2) { - try { - // Get the function you're trying to invoke - var funcNameJsString = DOTNET.conv_string(funcName); - var dotNetExports = globalThis.DotNet; - if (!dotNetExports) { - throw new Error('The Microsoft.JSInterop.js library is not loaded.'); - } - var funcInstance = dotNetExports.jsCallDispatcher.findJSFunction(funcNameJsString); - - return funcInstance.call(null, arg0, arg1, arg2); - } catch (ex) { - var exceptionJsString = ex.message + '\n' + ex.stack; - var mono_string = Module.cwrap('mono_wasm_string_from_js', 'number', ['string']); // TODO: Cache - var exceptionSystemString = mono_string(exceptionJsString); - setValue (exceptionMessage, exceptionSystemString, 'i32'); // *exceptionMessage = exceptionSystemString; - return 0; - } - } - - function _mono_wasm_invoke_js_with_args(js_handle, method_name, args, is_exception) { - let argsRoot = MONO.mono_wasm_new_root (args), nameRoot = MONO.mono_wasm_new_root (method_name); - try { - BINDING.bindings_lazy_init (); - - var js_name = BINDING.conv_string (nameRoot.value); - if (!js_name || (typeof(js_name) !== "string")) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR12: Invalid method name object '" + nameRoot.value + "'"); - } - - var obj = BINDING.get_js_obj (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR13: Invalid JS object handle '" + js_handle + "' while invoking '"+js_name+"'"); - } - - var js_args = BINDING._mono_array_root_to_js_array(argsRoot); - - var res; - try { - var m = obj [js_name]; - if (typeof m === "undefined") - throw new Error("Method: '" + js_name + "' not found for: '" + Object.prototype.toString.call(obj) + "'"); - var res = m.apply (obj, js_args); - return BINDING._js_to_mono_obj(true, res); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || res === undefined) - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } finally { - argsRoot.release(); - nameRoot.release(); - } - } - - function _mono_wasm_release_cs_owned_object(js_handle) { - BINDING.bindings_lazy_init (); - BINDING._mono_wasm_release_js_handle(js_handle); - } - - function _mono_wasm_remove_event_listener(objHandle, name, listener_gc_handle, capture) { - var nameRoot = MONO.mono_wasm_new_root (name); - try { - BINDING.bindings_lazy_init (); - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle); - if (!obj) - throw new Error("ERR11: Invalid JS object handle"); - var listener = BINDING._lookup_js_owned_object(listener_gc_handle); - // Removing a nonexistent listener should not be treated as an error - if (!listener) - return; - var sName = BINDING.conv_string(nameRoot.value); - - obj.removeEventListener(sName, listener, !!capture); - // We do not manually remove the listener from the delegate registry here, - // because that same delegate may have been used as an event listener for - // other events or event targets. The GC will automatically clean it up - // and trigger the FinalizationRegistry handler if it's unused - - // When FinalizationRegistry is not supported by this browser, we cleanup manuall after unregistration - if (!BINDING._use_finalization_registry) { - listener[BINDING.listener_registration_count_symbol]--; - if (listener[BINDING.listener_registration_count_symbol] === 0) { - BINDING._js_owned_object_table.delete(listener_gc_handle); - BINDING._release_js_owned_object_by_gc_handle(listener_gc_handle); - } - } - - return 0; - } catch (exc) { - return BINDING.js_string_to_mono_string(exc.message); - } finally { - nameRoot.release(); - } - } - - function _mono_wasm_set_by_index(js_handle, property_index, value, is_exception) { - var valueRoot = MONO.mono_wasm_new_root (value); - try { - BINDING.bindings_lazy_init (); - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR04: Invalid JS object handle '" + js_handle + "' while setting ["+property_index+"]"); - } - - var js_value = BINDING._unbox_mono_obj_root(valueRoot); - - try { - obj [property_index] = js_value; - return true; - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || typeof res === "undefined") - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } finally { - valueRoot.release(); - } - } - - function _mono_wasm_set_object_property(js_handle, property_name, value, createIfNotExist, hasOwnProperty, is_exception) { - var valueRoot = MONO.mono_wasm_new_root (value), nameRoot = MONO.mono_wasm_new_root (property_name); - try { - BINDING.bindings_lazy_init (); - var property = BINDING.conv_string (nameRoot.value); - if (!property) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Invalid property name object '" + property_name + "'"); - } - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR02: Invalid JS object handle '" + js_handle + "' while setting '"+property+"'"); - } - - var result = false; - - var js_value = BINDING._unbox_mono_obj_root(valueRoot); - - if (createIfNotExist) { - js_obj[property] = js_value; - result = true; - } - else { - result = false; - if (!createIfNotExist) - { - if (!js_obj.hasOwnProperty(property)) - return false; - } - if (hasOwnProperty === true) { - if (js_obj.hasOwnProperty(property)) { - js_obj[property] = js_value; - result = true; - } - } - else { - js_obj[property] = js_value; - result = true; - } - - } - return BINDING._box_js_bool (result); - } finally { - nameRoot.release(); - valueRoot.release(); - } - } - - function _mono_wasm_typed_array_copy_from(js_handle, pinned_array, begin, end, bytes_per_element, is_exception) { - BINDING.bindings_lazy_init (); - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR08: Invalid JS object handle '" + js_handle + "'"); - } - - var res = BINDING.typedarray_copy_from(js_obj, pinned_array, begin, end, bytes_per_element); - // returns num_of_bytes boxed - return BINDING._js_to_mono_obj (false, res) - } - - function _mono_wasm_typed_array_copy_to(js_handle, pinned_array, begin, end, bytes_per_element, is_exception) { - BINDING.bindings_lazy_init (); - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR07: Invalid JS object handle '" + js_handle + "'"); - } - - var res = BINDING.typedarray_copy_to(js_obj, pinned_array, begin, end, bytes_per_element); - // returns num_of_bytes boxed - return BINDING._js_to_mono_obj (false, res) - } - - function _mono_wasm_typed_array_from(pinned_array, begin, end, bytes_per_element, type, is_exception) { - BINDING.bindings_lazy_init (); - var res = BINDING.typed_array_from(pinned_array, begin, end, bytes_per_element, type); - // returns JS typed array like Int8Array, to be wraped with JSObject proxy - return BINDING._js_to_mono_obj (true, res) - } - - function _mono_wasm_typed_array_to_array(js_handle, is_exception) { - BINDING.bindings_lazy_init (); - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR06: Invalid JS object handle '" + js_handle + "'"); - } - - // returns pointer to C# array - return BINDING.js_typed_array_to_array(js_obj, false); - } - - function _pthread_create() { - return 6; - } - - function _pthread_join() { - return 28; - } - - function _schedule_background_exec() { - ++MONO.pump_count; - if (typeof globalThis.setTimeout === 'function') { - globalThis.setTimeout (MONO.pump_message, 0); - } - } - - function _setTempRet0(val) { - setTempRet0(val); - } - - function __isLeapYear(year) { - return year%4 === 0 && (year%100 !== 0 || year%400 === 0); - } - - function __arraySum(array, index) { - var sum = 0; - for (var i = 0; i <= index; sum += array[i++]) { - // no-op - } - return sum; - } - - var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31]; - - var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31]; - function __addDays(date, days) { - var newDate = new Date(date.getTime()); - while (days > 0) { - var leap = __isLeapYear(newDate.getFullYear()); - var currentMonth = newDate.getMonth(); - var daysInCurrentMonth = (leap ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR)[currentMonth]; - - if (days > daysInCurrentMonth-newDate.getDate()) { - // we spill over to next month - days -= (daysInCurrentMonth-newDate.getDate()+1); - newDate.setDate(1); - if (currentMonth < 11) { - newDate.setMonth(currentMonth+1) - } else { - newDate.setMonth(0); - newDate.setFullYear(newDate.getFullYear()+1); - } - } else { - // we stay in current month - newDate.setDate(newDate.getDate()+days); - return newDate; - } - } - - return newDate; - } - function _strftime(s, maxsize, format, tm) { - // size_t strftime(char *restrict s, size_t maxsize, const char *restrict format, const struct tm *restrict timeptr); - // http://pubs.opengroup.org/onlinepubs/009695399/functions/strftime.html - - var tm_zone = HEAP32[(((tm)+(40))>>2)]; - - var date = { - tm_sec: HEAP32[((tm)>>2)], - tm_min: HEAP32[(((tm)+(4))>>2)], - tm_hour: HEAP32[(((tm)+(8))>>2)], - tm_mday: HEAP32[(((tm)+(12))>>2)], - tm_mon: HEAP32[(((tm)+(16))>>2)], - tm_year: HEAP32[(((tm)+(20))>>2)], - tm_wday: HEAP32[(((tm)+(24))>>2)], - tm_yday: HEAP32[(((tm)+(28))>>2)], - tm_isdst: HEAP32[(((tm)+(32))>>2)], - tm_gmtoff: HEAP32[(((tm)+(36))>>2)], - tm_zone: tm_zone ? UTF8ToString(tm_zone) : '' - }; - - var pattern = UTF8ToString(format); - - // expand format - var EXPANSION_RULES_1 = { - '%c': '%a %b %d %H:%M:%S %Y', // Replaced by the locale's appropriate date and time representation - e.g., Mon Aug 3 14:02:01 2013 - '%D': '%m/%d/%y', // Equivalent to %m / %d / %y - '%F': '%Y-%m-%d', // Equivalent to %Y - %m - %d - '%h': '%b', // Equivalent to %b - '%r': '%I:%M:%S %p', // Replaced by the time in a.m. and p.m. notation - '%R': '%H:%M', // Replaced by the time in 24-hour notation - '%T': '%H:%M:%S', // Replaced by the time - '%x': '%m/%d/%y', // Replaced by the locale's appropriate date representation - '%X': '%H:%M:%S', // Replaced by the locale's appropriate time representation - // Modified Conversion Specifiers - '%Ec': '%c', // Replaced by the locale's alternative appropriate date and time representation. - '%EC': '%C', // Replaced by the name of the base year (period) in the locale's alternative representation. - '%Ex': '%m/%d/%y', // Replaced by the locale's alternative date representation. - '%EX': '%H:%M:%S', // Replaced by the locale's alternative time representation. - '%Ey': '%y', // Replaced by the offset from %EC (year only) in the locale's alternative representation. - '%EY': '%Y', // Replaced by the full alternative year representation. - '%Od': '%d', // Replaced by the day of the month, using the locale's alternative numeric symbols, filled as needed with leading zeros if there is any alternative symbol for zero; otherwise, with leading characters. - '%Oe': '%e', // Replaced by the day of the month, using the locale's alternative numeric symbols, filled as needed with leading characters. - '%OH': '%H', // Replaced by the hour (24-hour clock) using the locale's alternative numeric symbols. - '%OI': '%I', // Replaced by the hour (12-hour clock) using the locale's alternative numeric symbols. - '%Om': '%m', // Replaced by the month using the locale's alternative numeric symbols. - '%OM': '%M', // Replaced by the minutes using the locale's alternative numeric symbols. - '%OS': '%S', // Replaced by the seconds using the locale's alternative numeric symbols. - '%Ou': '%u', // Replaced by the weekday as a number in the locale's alternative representation (Monday=1). - '%OU': '%U', // Replaced by the week number of the year (Sunday as the first day of the week, rules corresponding to %U ) using the locale's alternative numeric symbols. - '%OV': '%V', // Replaced by the week number of the year (Monday as the first day of the week, rules corresponding to %V ) using the locale's alternative numeric symbols. - '%Ow': '%w', // Replaced by the number of the weekday (Sunday=0) using the locale's alternative numeric symbols. - '%OW': '%W', // Replaced by the week number of the year (Monday as the first day of the week) using the locale's alternative numeric symbols. - '%Oy': '%y', // Replaced by the year (offset from %C ) using the locale's alternative numeric symbols. - }; - for (var rule in EXPANSION_RULES_1) { - pattern = pattern.replace(new RegExp(rule, 'g'), EXPANSION_RULES_1[rule]); - } - - var WEEKDAYS = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']; - var MONTHS = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']; - - function leadingSomething(value, digits, character) { - var str = typeof value === 'number' ? value.toString() : (value || ''); - while (str.length < digits) { - str = character[0]+str; - } - return str; - } - - function leadingNulls(value, digits) { - return leadingSomething(value, digits, '0'); - } - - function compareByDay(date1, date2) { - function sgn(value) { - return value < 0 ? -1 : (value > 0 ? 1 : 0); - } - - var compare; - if ((compare = sgn(date1.getFullYear()-date2.getFullYear())) === 0) { - if ((compare = sgn(date1.getMonth()-date2.getMonth())) === 0) { - compare = sgn(date1.getDate()-date2.getDate()); - } - } - return compare; - } - - function getFirstWeekStartDate(janFourth) { - switch (janFourth.getDay()) { - case 0: // Sunday - return new Date(janFourth.getFullYear()-1, 11, 29); - case 1: // Monday - return janFourth; - case 2: // Tuesday - return new Date(janFourth.getFullYear(), 0, 3); - case 3: // Wednesday - return new Date(janFourth.getFullYear(), 0, 2); - case 4: // Thursday - return new Date(janFourth.getFullYear(), 0, 1); - case 5: // Friday - return new Date(janFourth.getFullYear()-1, 11, 31); - case 6: // Saturday - return new Date(janFourth.getFullYear()-1, 11, 30); - } - } - - function getWeekBasedYear(date) { - var thisDate = __addDays(new Date(date.tm_year+1900, 0, 1), date.tm_yday); - - var janFourthThisYear = new Date(thisDate.getFullYear(), 0, 4); - var janFourthNextYear = new Date(thisDate.getFullYear()+1, 0, 4); - - var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear); - var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear); - - if (compareByDay(firstWeekStartThisYear, thisDate) <= 0) { - // this date is after the start of the first week of this year - if (compareByDay(firstWeekStartNextYear, thisDate) <= 0) { - return thisDate.getFullYear()+1; - } else { - return thisDate.getFullYear(); - } - } else { - return thisDate.getFullYear()-1; - } - } - - var EXPANSION_RULES_2 = { - '%a': function(date) { - return WEEKDAYS[date.tm_wday].substring(0,3); - }, - '%A': function(date) { - return WEEKDAYS[date.tm_wday]; - }, - '%b': function(date) { - return MONTHS[date.tm_mon].substring(0,3); - }, - '%B': function(date) { - return MONTHS[date.tm_mon]; - }, - '%C': function(date) { - var year = date.tm_year+1900; - return leadingNulls((year/100)|0,2); - }, - '%d': function(date) { - return leadingNulls(date.tm_mday, 2); - }, - '%e': function(date) { - return leadingSomething(date.tm_mday, 2, ' '); - }, - '%g': function(date) { - // %g, %G, and %V give values according to the ISO 8601:2000 standard week-based year. - // In this system, weeks begin on a Monday and week 1 of the year is the week that includes - // January 4th, which is also the week that includes the first Thursday of the year, and - // is also the first week that contains at least four days in the year. - // If the first Monday of January is the 2nd, 3rd, or 4th, the preceding days are part of - // the last week of the preceding year; thus, for Saturday 2nd January 1999, - // %G is replaced by 1998 and %V is replaced by 53. If December 29th, 30th, - // or 31st is a Monday, it and any following days are part of week 1 of the following year. - // Thus, for Tuesday 30th December 1997, %G is replaced by 1998 and %V is replaced by 01. - - return getWeekBasedYear(date).toString().substring(2); - }, - '%G': function(date) { - return getWeekBasedYear(date); - }, - '%H': function(date) { - return leadingNulls(date.tm_hour, 2); - }, - '%I': function(date) { - var twelveHour = date.tm_hour; - if (twelveHour == 0) twelveHour = 12; - else if (twelveHour > 12) twelveHour -= 12; - return leadingNulls(twelveHour, 2); - }, - '%j': function(date) { - // Day of the year (001-366) - return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, date.tm_mon-1), 3); - }, - '%m': function(date) { - return leadingNulls(date.tm_mon+1, 2); - }, - '%M': function(date) { - return leadingNulls(date.tm_min, 2); - }, - '%n': function() { - return '\n'; - }, - '%p': function(date) { - if (date.tm_hour >= 0 && date.tm_hour < 12) { - return 'AM'; - } else { - return 'PM'; - } - }, - '%S': function(date) { - return leadingNulls(date.tm_sec, 2); - }, - '%t': function() { - return '\t'; - }, - '%u': function(date) { - return date.tm_wday || 7; - }, - '%U': function(date) { - // Replaced by the week number of the year as a decimal number [00,53]. - // The first Sunday of January is the first day of week 1; - // days in the new year before this are in week 0. [ tm_year, tm_wday, tm_yday] - var janFirst = new Date(date.tm_year+1900, 0, 1); - var firstSunday = janFirst.getDay() === 0 ? janFirst : __addDays(janFirst, 7-janFirst.getDay()); - var endDate = new Date(date.tm_year+1900, date.tm_mon, date.tm_mday); - - // is target date after the first Sunday? - if (compareByDay(firstSunday, endDate) < 0) { - // calculate difference in days between first Sunday and endDate - var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth()-1)-31; - var firstSundayUntilEndJanuary = 31-firstSunday.getDate(); - var days = firstSundayUntilEndJanuary+februaryFirstUntilEndMonth+endDate.getDate(); - return leadingNulls(Math.ceil(days/7), 2); - } - - return compareByDay(firstSunday, janFirst) === 0 ? '01': '00'; - }, - '%V': function(date) { - // Replaced by the week number of the year (Monday as the first day of the week) - // as a decimal number [01,53]. If the week containing 1 January has four - // or more days in the new year, then it is considered week 1. - // Otherwise, it is the last week of the previous year, and the next week is week 1. - // Both January 4th and the first Thursday of January are always in week 1. [ tm_year, tm_wday, tm_yday] - var janFourthThisYear = new Date(date.tm_year+1900, 0, 4); - var janFourthNextYear = new Date(date.tm_year+1901, 0, 4); - - var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear); - var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear); - - var endDate = __addDays(new Date(date.tm_year+1900, 0, 1), date.tm_yday); - - if (compareByDay(endDate, firstWeekStartThisYear) < 0) { - // if given date is before this years first week, then it belongs to the 53rd week of last year - return '53'; - } - - if (compareByDay(firstWeekStartNextYear, endDate) <= 0) { - // if given date is after next years first week, then it belongs to the 01th week of next year - return '01'; - } - - // given date is in between CW 01..53 of this calendar year - var daysDifference; - if (firstWeekStartThisYear.getFullYear() < date.tm_year+1900) { - // first CW of this year starts last year - daysDifference = date.tm_yday+32-firstWeekStartThisYear.getDate() - } else { - // first CW of this year starts this year - daysDifference = date.tm_yday+1-firstWeekStartThisYear.getDate(); - } - return leadingNulls(Math.ceil(daysDifference/7), 2); - }, - '%w': function(date) { - return date.tm_wday; - }, - '%W': function(date) { - // Replaced by the week number of the year as a decimal number [00,53]. - // The first Monday of January is the first day of week 1; - // days in the new year before this are in week 0. [ tm_year, tm_wday, tm_yday] - var janFirst = new Date(date.tm_year, 0, 1); - var firstMonday = janFirst.getDay() === 1 ? janFirst : __addDays(janFirst, janFirst.getDay() === 0 ? 1 : 7-janFirst.getDay()+1); - var endDate = new Date(date.tm_year+1900, date.tm_mon, date.tm_mday); - - // is target date after the first Monday? - if (compareByDay(firstMonday, endDate) < 0) { - var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth()-1)-31; - var firstMondayUntilEndJanuary = 31-firstMonday.getDate(); - var days = firstMondayUntilEndJanuary+februaryFirstUntilEndMonth+endDate.getDate(); - return leadingNulls(Math.ceil(days/7), 2); - } - return compareByDay(firstMonday, janFirst) === 0 ? '01': '00'; - }, - '%y': function(date) { - // Replaced by the last two digits of the year as a decimal number [00,99]. [ tm_year] - return (date.tm_year+1900).toString().substring(2); - }, - '%Y': function(date) { - // Replaced by the year as a decimal number (for example, 1997). [ tm_year] - return date.tm_year+1900; - }, - '%z': function(date) { - // Replaced by the offset from UTC in the ISO 8601:2000 standard format ( +hhmm or -hhmm ). - // For example, "-0430" means 4 hours 30 minutes behind UTC (west of Greenwich). - var off = date.tm_gmtoff; - var ahead = off >= 0; - off = Math.abs(off) / 60; - // convert from minutes into hhmm format (which means 60 minutes = 100 units) - off = (off / 60)*100 + (off % 60); - return (ahead ? '+' : '-') + String("0000" + off).slice(-4); - }, - '%Z': function(date) { - return date.tm_zone; - }, - '%%': function() { - return '%'; - } - }; - for (var rule in EXPANSION_RULES_2) { - if (pattern.includes(rule)) { - pattern = pattern.replace(new RegExp(rule, 'g'), EXPANSION_RULES_2[rule](date)); - } - } - - var bytes = intArrayFromString(pattern, false); - if (bytes.length > maxsize) { - return 0; - } - - writeArrayToMemory(bytes, s); - return bytes.length-1; - } - - function _time(ptr) { - var ret = (Date.now()/1000)|0; - if (ptr) { - HEAP32[((ptr)>>2)] = ret; - } - return ret; - } - - - function setFileTime(path, time) { - path = UTF8ToString(path); - try { - FS.utime(path, time, time); - return 0; - } catch (e) { - if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); - setErrNo(e.errno); - return -1; - } - } - function _utimes(path, times) { - // utimes is just like utime but take an array of 2 times: `struct timeval times[2]` - // times[0] is the new access time (which we currently ignore) - // times[1] is the new modification time. - var time; - if (times) { - var mtime = times + 8; - time = HEAP32[((mtime)>>2)] * 1000; - time += HEAP32[(((mtime)+(4))>>2)] / 1000; - } else { - time = Date.now(); - } - return setFileTime(path, time); - } - -var FSNode = /** @constructor */ function(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - var readMode = 292/*292*/ | 73/*73*/; - var writeMode = 146/*146*/; - Object.defineProperties(FSNode.prototype, { - read: { - get: /** @this{FSNode} */function() { - return (this.mode & readMode) === readMode; - }, - set: /** @this{FSNode} */function(val) { - val ? this.mode |= readMode : this.mode &= ~readMode; - } - }, - write: { - get: /** @this{FSNode} */function() { - return (this.mode & writeMode) === writeMode; - }, - set: /** @this{FSNode} */function(val) { - val ? this.mode |= writeMode : this.mode &= ~writeMode; - } - }, - isFolder: { - get: /** @this{FSNode} */function() { - return FS.isDir(this.mode); - } - }, - isDevice: { - get: /** @this{FSNode} */function() { - return FS.isChrdev(this.mode); - } - } - }); - FS.FSNode = FSNode; - FS.staticInit();Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createDevice"] = FS.createDevice;Module["FS_unlink"] = FS.unlink;; -MONO.export_functions (Module);; -BINDING.export_functions (Module);; -var ASSERTIONS = false; - - - -/** @type {function(string, boolean=, number=)} */ -function intArrayFromString(stringy, dontAddNull, length) { - var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; - var u8array = new Array(len); - var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); - if (dontAddNull) u8array.length = numBytesWritten; - return u8array; -} - -function intArrayToString(array) { - var ret = []; - for (var i = 0; i < array.length; i++) { - var chr = array[i]; - if (chr > 0xFF) { - if (ASSERTIONS) { - assert(false, 'Character code ' + chr + ' (' + String.fromCharCode(chr) + ') at offset ' + i + ' not in 0x00-0xFF.'); - } - chr &= 0xFF; - } - ret.push(String.fromCharCode(chr)); - } - return ret.join(''); -} - - -var asmLibraryArg = { - "__assert_fail": ___assert_fail, - "__clock_gettime": ___clock_gettime, - "__cxa_allocate_exception": ___cxa_allocate_exception, - "__cxa_begin_catch": ___cxa_begin_catch, - "__cxa_end_catch": ___cxa_end_catch, - "__cxa_find_matching_catch_2": ___cxa_find_matching_catch_2, - "__cxa_find_matching_catch_3": ___cxa_find_matching_catch_3, - "__cxa_free_exception": ___cxa_free_exception, - "__cxa_rethrow": ___cxa_rethrow, - "__cxa_throw": ___cxa_throw, - "__localtime_r": ___localtime_r, - "__resumeException": ___resumeException, - "__sys_access": ___sys_access, - "__sys_chdir": ___sys_chdir, - "__sys_chmod": ___sys_chmod, - "__sys_chown32": ___sys_chown32, - "__sys_connect": ___sys_connect, - "__sys_fadvise64_64": ___sys_fadvise64_64, - "__sys_fchmod": ___sys_fchmod, - "__sys_fchown32": ___sys_fchown32, - "__sys_fcntl64": ___sys_fcntl64, - "__sys_fstat64": ___sys_fstat64, - "__sys_fstatfs64": ___sys_fstatfs64, - "__sys_ftruncate64": ___sys_ftruncate64, - "__sys_getcwd": ___sys_getcwd, - "__sys_getdents64": ___sys_getdents64, - "__sys_geteuid32": ___sys_geteuid32, - "__sys_getpid": ___sys_getpid, - "__sys_getrusage": ___sys_getrusage, - "__sys_ioctl": ___sys_ioctl, - "__sys_link": ___sys_link, - "__sys_lstat64": ___sys_lstat64, - "__sys_madvise1": ___sys_madvise1, - "__sys_mkdir": ___sys_mkdir, - "__sys_mmap2": ___sys_mmap2, - "__sys_msync": ___sys_msync, - "__sys_munmap": ___sys_munmap, - "__sys_open": ___sys_open, - "__sys_readlink": ___sys_readlink, - "__sys_recvfrom": ___sys_recvfrom, - "__sys_rename": ___sys_rename, - "__sys_rmdir": ___sys_rmdir, - "__sys_sendto": ___sys_sendto, - "__sys_setsockopt": ___sys_setsockopt, - "__sys_shutdown": ___sys_shutdown, - "__sys_socket": ___sys_socket, - "__sys_stat64": ___sys_stat64, - "__sys_symlink": ___sys_symlink, - "__sys_unlink": ___sys_unlink, - "__sys_utimensat": ___sys_utimensat, - "abort": _abort, - "clock_getres": _clock_getres, - "clock_gettime": _clock_gettime, - "compile_function": compile_function, - "difftime": _difftime, - "dlclose": _dlclose, - "dlerror": _dlerror, - "dlopen": _dlopen, - "dlsym": _dlsym, - "dotnet_browser_entropy": _dotnet_browser_entropy, - "emscripten_asm_const_int": _emscripten_asm_const_int, - "emscripten_get_heap_max": _emscripten_get_heap_max, - "emscripten_memcpy_big": _emscripten_memcpy_big, - "emscripten_resize_heap": _emscripten_resize_heap, - "emscripten_thread_sleep": _emscripten_thread_sleep, - "environ_get": _environ_get, - "environ_sizes_get": _environ_sizes_get, - "exit": _exit, - "fd_close": _fd_close, - "fd_fdstat_get": _fd_fdstat_get, - "fd_pread": _fd_pread, - "fd_pwrite": _fd_pwrite, - "fd_read": _fd_read, - "fd_seek": _fd_seek, - "fd_sync": _fd_sync, - "fd_write": _fd_write, - "flock": _flock, - "gai_strerror": _gai_strerror, - "getTempRet0": _getTempRet0, - "gettimeofday": _gettimeofday, - "gmtime_r": _gmtime_r, - "invoke_i": invoke_i, - "invoke_ii": invoke_ii, - "invoke_iii": invoke_iii, - "invoke_iiii": invoke_iiii, - "invoke_v": invoke_v, - "invoke_vi": invoke_vi, - "invoke_vii": invoke_vii, - "invoke_viii": invoke_viii, - "llvm_eh_typeid_for": _llvm_eh_typeid_for, - "localtime_r": _localtime_r, - "mono_set_timeout": _mono_set_timeout, - "mono_wasm_add_event_listener": _mono_wasm_add_event_listener, - "mono_wasm_asm_loaded": _mono_wasm_asm_loaded, - "mono_wasm_create_cs_owned_object": _mono_wasm_create_cs_owned_object, - "mono_wasm_fire_debugger_agent_message": _mono_wasm_fire_debugger_agent_message, - "mono_wasm_get_by_index": _mono_wasm_get_by_index, - "mono_wasm_get_global_object": _mono_wasm_get_global_object, - "mono_wasm_get_object_property": _mono_wasm_get_object_property, - "mono_wasm_invoke_js_blazor": _mono_wasm_invoke_js_blazor, - "mono_wasm_invoke_js_marshalled": _mono_wasm_invoke_js_marshalled, - "mono_wasm_invoke_js_unmarshalled": _mono_wasm_invoke_js_unmarshalled, - "mono_wasm_invoke_js_with_args": _mono_wasm_invoke_js_with_args, - "mono_wasm_release_cs_owned_object": _mono_wasm_release_cs_owned_object, - "mono_wasm_remove_event_listener": _mono_wasm_remove_event_listener, - "mono_wasm_set_by_index": _mono_wasm_set_by_index, - "mono_wasm_set_object_property": _mono_wasm_set_object_property, - "mono_wasm_typed_array_copy_from": _mono_wasm_typed_array_copy_from, - "mono_wasm_typed_array_copy_to": _mono_wasm_typed_array_copy_to, - "mono_wasm_typed_array_from": _mono_wasm_typed_array_from, - "mono_wasm_typed_array_to_array": _mono_wasm_typed_array_to_array, - "pthread_create": _pthread_create, - "pthread_join": _pthread_join, - "schedule_background_exec": _schedule_background_exec, - "setTempRet0": _setTempRet0, - "strftime": _strftime, - "time": _time, - "tzset": _tzset, - "utimes": _utimes -}; -var asm = createWasm(); -/** @type {function(...*):?} */ -var ___wasm_call_ctors = Module["___wasm_call_ctors"] = function() { - return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["__wasm_call_ctors"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _memset = Module["_memset"] = function() { - return (_memset = Module["_memset"] = Module["asm"]["memset"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var ___errno_location = Module["___errno_location"] = function() { - return (___errno_location = Module["___errno_location"] = Module["asm"]["__errno_location"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _malloc = Module["_malloc"] = function() { - return (_malloc = Module["_malloc"] = Module["asm"]["malloc"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _free = Module["_free"] = function() { - return (_free = Module["_free"] = Module["asm"]["free"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_register_root = Module["_mono_wasm_register_root"] = function() { - return (_mono_wasm_register_root = Module["_mono_wasm_register_root"] = Module["asm"]["mono_wasm_register_root"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_deregister_root = Module["_mono_wasm_deregister_root"] = function() { - return (_mono_wasm_deregister_root = Module["_mono_wasm_deregister_root"] = Module["asm"]["mono_wasm_deregister_root"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_add_assembly = Module["_mono_wasm_add_assembly"] = function() { - return (_mono_wasm_add_assembly = Module["_mono_wasm_add_assembly"] = Module["asm"]["mono_wasm_add_assembly"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_add_satellite_assembly = Module["_mono_wasm_add_satellite_assembly"] = function() { - return (_mono_wasm_add_satellite_assembly = Module["_mono_wasm_add_satellite_assembly"] = Module["asm"]["mono_wasm_add_satellite_assembly"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_setenv = Module["_mono_wasm_setenv"] = function() { - return (_mono_wasm_setenv = Module["_mono_wasm_setenv"] = Module["asm"]["mono_wasm_setenv"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_register_bundled_satellite_assemblies = Module["_mono_wasm_register_bundled_satellite_assemblies"] = function() { - return (_mono_wasm_register_bundled_satellite_assemblies = Module["_mono_wasm_register_bundled_satellite_assemblies"] = Module["asm"]["mono_wasm_register_bundled_satellite_assemblies"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_load_runtime = Module["_mono_wasm_load_runtime"] = function() { - return (_mono_wasm_load_runtime = Module["_mono_wasm_load_runtime"] = Module["asm"]["mono_wasm_load_runtime"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_load = Module["_mono_wasm_assembly_load"] = function() { - return (_mono_wasm_assembly_load = Module["_mono_wasm_assembly_load"] = Module["asm"]["mono_wasm_assembly_load"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_find_corlib_class = Module["_mono_wasm_find_corlib_class"] = function() { - return (_mono_wasm_find_corlib_class = Module["_mono_wasm_find_corlib_class"] = Module["asm"]["mono_wasm_find_corlib_class"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_find_class = Module["_mono_wasm_assembly_find_class"] = function() { - return (_mono_wasm_assembly_find_class = Module["_mono_wasm_assembly_find_class"] = Module["asm"]["mono_wasm_assembly_find_class"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_find_method = Module["_mono_wasm_assembly_find_method"] = function() { - return (_mono_wasm_assembly_find_method = Module["_mono_wasm_assembly_find_method"] = Module["asm"]["mono_wasm_assembly_find_method"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_get_delegate_invoke = Module["_mono_wasm_get_delegate_invoke"] = function() { - return (_mono_wasm_get_delegate_invoke = Module["_mono_wasm_get_delegate_invoke"] = Module["asm"]["mono_wasm_get_delegate_invoke"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_box_primitive = Module["_mono_wasm_box_primitive"] = function() { - return (_mono_wasm_box_primitive = Module["_mono_wasm_box_primitive"] = Module["asm"]["mono_wasm_box_primitive"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_invoke_method = Module["_mono_wasm_invoke_method"] = function() { - return (_mono_wasm_invoke_method = Module["_mono_wasm_invoke_method"] = Module["asm"]["mono_wasm_invoke_method"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_get_entry_point = Module["_mono_wasm_assembly_get_entry_point"] = function() { - return (_mono_wasm_assembly_get_entry_point = Module["_mono_wasm_assembly_get_entry_point"] = Module["asm"]["mono_wasm_assembly_get_entry_point"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_get_utf8 = Module["_mono_wasm_string_get_utf8"] = function() { - return (_mono_wasm_string_get_utf8 = Module["_mono_wasm_string_get_utf8"] = Module["asm"]["mono_wasm_string_get_utf8"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_convert = Module["_mono_wasm_string_convert"] = function() { - return (_mono_wasm_string_convert = Module["_mono_wasm_string_convert"] = Module["asm"]["mono_wasm_string_convert"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_from_js = Module["_mono_wasm_string_from_js"] = function() { - return (_mono_wasm_string_from_js = Module["_mono_wasm_string_from_js"] = Module["asm"]["mono_wasm_string_from_js"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_from_utf16 = Module["_mono_wasm_string_from_utf16"] = function() { - return (_mono_wasm_string_from_utf16 = Module["_mono_wasm_string_from_utf16"] = Module["asm"]["mono_wasm_string_from_utf16"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_get_obj_type = Module["_mono_wasm_get_obj_type"] = function() { - return (_mono_wasm_get_obj_type = Module["_mono_wasm_get_obj_type"] = Module["asm"]["mono_wasm_get_obj_type"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_try_unbox_primitive_and_get_type = Module["_mono_wasm_try_unbox_primitive_and_get_type"] = function() { - return (_mono_wasm_try_unbox_primitive_and_get_type = Module["_mono_wasm_try_unbox_primitive_and_get_type"] = Module["asm"]["mono_wasm_try_unbox_primitive_and_get_type"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_unbox_int = Module["_mono_unbox_int"] = function() { - return (_mono_unbox_int = Module["_mono_unbox_int"] = Module["asm"]["mono_unbox_int"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_array_length = Module["_mono_wasm_array_length"] = function() { - return (_mono_wasm_array_length = Module["_mono_wasm_array_length"] = Module["asm"]["mono_wasm_array_length"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_array_get = Module["_mono_wasm_array_get"] = function() { - return (_mono_wasm_array_get = Module["_mono_wasm_array_get"] = Module["asm"]["mono_wasm_array_get"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_obj_array_new = Module["_mono_wasm_obj_array_new"] = function() { - return (_mono_wasm_obj_array_new = Module["_mono_wasm_obj_array_new"] = Module["asm"]["mono_wasm_obj_array_new"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_obj_array_set = Module["_mono_wasm_obj_array_set"] = function() { - return (_mono_wasm_obj_array_set = Module["_mono_wasm_obj_array_set"] = Module["asm"]["mono_wasm_obj_array_set"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_array_new = Module["_mono_wasm_string_array_new"] = function() { - return (_mono_wasm_string_array_new = Module["_mono_wasm_string_array_new"] = Module["asm"]["mono_wasm_string_array_new"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_exec_regression = Module["_mono_wasm_exec_regression"] = function() { - return (_mono_wasm_exec_regression = Module["_mono_wasm_exec_regression"] = Module["asm"]["mono_wasm_exec_regression"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_exit = Module["_mono_wasm_exit"] = function() { - return (_mono_wasm_exit = Module["_mono_wasm_exit"] = Module["asm"]["mono_wasm_exit"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_set_main_args = Module["_mono_wasm_set_main_args"] = function() { - return (_mono_wasm_set_main_args = Module["_mono_wasm_set_main_args"] = Module["asm"]["mono_wasm_set_main_args"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_strdup = Module["_mono_wasm_strdup"] = function() { - return (_mono_wasm_strdup = Module["_mono_wasm_strdup"] = Module["asm"]["mono_wasm_strdup"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_parse_runtime_options = Module["_mono_wasm_parse_runtime_options"] = function() { - return (_mono_wasm_parse_runtime_options = Module["_mono_wasm_parse_runtime_options"] = Module["asm"]["mono_wasm_parse_runtime_options"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_enable_on_demand_gc = Module["_mono_wasm_enable_on_demand_gc"] = function() { - return (_mono_wasm_enable_on_demand_gc = Module["_mono_wasm_enable_on_demand_gc"] = Module["asm"]["mono_wasm_enable_on_demand_gc"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_intern_string = Module["_mono_wasm_intern_string"] = function() { - return (_mono_wasm_intern_string = Module["_mono_wasm_intern_string"] = Module["asm"]["mono_wasm_intern_string"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_get_data = Module["_mono_wasm_string_get_data"] = function() { - return (_mono_wasm_string_get_data = Module["_mono_wasm_string_get_data"] = Module["asm"]["mono_wasm_string_get_data"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_typed_array_new = Module["_mono_wasm_typed_array_new"] = function() { - return (_mono_wasm_typed_array_new = Module["_mono_wasm_typed_array_new"] = Module["asm"]["mono_wasm_typed_array_new"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_unbox_enum = Module["_mono_wasm_unbox_enum"] = function() { - return (_mono_wasm_unbox_enum = Module["_mono_wasm_unbox_enum"] = Module["asm"]["mono_wasm_unbox_enum"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_set_is_debugger_attached = Module["_mono_wasm_set_is_debugger_attached"] = function() { - return (_mono_wasm_set_is_debugger_attached = Module["_mono_wasm_set_is_debugger_attached"] = Module["asm"]["mono_wasm_set_is_debugger_attached"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_send_dbg_command_with_parms = Module["_mono_wasm_send_dbg_command_with_parms"] = function() { - return (_mono_wasm_send_dbg_command_with_parms = Module["_mono_wasm_send_dbg_command_with_parms"] = Module["asm"]["mono_wasm_send_dbg_command_with_parms"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_send_dbg_command = Module["_mono_wasm_send_dbg_command"] = function() { - return (_mono_wasm_send_dbg_command = Module["_mono_wasm_send_dbg_command"] = Module["asm"]["mono_wasm_send_dbg_command"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _putchar = Module["_putchar"] = function() { - return (_putchar = Module["_putchar"] = Module["asm"]["putchar"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_background_exec = Module["_mono_background_exec"] = function() { - return (_mono_background_exec = Module["_mono_background_exec"] = Module["asm"]["mono_background_exec"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _htons = Module["_htons"] = function() { - return (_htons = Module["_htons"] = Module["asm"]["htons"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_get_icudt_name = Module["_mono_wasm_get_icudt_name"] = function() { - return (_mono_wasm_get_icudt_name = Module["_mono_wasm_get_icudt_name"] = Module["asm"]["mono_wasm_get_icudt_name"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_load_icu_data = Module["_mono_wasm_load_icu_data"] = function() { - return (_mono_wasm_load_icu_data = Module["_mono_wasm_load_icu_data"] = Module["asm"]["mono_wasm_load_icu_data"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_print_method_from_ip = Module["_mono_print_method_from_ip"] = function() { - return (_mono_print_method_from_ip = Module["_mono_print_method_from_ip"] = Module["asm"]["mono_print_method_from_ip"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_set_timeout_exec = Module["_mono_set_timeout_exec"] = function() { - return (_mono_set_timeout_exec = Module["_mono_set_timeout_exec"] = Module["asm"]["mono_set_timeout_exec"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _ntohs = Module["_ntohs"] = function() { - return (_ntohs = Module["_ntohs"] = Module["asm"]["ntohs"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _emscripten_main_thread_process_queued_calls = Module["_emscripten_main_thread_process_queued_calls"] = function() { - return (_emscripten_main_thread_process_queued_calls = Module["_emscripten_main_thread_process_queued_calls"] = Module["asm"]["emscripten_main_thread_process_queued_calls"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _htonl = Module["_htonl"] = function() { - return (_htonl = Module["_htonl"] = Module["asm"]["htonl"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var __get_tzname = Module["__get_tzname"] = function() { - return (__get_tzname = Module["__get_tzname"] = Module["asm"]["_get_tzname"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var __get_daylight = Module["__get_daylight"] = function() { - return (__get_daylight = Module["__get_daylight"] = Module["asm"]["_get_daylight"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var __get_timezone = Module["__get_timezone"] = function() { - return (__get_timezone = Module["__get_timezone"] = Module["asm"]["_get_timezone"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var stackSave = Module["stackSave"] = function() { - return (stackSave = Module["stackSave"] = Module["asm"]["stackSave"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var stackRestore = Module["stackRestore"] = function() { - return (stackRestore = Module["stackRestore"] = Module["asm"]["stackRestore"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var stackAlloc = Module["stackAlloc"] = function() { - return (stackAlloc = Module["stackAlloc"] = Module["asm"]["stackAlloc"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _setThrew = Module["_setThrew"] = function() { - return (_setThrew = Module["_setThrew"] = Module["asm"]["setThrew"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var ___cxa_can_catch = Module["___cxa_can_catch"] = function() { - return (___cxa_can_catch = Module["___cxa_can_catch"] = Module["asm"]["__cxa_can_catch"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var ___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = function() { - return (___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = Module["asm"]["__cxa_is_pointer_type"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _memalign = Module["_memalign"] = function() { - return (_memalign = Module["_memalign"] = Module["asm"]["memalign"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiij = Module["dynCall_iiiij"] = function() { - return (dynCall_iiiij = Module["dynCall_iiiij"] = Module["asm"]["dynCall_iiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vijii = Module["dynCall_vijii"] = function() { - return (dynCall_vijii = Module["dynCall_vijii"] = Module["asm"]["dynCall_vijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijj = Module["dynCall_iijj"] = function() { - return (dynCall_iijj = Module["dynCall_iijj"] = Module["asm"]["dynCall_iijj"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iij = Module["dynCall_iij"] = function() { - return (dynCall_iij = Module["dynCall_iij"] = Module["asm"]["dynCall_iij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijii = Module["dynCall_iijii"] = function() { - return (dynCall_iijii = Module["dynCall_iijii"] = Module["asm"]["dynCall_iijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiji = Module["dynCall_iiji"] = function() { - return (dynCall_iiji = Module["dynCall_iiji"] = Module["asm"]["dynCall_iiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiiiij = Module["dynCall_iiiiiij"] = function() { - return (dynCall_iiiiiij = Module["dynCall_iiiiiij"] = Module["asm"]["dynCall_iiiiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiij = Module["dynCall_iiij"] = function() { - return (dynCall_iiij = Module["dynCall_iiij"] = Module["asm"]["dynCall_iiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jii = Module["dynCall_jii"] = function() { - return (dynCall_jii = Module["dynCall_jii"] = Module["asm"]["dynCall_jii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_ji = Module["dynCall_ji"] = function() { - return (dynCall_ji = Module["dynCall_ji"] = Module["asm"]["dynCall_ji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vij = Module["dynCall_vij"] = function() { - return (dynCall_vij = Module["dynCall_vij"] = Module["asm"]["dynCall_vij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiiijii = Module["dynCall_iiiiijii"] = function() { - return (dynCall_iiiiijii = Module["dynCall_iiiiijii"] = Module["asm"]["dynCall_iiiiijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_j = Module["dynCall_j"] = function() { - return (dynCall_j = Module["dynCall_j"] = Module["asm"]["dynCall_j"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jj = Module["dynCall_jj"] = function() { - return (dynCall_jj = Module["dynCall_jj"] = Module["asm"]["dynCall_jj"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiij = Module["dynCall_jiij"] = function() { - return (dynCall_jiij = Module["dynCall_jiij"] = Module["asm"]["dynCall_jiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiiji = Module["dynCall_iiiiji"] = function() { - return (dynCall_iiiiji = Module["dynCall_iiiiji"] = Module["asm"]["dynCall_iiiiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiijii = Module["dynCall_iiiijii"] = function() { - return (dynCall_iiiijii = Module["dynCall_iiiijii"] = Module["asm"]["dynCall_iiiijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_ij = Module["dynCall_ij"] = function() { - return (dynCall_ij = Module["dynCall_ij"] = Module["asm"]["dynCall_ij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viiji = Module["dynCall_viiji"] = function() { - return (dynCall_viiji = Module["dynCall_viiji"] = Module["asm"]["dynCall_viiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viijii = Module["dynCall_viijii"] = function() { - return (dynCall_viijii = Module["dynCall_viijii"] = Module["asm"]["dynCall_viijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiiiiiiiii = Module["dynCall_jiiiiiiiii"] = function() { - return (dynCall_jiiiiiiiii = Module["dynCall_jiiiiiiiii"] = Module["asm"]["dynCall_jiiiiiiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vj = Module["dynCall_vj"] = function() { - return (dynCall_vj = Module["dynCall_vj"] = Module["asm"]["dynCall_vj"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iji = Module["dynCall_iji"] = function() { - return (dynCall_iji = Module["dynCall_iji"] = Module["asm"]["dynCall_iji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiijiiiii = Module["dynCall_iiijiiiii"] = function() { - return (dynCall_iiijiiiii = Module["dynCall_iiijiiiii"] = Module["asm"]["dynCall_iiijiiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijjiii = Module["dynCall_iijjiii"] = function() { - return (dynCall_iijjiii = Module["dynCall_iijjiii"] = Module["asm"]["dynCall_iijjiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vijjjii = Module["dynCall_vijjjii"] = function() { - return (dynCall_vijjjii = Module["dynCall_vijjjii"] = Module["asm"]["dynCall_vijjjii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijiii = Module["dynCall_iijiii"] = function() { - return (dynCall_iijiii = Module["dynCall_iijiii"] = Module["asm"]["dynCall_iijiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vijiiii = Module["dynCall_vijiiii"] = function() { - return (dynCall_vijiiii = Module["dynCall_vijiiii"] = Module["asm"]["dynCall_vijiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jij = Module["dynCall_jij"] = function() { - return (dynCall_jij = Module["dynCall_jij"] = Module["asm"]["dynCall_jij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijiiii = Module["dynCall_iijiiii"] = function() { - return (dynCall_iijiiii = Module["dynCall_iijiiii"] = Module["asm"]["dynCall_iijiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jd = Module["dynCall_jd"] = function() { - return (dynCall_jd = Module["dynCall_jd"] = Module["asm"]["dynCall_jd"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jf = Module["dynCall_jf"] = function() { - return (dynCall_jf = Module["dynCall_jf"] = Module["asm"]["dynCall_jf"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiji = Module["dynCall_jiji"] = function() { - return (dynCall_jiji = Module["dynCall_jiji"] = Module["asm"]["dynCall_jiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viiiij = Module["dynCall_viiiij"] = function() { - return (dynCall_viiiij = Module["dynCall_viiiij"] = Module["asm"]["dynCall_viiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viij = Module["dynCall_viij"] = function() { - return (dynCall_viij = Module["dynCall_viij"] = Module["asm"]["dynCall_viij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijji = Module["dynCall_iijji"] = function() { - return (dynCall_iijji = Module["dynCall_iijji"] = Module["asm"]["dynCall_iijji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijiiij = Module["dynCall_iijiiij"] = function() { - return (dynCall_iijiiij = Module["dynCall_iijiiij"] = Module["asm"]["dynCall_iijiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiiij = Module["dynCall_jiiij"] = function() { - return (dynCall_jiiij = Module["dynCall_jiiij"] = Module["asm"]["dynCall_jiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jijj = Module["dynCall_jijj"] = function() { - return (dynCall_jijj = Module["dynCall_jijj"] = Module["asm"]["dynCall_jijj"]).apply(null, arguments); -}; - - -function invoke_vi(index,a1) { - var sp = stackSave(); - try { - wasmTable.get(index)(a1); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_ii(index,a1) { - var sp = stackSave(); - try { - return wasmTable.get(index)(a1); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_iii(index,a1,a2) { - var sp = stackSave(); - try { - return wasmTable.get(index)(a1,a2); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_vii(index,a1,a2) { - var sp = stackSave(); - try { - wasmTable.get(index)(a1,a2); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_i(index) { - var sp = stackSave(); - try { - return wasmTable.get(index)(); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_v(index) { - var sp = stackSave(); - try { - wasmTable.get(index)(); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_iiii(index,a1,a2,a3) { - var sp = stackSave(); - try { - return wasmTable.get(index)(a1,a2,a3); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_viii(index,a1,a2,a3) { - var sp = stackSave(); - try { - wasmTable.get(index)(a1,a2,a3); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - - - - -// === Auto-generated postamble setup entry stuff === - -Module["ccall"] = ccall; -Module["cwrap"] = cwrap; -Module["setValue"] = setValue; -Module["getValue"] = getValue; -Module["UTF8ArrayToString"] = UTF8ArrayToString; -Module["UTF8ToString"] = UTF8ToString; -Module["addRunDependency"] = addRunDependency; -Module["removeRunDependency"] = removeRunDependency; -Module["FS_createPath"] = FS.createPath; -Module["FS_createDataFile"] = FS.createDataFile; -Module["FS_createPreloadedFile"] = FS.createPreloadedFile; -Module["FS_createLazyFile"] = FS.createLazyFile; -Module["FS_createDevice"] = FS.createDevice; -Module["FS_unlink"] = FS.unlink; -Module["addFunction"] = addFunction; - -var calledRun; - -/** - * @constructor - * @this {ExitStatus} - */ -function ExitStatus(status) { - this.name = "ExitStatus"; - this.message = "Program terminated with exit(" + status + ")"; - this.status = status; -} - -var calledMain = false; - -dependenciesFulfilled = function runCaller() { - // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) - if (!calledRun) run(); - if (!calledRun) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled -}; - -/** @type {function(Array=)} */ -function run(args) { - args = args || arguments_; - - if (runDependencies > 0) { - return; - } - - preRun(); - - // a preRun added a dependency, run will be called later - if (runDependencies > 0) { - return; - } - - function doRun() { - // run may have just been called through dependencies being fulfilled just in this very frame, - // or while the async setStatus time below was happening - if (calledRun) return; - calledRun = true; - Module['calledRun'] = true; - - if (ABORT) return; - - initRuntime(); - - if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); - - postRun(); - } - - if (Module['setStatus']) { - Module['setStatus']('Running...'); - setTimeout(function() { - setTimeout(function() { - Module['setStatus'](''); - }, 1); - doRun(); - }, 1); - } else - { - doRun(); - } -} -Module['run'] = run; - -/** @param {boolean|number=} implicit */ -function exit(status, implicit) { - EXITSTATUS = status; - - // if this is just main exit-ing implicitly, and the status is 0, then we - // don't need to do anything here and can just leave. if the status is - // non-zero, though, then we need to report it. - // (we may have warned about this earlier, if a situation justifies doing so) - if (implicit && keepRuntimeAlive() && status === 0) { - return; - } - - if (keepRuntimeAlive()) { - } else { - - exitRuntime(); - - if (Module['onExit']) Module['onExit'](status); - - ABORT = true; - } - - quit_(status, new ExitStatus(status)); -} - -if (Module['preInit']) { - if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; - while (Module['preInit'].length > 0) { - Module['preInit'].pop()(); - } -} - -run(); - - - - - diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js.gz deleted file mode 100644 index 058e2d5f..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat deleted file mode 100755 index 4500d17a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz deleted file mode 100644 index 7ba234f4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm deleted file mode 100755 index fd60ede6..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz deleted file mode 100644 index 915a5313..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a deleted file mode 100755 index 01e102cf..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a.gz deleted file mode 100644 index 443117a4..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat deleted file mode 100755 index 7281a276..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz deleted file mode 100644 index 7e8934be..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat deleted file mode 100755 index a4ef6d70..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz deleted file mode 100644 index 24301e7b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat deleted file mode 100755 index 4b39b3fa..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz deleted file mode 100644 index 2d26d530..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat deleted file mode 100755 index bab52e7a..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz deleted file mode 100644 index 0da58390..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll deleted file mode 100755 index 1538e2f8..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz deleted file mode 100644 index e0c73508..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll deleted file mode 100755 index b12dda4b..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll and /dev/null differ diff --git a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz b/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz deleted file mode 100644 index efcec999..00000000 Binary files a/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz and /dev/null differ diff --git a/Account_SQLite/obj/Account_SQLite.csproj.nuget.dgspec.json b/Account_SQLite/obj/Account_SQLite.csproj.nuget.dgspec.json deleted file mode 100644 index a83e6b0d..00000000 --- a/Account_SQLite/obj/Account_SQLite.csproj.nuget.dgspec.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "format": 1, - "restore": { - "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj": {} - }, - "projects": { - "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj", - "projectName": "Account_SQLite", - "projectPath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj", - "packagesPath": "/Users/normrasmussen/.nuget/packages/", - "outputPath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/", - "projectStyle": "PackageReference", - "configFilePaths": [ - "/Users/normrasmussen/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Microsoft.AspNetCore.Components.WebAssembly": { - "target": "Package", - "version": "[6.0.4, )" - }, - "Microsoft.AspNetCore.Components.WebAssembly.DevServer": { - "suppressParent": "All", - "target": "Package", - "version": "[6.0.4, )" - }, - "Radzen.Blazor": { - "target": "Package", - "version": "[3.18.15, )" - }, - "SqliteWasmHelper": { - "target": "Package", - "version": "[1.0.43-beta-g31b50d1f54, )" - }, - "sqlite-helper": { - "target": "Package", - "version": "[1.3.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.301/RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "browser-wasm": { - "#import": [] - } - } - } - } -} \ No newline at end of file diff --git a/Account_SQLite/obj/Account_SQLite.csproj.nuget.g.props b/Account_SQLite/obj/Account_SQLite.csproj.nuget.g.props deleted file mode 100644 index 1d98f480..00000000 --- a/Account_SQLite/obj/Account_SQLite.csproj.nuget.g.props +++ /dev/null @@ -1,33 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - /Users/normrasmussen/.nuget/packages/ - /Users/normrasmussen/.nuget/packages/ - PackageReference - 6.2.1 - - - - - - - SqliteWasmHelper - 1.0.43-beta-g31b50d1f54 - Content - false - False - wwwroot/browserCache.js - - - - - - - - - /Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly.devserver/6.0.4 - - \ No newline at end of file diff --git a/Account_SQLite/obj/Account_SQLite.csproj.nuget.g.targets b/Account_SQLite/obj/Account_SQLite.csproj.nuget.g.targets deleted file mode 100644 index a692b89a..00000000 --- a/Account_SQLite/obj/Account_SQLite.csproj.nuget.g.targets +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Account_SQLite/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Account_SQLite/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index f795be5c..00000000 --- a/Account_SQLite/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfo.cs b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfo.cs deleted file mode 100644 index aa6f89d1..00000000 --- a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Account_SQLite")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Account_SQLite")] -[assembly: System.Reflection.AssemblyTitleAttribute("Account_SQLite")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfoInputs.cache b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfoInputs.cache deleted file mode 100644 index e5a7580f..00000000 --- a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -665ed0f4a5fd66dc3bb8001acfd5b5347788ae64 diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GeneratedMSBuildEditorConfig.editorconfig b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1055a2cc..00000000 --- a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,47 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = false -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = browser -build_property.EnableSingleFileAnalyzer = -build_property.EnableTrimAnalyzer = true -build_property.IncludeAllContentForSelfExtract = -build_property.RootNamespace = Account_SQLite -build_property.RootNamespace = Account_SQLite -build_property.ProjectDir = /Users/normrasmussen/Documents/Northpass/Account_SQLite/ -build_property.RazorLangVersion = 6.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = /Users/normrasmussen/Documents/Northpass/Account_SQLite -build_property._RazorSourceGeneratorDebug = - -[/Users/normrasmussen/Documents/Northpass/Account_SQLite/App.razor] -build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/Index.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXgucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/_Host.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX0hvc3QucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/_Layout.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX0xheW91dC5yYXpvcg== -build_metadata.AdditionalFiles.CssScope = - -[/Users/normrasmussen/Documents/Northpass/Account_SQLite/_Imports.razor] -build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Shared/MainLayout.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL01haW5MYXlvdXQucmF6b3I= -build_metadata.AdditionalFiles.CssScope = b-jn0vslp9lp - -[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Shared/NavMenu.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL05hdk1lbnUucmF6b3I= -build_metadata.AdditionalFiles.CssScope = b-hruea6gb89 diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GlobalUsings.g.cs b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GlobalUsings.g.cs deleted file mode 100644 index 0103b592..00000000 --- a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GlobalUsings.g.cs +++ /dev/null @@ -1,11 +0,0 @@ -// -global using global::Microsoft.Extensions.Configuration; -global using global::Microsoft.Extensions.DependencyInjection; -global using global::Microsoft.Extensions.Logging; -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.MvcApplicationPartsAssemblyInfo.cache b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29b..00000000 diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.assets.cache b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.assets.cache deleted file mode 100644 index af2f98a6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.assets.cache and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.AssemblyReference.cache b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.AssemblyReference.cache deleted file mode 100644 index 30b55bcf..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CopyComplete b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CopyComplete deleted file mode 100644 index e69de29b..00000000 diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CoreCompileInputs.cache b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CoreCompileInputs.cache deleted file mode 100644 index b94450d9..00000000 --- a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -575f2b9f4d005ce57f65be9887a370df73f05f1d diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.FileListAbsolute.txt b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.FileListAbsolute.txt deleted file mode 100644 index 78af9e09..00000000 --- a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,889 +0,0 @@ -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.AssemblyReference.cache -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GeneratedMSBuildEditorConfig.editorconfig -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfoInputs.cache -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfo.cs -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CoreCompileInputs.cache -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.MvcApplicationPartsAssemblyInfo.cache -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/appsettings.Development.json -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/appsettings.json -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime.json -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.pdb -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SqliteWasmHelper.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/staticwebassets.build.json -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/staticwebassets.development.json -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CopyComplete -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/refint/Account_SQLite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.pdb -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Options.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Radzen.Blazor.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SQLite.Net.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/e_sqlite3.a -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.CSharp.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.VisualBasic.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Win32.Registry.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.AppContext.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Buffers.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Collections.Concurrent.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Collections.Immutable.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Collections.NonGeneric.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Collections.Specialized.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Collections.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Annotations.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ComponentModel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Configuration.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Console.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Core.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Data.Common.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Data.DataSetExtensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Data.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Contracts.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Debug.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Process.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tools.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Diagnostics.Tracing.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Drawing.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Drawing.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Dynamic.Runtime.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Formats.Asn1.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Globalization.Calendars.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Globalization.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Globalization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.Brotli.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Compression.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.FileSystem.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.IsolatedStorage.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Pipes.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Linq.Expressions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Linq.Parallel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Linq.Queryable.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Linq.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Memory.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Http.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Http.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.HttpListener.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Mail.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.NameResolution.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.NetworkInformation.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Ping.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Quic.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Requests.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Security.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.ServicePoint.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.Sockets.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.WebClient.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.WebProxy.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.Client.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.WebSockets.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Net.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Numerics.Vectors.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Numerics.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ObjectModel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Private.DataContractSerialization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Private.Uri.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.Linq.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Private.Xml.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.Emit.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.Metadata.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Reflection.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Resources.Reader.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Resources.ResourceManager.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Resources.Writer.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Handles.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.InteropServices.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Intrinsics.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Loader.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Numerics.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.Serialization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Runtime.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.AccessControl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Claims.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.Windows.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.Principal.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.SecureString.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Security.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ServiceModel.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ServiceProcess.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Text.Encoding.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Text.Encodings.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Text.Json.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Text.RegularExpressions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Channels.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Overlapped.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Tasks.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Thread.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.ThreadPool.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.Timer.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Threading.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Transactions.Local.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Transactions.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.ValueTuple.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Web.HttpUtility.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Web.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Windows.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.Linq.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.ReaderWriter.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.Serialization.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.XDocument.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.XPath.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlDocument.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.XmlSerializer.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Xml.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/WindowsBase.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/mscorlib.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/netstandard.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.Private.CoreLib.dll -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/dotnet.timezones.blat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/icudt.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/icudt_CJK.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/icudt_EFIGS.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/icudt_no_CJK.dat -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke-table.h -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/runtime-icall-table.h -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/icall-table.h -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-compile.rsp -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/driver.o -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke.o -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/corebindings.o -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-link.rsp -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.wasm -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.js -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/xFv7r9Ii.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/HH+np8ru.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/k2roKodh.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Y4R2M7vg.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5HhZz3K9.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/iSH8aA68.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/EycU5AZA.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VUurIt2N.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/pWIEjruq.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5eY4GF5U.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JjqaMvBJ.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2zEZXe0u.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/8bQLqeih.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/xmiwABxn.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/j++BdFv1.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/4xtw6LPe.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1vm4IFaG.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/mKCm41GD.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/YOMdCEDS.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/f620GeOq.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tmzMw3td.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/wrRolEjk.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/kjMKg2YM.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/l6xNnSyK.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OYiTuEMW.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/U1GjwWQV.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6za3LhEM.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0Iwipr4w.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Qv3EwTy+.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/p+xdbHnC.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vI1ipYqb.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/G6RHxxA7.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/gY7C+Pj0.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VeOJi+Gj.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vrvJMn09.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+sQ5oVnS.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CGGDUrLS.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/ScGxZLHc.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2BVSVm+S.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+tcLfj0H.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/x3ZTCwCx.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6g5IwAqq.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/jBbmVu0Y.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0mHQ+lYF.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/lf6EacQh.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/c0YuPbll.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Hx9AKOya.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/D30ARJVX.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vgE+rhU1.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vpDjtL+6.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Wq3tHjrU.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/FH0Yj4k3.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/MG+l9gKt.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/l6oXNOY5.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/c1AOAAWG.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/eWVBG67y.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2ge50QZE.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/gGwx65ye.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/ttWvaRvQ.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/hApAU2Ux.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UDNB8RFz.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KXXhXkbu.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Pf+Dj+oK.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VQvPAk3v.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/IRFTg+Zn.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JBZLbhsR.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yeh6ldoC.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JY9yV2o0.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/NksrmDDk.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6eQHB3+4.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+Kre5Tpp.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/lKnsk7jv.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/O0n+vaCx.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/GiLT6S0T.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tNIMt8TM.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tLnY+z2a.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vWSmlNx5.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/k+baeXzX.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/hsVedUCV.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/J4UVuU3X.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1l00Hi2C.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/YLu1GWJ8.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/XeLPKmXp.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/IIwZRqn8.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UgfmWOey.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CzDJaXvP.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1WRZXFTn.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Sl0g++2k.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yTICDYKU.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/NSKpvYGD.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OHcrvftp.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/m1I7g+si.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Y5yjli0O.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/peDw+Yy9.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/G+v4Gqyr.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6MQ1jJcK.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+QY0PBsI.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/W0iuVMXb.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/BLUafUvS.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0FKjlXJj.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/eDjy34wv.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OlSr4V7c.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/DMHJGpTb.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/df1c6WT5.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/E64FvjlP.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/aeiE8f7u.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/f0Eijqws.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5EpkVPhj.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tgrMqSNc.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Ht1gJnwo.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/LTEuWA3z.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/91cuMT+c.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2pQ1JqsF.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/e3fzYNFK.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0JQ0c28H.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/7RG3PMhI.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/jbYvZPux.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/4lUgkp+U.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/bThRWctG.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5JyieZfh.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/8jbtvLI5.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Y6HQNyKj.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/68cJW34q.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/od2uW63o.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/gTncO+bt.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/kx7B1ihF.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/o7uAv0wC.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/bL03ttyK.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CGeqtl+O.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/fPziUjLD.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+LRe9Tns.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+JTVyhb1.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/spxJVBGU.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/WcHq51f8.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/FEErnO+2.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/A3Z5u4ys.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/T6EYjrM3.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/sOFvdHMh.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Uz49Tq2y.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/PPCPRXaZ.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/evzhjbZl.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/GA6UnUSo.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VijnN3m+.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VBHSFBan.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/HUmGKp8o.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/IM4GHJDx.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/AG+zWk8B.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/56fZcRR8.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VEpmbc+j.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5pGaLGBy.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/ghYVXx0t.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/b4km8OTJ.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JWwzygqN.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tGWz2oWJ.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/wFpQ4XsM.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KfqDX+eU.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/dbqFKMmc.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yMqHz40p.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/g4IGgIl0.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/lJfRzgHZ.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/P9V4P+3u.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0K+LzERo.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/RiHs74k4.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/TFiMoj8S.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/EYygXBXV.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/sh794WsF.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Zr4es2Pl.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KWzBYWxz.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/h5nmla+E.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/LAErubWT.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OcErHWFw.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/c6j+Y26l.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/jfMvQQ6O.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/E4MUYSbj.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yjo6GPoA.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/kpwabJeh.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/FOVtCNm+.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/wRuJDVjF.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/x3WDy8sM.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tYeVKjgS.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/rIzXv3eE.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/NtPMok5n.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OkhxxYtB.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/PzgkgiCU.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KvLNa2Bc.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/M6gJA7L2.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/qHHiOcs6.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UjV8g6Wb.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/YMLNoDcs.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/mYkuZEdi.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/7Yzj389P.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6GAA+LDT.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/MuWbHBuW.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/bQDTZzZq.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OhuJiVbC.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Ss96Cozm.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/WZrCPLxf.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/QIoil28w.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/de5KTgXZ.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CE3HGrFj.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/xdpXJry5.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0fOL2sdj.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5dCjNJ5b.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0QiSef+M.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/qKorz+QM.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2oVtJt50.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1YNe1gPB.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2XfazusX.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/q+C86qWT.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/i9ugRC3H.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JB+CJuXL.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UjjnPjhC.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/S4jcrGte.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UZuk9v7S.gz -/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/blazor.boot.json diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.dll b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.dll deleted file mode 100644 index 1fa0ca5b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.dll and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.pdb b/Account_SQLite/obj/Debug/net6.0/Account_SQLite.pdb deleted file mode 100644 index 0c8ad345..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/Account_SQLite.pdb and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/apphost b/Account_SQLite/obj/Debug/net6.0/apphost deleted file mode 100755 index 1b5307ea..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/apphost and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/blazor.boot.json b/Account_SQLite/obj/Debug/net6.0/blazor.boot.json deleted file mode 100644 index edb63e01..00000000 --- a/Account_SQLite/obj/Debug/net6.0/blazor.boot.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "cacheBootResources": true, - "config": [ ], - "debugBuild": true, - "entryAssembly": "Account_SQLite", - "icuDataMode": 0, - "linkerEnabled": false, - "resources": { - "assembly": { - "Microsoft.AspNetCore.Authorization.dll": "sha256-34F+BnSts\/TON8s8cSZc6roVw6IntMd\/sTrN8WOXiy8=", - "Microsoft.AspNetCore.Components.dll": "sha256-F+JMphRzIMZdciqr5Yf8CXeTA11n\/doTnAdObTPxNm8=", - "Microsoft.AspNetCore.Components.Forms.dll": "sha256-WApptBNmFJ1+dCg+jm360NFshcv7dvfzyBGl8rECTt8=", - "Microsoft.AspNetCore.Components.Web.dll": "sha256-Za1yJA2MY8T6DwapDEeBN9xCYb62MctrT1HKsNSePoE=", - "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-izxJlD6frDIMfvXz53B+rqp7FpLgQypiJO+1kqTMPf4=", - "Microsoft.AspNetCore.Metadata.dll": "sha256-iqHFPB3TeviSbUBknWFRzrVtYoeM5yjCHZzUVHF8vuc=", - "Microsoft.Data.Sqlite.dll": "sha256-2APhdoJiRh+A9T+uyJsqGt0JHq3RdNSC3fPoSSe91YE=", - "Microsoft.EntityFrameworkCore.dll": "sha256-KR5QxHOsgza\/t3BPKA8odzRIa3Js0wrbNVrGelvoZSI=", - "Microsoft.EntityFrameworkCore.Abstractions.dll": "sha256-UJ1JMLF3tbjK8Do2sbQwuFmLe08qMLv3y+TkkAHRKk4=", - "Microsoft.EntityFrameworkCore.Relational.dll": "sha256-9row\/IjY5yIxPIkKlF\/BajMoZ4AAioTVcJw48rwKctQ=", - "Microsoft.EntityFrameworkCore.Sqlite.dll": "sha256-XEzuSft3Ntqm6zzICOw4rsa2NAiLInTH\/+dH7nNzMxQ=", - "Microsoft.Extensions.Caching.Abstractions.dll": "sha256-WLcZIKlgct2nj4hpaBvZXfHorQG9DH9B\/FZ2IKePG2I=", - "Microsoft.Extensions.Caching.Memory.dll": "sha256-aOJetx2rPupAGsXg2NCRL5p+\/xdzMyUSbmn24txWfQw=", - "Microsoft.Extensions.Configuration.dll": "sha256-c8yYhfrOBLEnOBglLTu9peXSbJDwFpuT4UQiXSv28Og=", - "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-5Otet+KKVUjNkE\/hqcNWmt75H1K2VNuKPFagpRd6Ces=", - "Microsoft.Extensions.Configuration.Binder.dll": "sha256-wNKhG3Ovx8jqxbscz2AALlsTLfI6GL2dyDhe63mSsoM=", - "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-n2fRP2\/1tGNzaCF5PU4hgTSlHK886OviBf2YAds3NdE=", - "Microsoft.Extensions.Configuration.Json.dll": "sha256-R28\/ywLWxIcFxKtDIj0IxC+bXi4urX6BHeLL24R+vTQ=", - "Microsoft.Extensions.DependencyInjection.dll": "sha256-KqgYK1NWqMxcNfw2Qah+gUhX2Nm+OZrHjyYDQ3VNCeA=", - "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-nM2DA1GqKLxoPU+NHO\/Z5yQWH5ctJb+2Tu5b9VxIxeM=", - "Microsoft.Extensions.DependencyModel.dll": "sha256-tkBiVGV6aPhN9weYepMZ2vvS6Ggf0uOE88fuWINRAHg=", - "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-7PzvEcQvpK1c8tTX9VPI8AF+XrekqbAytNBQXJjvTvQ=", - "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-sXujvGMZDgBBZ9HqfcEq9XsM0pvwyhPt60NA9qLDzGI=", - "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-viiXOG0fwhWobT0TQ1ZOJiZBdRvYRlWbDtjz+6d8sQI=", - "Microsoft.Extensions.Logging.dll": "sha256-GDZQCBtVHfrZZ6fL95lGoinLeUWLjQShLbfESwO7mrc=", - "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-w+c+xfLh8QIAwluhugyPc8sPvAmmIC\/UTxnugT7Oido=", - "Microsoft.Extensions.Options.dll": "sha256-eGESyy9mRu8RcCGajAu4E8nxSmeB5nxiZkFPVaZ5Vl0=", - "Microsoft.Extensions.Primitives.dll": "sha256-jOmoWSfsdQexH\/6QCA56gR1RMEqeix2iDDUBWbpAOQI=", - "Microsoft.JSInterop.dll": "sha256-jk2\/Vyub2GwMGkeIaCH7i0wYYpcirlDPEBjrjmB47Es=", - "Microsoft.JSInterop.WebAssembly.dll": "sha256-9fmAKBOzIs7ySpwatFoAUhMgaJtTQvGN5+TArCHX9QE=", - "Radzen.Blazor.dll": "sha256-LUFpEkTpWClcEgwi3jvF4mmtg3CXyEmtNSZ0TNXNGtU=", - "SQLite.Net.dll": "sha256-2JdeuuhWXpz2DJFN3PmHVVLUtY++p54qPl6s1XtX9NY=", - "SQLitePCLRaw.batteries_v2.dll": "sha256-2QeGG\/\/WYKByIDzfutVzVUIdJQlHIlsXQwuQbTEOHoo=", - "SQLitePCLRaw.core.dll": "sha256-2FeknlBhJjPV1l5KbRBUXq1SNikSYFuSNXNmUSJQCOM=", - "SQLitePCLRaw.provider.e_sqlite3.dll": "sha256-liT7Qp0A3+\/bLUGJS9pNaH05jhO1mPcdTQTRoT8\/OdU=", - "SqliteWasmHelper.dll": "sha256-T91sHAM03+urZ2Y5OUYvogUE9spoqnl+VATi57siEWw=", - "System.IO.Pipelines.dll": "sha256-OXr1SqT\/FRQmnxVa6n811yUyJraU4tzQs5skNCiDmiM=", - "System.Linq.Dynamic.Core.dll": "sha256-+dlU8yi5zWnF9GeqOTl26t\/y5vllHc9O3mEwXdQjP7M=", - "Microsoft.CSharp.dll": "sha256-8UVF1TWUPxCBkipcI2XYSzpBv6v4U1oxvfrtuFpsZTI=", - "Microsoft.VisualBasic.Core.dll": "sha256-gOD5eyh0aM7C6A5ksyLWh2fDaTqfXiUJuOFFTeXz06U=", - "Microsoft.VisualBasic.dll": "sha256-ZgRq7Bi5L8\/sfQpBDMpurdhGGHrZsIojDBGBMJQPMj0=", - "Microsoft.Win32.Primitives.dll": "sha256-ZhVCFyk90FvLWdNLHg0816DLrv7oR64RYIFZktcYy44=", - "Microsoft.Win32.Registry.dll": "sha256-jpp3MYN\/4PplF\/bWmN8r+SWWnrYqto21REW7kqvSa\/I=", - "System.AppContext.dll": "sha256-FkC2fSdTB8v2YqBpVZ8IhcF8\/rwlsoc0S0C1O30Cj3A=", - "System.Buffers.dll": "sha256-RQzP+ZZgTQSsdVebQQr7rM3ybH4zMetX3ogViLMzKkc=", - "System.Collections.Concurrent.dll": "sha256-K5IYtPDpLmuajtkSJNiUtnGH4rcdfbnrFNKHx210zdY=", - "System.Collections.Immutable.dll": "sha256-V5G0k+87iocc4excGjwhOUnjdyt6d\/pViYxHsYvLtj4=", - "System.Collections.NonGeneric.dll": "sha256-ongTSqO+\/xwUXZ4E7L6qywEkY2NhrWHyg94aQ6lineo=", - "System.Collections.Specialized.dll": "sha256-FMogW7rW1H9l47Yx\/xv2ViQdhjjwRygx3TGnvDuPwsg=", - "System.Collections.dll": "sha256-z\/JnKzuXTD9rSeqPGZanuExp9nYphV\/K7k0b21AbQAg=", - "System.ComponentModel.Annotations.dll": "sha256-nKXO2oZme4LHLCJaTDhQ608MrcBM4odeWDTrdp95U+o=", - "System.ComponentModel.DataAnnotations.dll": "sha256-UQz1oXs2qNu34UWchEpK6CR0nvqhlqA2r0lpnK4PfTU=", - "System.ComponentModel.EventBasedAsync.dll": "sha256-L0yAMXk\/MGAfLFCOSv7C3spS9pQ8W6xZK5PrHnUWomo=", - "System.ComponentModel.Primitives.dll": "sha256-4XsPZYDIPP+Q3WDzaI0mGZj\/ISyHxAXfOab9ePAphok=", - "System.ComponentModel.TypeConverter.dll": "sha256-fQ54odFT8ZZT2pSvSALxTStO4zzGe5W6TEk++5dnSjU=", - "System.ComponentModel.dll": "sha256-Ywx4WFekhhw12Yu\/9NYmZqjo6We7nbzZ4Qbyqmfj0hA=", - "System.Configuration.dll": "sha256-pPLCkjVdnZWXplVAqYSwWlwK3233h\/iVw4RViSHbiOk=", - "System.Console.dll": "sha256-FEoQMhWI3PBEsDOi7bLsNHHZfElUCYTGmvj8N5RT2x0=", - "System.Core.dll": "sha256-H2eJ1+TAiHt8fkT37FdrWsTt6tILlC7tq1gl37p0Iv8=", - "System.Data.Common.dll": "sha256-QisFeEtPDQZT0vBlu+5YqQzck2fyDJoIzN+qR3SaSIs=", - "System.Data.DataSetExtensions.dll": "sha256-uGWJYi+eaImPEaJXOsBMBccFMRi4a0mPSzvKAlSnS54=", - "System.Data.dll": "sha256-gPYtercnm4lF230hqn9fkT8posbAeAxhR9Dylx\/oqFM=", - "System.Diagnostics.Contracts.dll": "sha256-BB2Izzth5DOv7CDvogmsCoyUI9GqjkH91ph\/cDjTROI=", - "System.Diagnostics.Debug.dll": "sha256-tUCd3ov7QrjYob8AA39SBAWbfsyggNbtPbO0AdFH2tY=", - "System.Diagnostics.DiagnosticSource.dll": "sha256-KmexLyYxoBsrDcwIHKgdc+3ZjwVk\/04zgZHORvFywCU=", - "System.Diagnostics.FileVersionInfo.dll": "sha256-+rTrw6ZymS88lOGWBojD\/d5Q5Dr63Q2GTvHldLu1lFI=", - "System.Diagnostics.Process.dll": "sha256-LhaRms3k8eUqXZLx1JWieR7NRwbtLCshNxa9juH4pIw=", - "System.Diagnostics.StackTrace.dll": "sha256-AK6nct1P1ggikg5WmDA6jT+xrqy\/HcXjh\/GN+ZWVBCc=", - "System.Diagnostics.TextWriterTraceListener.dll": "sha256-W0pyYKIb6Fs07PP3J5fWXNj13MCk39BGibsPbVscVxs=", - "System.Diagnostics.Tools.dll": "sha256-U7rcMfQYKo0e7rkziq29kEfwg6MmwnHHRQCZcYU+ADo=", - "System.Diagnostics.TraceSource.dll": "sha256-yNLYFuXxWdRQIlF84O8kDfn4AEA+xcThh0nC8cC9EnQ=", - "System.Diagnostics.Tracing.dll": "sha256-7svI2U48ItP6T41wPkVqMUlYkL0bIEaPLYHG4O03wdQ=", - "System.Drawing.Primitives.dll": "sha256-9hOmIWYgbRR6Pd067I4yjh6i5F9xlrD61QkoXynAPKc=", - "System.Drawing.dll": "sha256-7vgwJ4b\/T\/zsHYCXbAU7+qfEmGT6kIYlGib4JVOf9yA=", - "System.Dynamic.Runtime.dll": "sha256-C2cmGpKGlEZKs6w\/9vZkNURc7UJVVgzdt0KQ7jrGzKY=", - "System.Formats.Asn1.dll": "sha256-n9PAyaGVES2R6oc\/OrJ27AQOqqjUW3FHaeb00MJ0CDE=", - "System.Globalization.Calendars.dll": "sha256-QsR77tu42\/c9puyoFYn1Bqylq+bcLYEqGeMsZ8p67e0=", - "System.Globalization.Extensions.dll": "sha256-C\/PU2EvSH4CW9T+zdaqnveGIaWjzmzUjCyIifW24hmQ=", - "System.Globalization.dll": "sha256-XDfXwPWWLXu87fgoYs36Ahe+DV3BwYOq8Lo5Xwayn+s=", - "System.IO.Compression.Brotli.dll": "sha256-6aa2E3sdTiRGrkZwAma375sQd0Bu9ubuZdoO\/r48foE=", - "System.IO.Compression.FileSystem.dll": "sha256-MsW4P3qcM1YezdWwVsuJ5DVxCPgDkiyE9euV5E5za+E=", - "System.IO.Compression.ZipFile.dll": "sha256-SKC03Y5QjVMaGOy\/p23yyiMDGS6Q1rMTttLKzkm+\/cc=", - "System.IO.Compression.dll": "sha256-WoxloWnKqGzBlHfeWpLKdB31HOxspWGlMvd53f5uvSU=", - "System.IO.FileSystem.AccessControl.dll": "sha256-9lZ0fFg+9FgWEdGCGmpZJhSuGUOxtz+c6mKLG\/DMC1s=", - "System.IO.FileSystem.DriveInfo.dll": "sha256-Tve4l6w0buDpClDycjPW3iWyhcX1vhQIsHklups\/xI4=", - "System.IO.FileSystem.Primitives.dll": "sha256-FlZgUtpHH8KaWL7cdFs0TgXr9cIULio9YeDx7+oNVBU=", - "System.IO.FileSystem.Watcher.dll": "sha256-EvGvYNCiAn9YN3rkGTrGtLzCqb4grFSPsvY4A3oh1qQ=", - "System.IO.FileSystem.dll": "sha256-UkYgxpxY0338XGkxEO0CuZSflBXGAFKJXFR2R5z4P+8=", - "System.IO.IsolatedStorage.dll": "sha256-G8vUFtVjayiR8lHIAd\/YTsXoGKTkrWosThz76TI5F6I=", - "System.IO.MemoryMappedFiles.dll": "sha256-D4pZCClKeaBLhFoZ19iIAR6k2uHrrxVmtllhpctJv18=", - "System.IO.Pipes.AccessControl.dll": "sha256-E97VOGg\/r00sGq\/if6QLd9G7fQgVxMStkNdzKWosBc0=", - "System.IO.Pipes.dll": "sha256-C4IQAozM5w0\/FzeDCkfeUrlr8ZbYWUlmA7b6YHmfzS4=", - "System.IO.UnmanagedMemoryStream.dll": "sha256-OUEezfn7qJPkmgv4oFieC43+gdSR4IudWEmfZknpAvQ=", - "System.IO.dll": "sha256-lU8eZnIIizp3eeaB2d6Kln6nZwHW9R3jnEQZeD2V8xY=", - "System.Linq.Expressions.dll": "sha256-zOUJ1nU7gjDpiSNWaXa++X+GFzzGd7HsZvFfoOSFcwY=", - "System.Linq.Parallel.dll": "sha256-g9AG3FtD2iW0twp9gTsZ5eQxWPIwm1ebWRt1syV2LO4=", - "System.Linq.Queryable.dll": "sha256-9cwWew044xx3RqpdN3D79nxgEwSwPzod5T7drMNjz+c=", - "System.Linq.dll": "sha256-hdUKXrCbkbu0ZY0BVkcDwDephHAi7rCtPRuQsdcCtTk=", - "System.Memory.dll": "sha256-AfU9x5Gpyg13j+B1PLHFxhhkkgw\/7\/0tkUegOpuoEgU=", - "System.Net.Http.Json.dll": "sha256-iZlVaOgQCi58jRLdGxFiuaSpSssYMPS6GEiaKEqfhvU=", - "System.Net.Http.dll": "sha256-4yR1bmSBPbSKjxxAAS1Upz+lTblciEJH\/gCyWsauhas=", - "System.Net.HttpListener.dll": "sha256-ZQPq5fFUP0U8VYI5I0LtpDEUBxFCBXIG6jug5RaBwqw=", - "System.Net.Mail.dll": "sha256-MnSACm3tpx\/5bG+9+Fj\/i7AgK4i\/kvKWetkpt1g5t40=", - "System.Net.NameResolution.dll": "sha256-xeLOrtJGrxG1k1+u\/\/VEdRIe7hv2Ru3AJwlkqZDou10=", - "System.Net.NetworkInformation.dll": "sha256-PcZfOJfDIKZVhBhhMYebuxJpS2oaBXxwwv6eyBwZVEU=", - "System.Net.Ping.dll": "sha256-QGS3dgEF5FB4BGN1fKCwav+QYs4R8O4Oi01sYdXOW7E=", - "System.Net.Primitives.dll": "sha256-W04UfAzwxt9SY8kQoha\/R1k+yN2b5K+Z6ROtfEH8Pbw=", - "System.Net.Quic.dll": "sha256-IG6H+TIOb0bqDtFw9Qn0WjURUeZaZh05tleDP0Igyr8=", - "System.Net.Requests.dll": "sha256-7CinPBQRcnARva3fSxfa7b2Remh2M5mQANlhaLYNfc4=", - "System.Net.Security.dll": "sha256-FHAitcg1uQQSb2SCr+wV9vYHGbvxw6VVeHUu2Ll9uv8=", - "System.Net.ServicePoint.dll": "sha256-fZTDp1TP4cEV3IdM3nQadlZkiaZM+n2I1WNzePpzYCA=", - "System.Net.Sockets.dll": "sha256-NKDS334ykrgbEjXjTZ2mjdUyjLTbM8gHkJaaVyPuPLY=", - "System.Net.WebClient.dll": "sha256-+SoKAblCRPa6zmP3csrtTtbV9Wa92HxrzWTF149IlSU=", - "System.Net.WebHeaderCollection.dll": "sha256-uFOxHUjZnrZiDEoPGY9qwrsV7E+89W1ID0eGSgMdWi0=", - "System.Net.WebProxy.dll": "sha256-TeZoPKtofT0O2G7V0v+fC6H8P0Ug3moY0kcfbxnpqLk=", - "System.Net.WebSockets.Client.dll": "sha256-4ldQzLTe51J9nNPKx5uELr73Hzsj6E17qjtmoK1BhH0=", - "System.Net.WebSockets.dll": "sha256-YmBhXsxhj80n+eSad3ZTWRoWfcbqEP\/KPuLgVfuPRsw=", - "System.Net.dll": "sha256-YaKR6k7O3yzCeLAiTXyPSBw3zE\/dQLD38ASz8Vht9Ko=", - "System.Numerics.Vectors.dll": "sha256-mIgktrtOR72ylnu3SgMu3+0pm8szgOJrbLTc04idj6U=", - "System.Numerics.dll": "sha256-d9Rg5OLNjNKZkOTmbDY227k2hz0xNAWwZ\/33tOHN6DM=", - "System.ObjectModel.dll": "sha256-K12wC9\/+TxL\/3vzgANLwoCdnrapAbHnwzFX1\/zxyP4w=", - "System.Private.DataContractSerialization.dll": "sha256-T7MUMTyqvKubR6+D73kfs79Im4Sy4I1XdD5OM9iwkPM=", - "System.Private.Runtime.InteropServices.JavaScript.dll": "sha256-UyoXi6gzj6HkKcApx2qdOfvzAGv+PWa78VfNwSOdre8=", - "System.Private.Uri.dll": "sha256-J5bDSvm4jX7qFtcDn5OKJzNZbccp0Eocg5C3sXdfm8A=", - "System.Private.Xml.Linq.dll": "sha256-peKWRW2\/BSbZluHiwctIgwX44RUBcFlsjmzet3Oa1HI=", - "System.Private.Xml.dll": "sha256-WDaYzzP27HZ6zwijWZaEzarfWpYWMdCqIO66Jq+M8RQ=", - "System.Reflection.DispatchProxy.dll": "sha256-Kzb0rjUfXmtZ+uoohuIj6XG+IrIweKvIRMTcQtCQoUU=", - "System.Reflection.Emit.ILGeneration.dll": "sha256-pE1ZqtWtc3jcDQjJCHDfjmXRY27TcRX+YkRLJiTiqnM=", - "System.Reflection.Emit.Lightweight.dll": "sha256-PaNMU3ap\/8MItfqbF3LmTkkfsz2gbW3nn2aJcSsCCvs=", - "System.Reflection.Emit.dll": "sha256-XDgOnN+Ec5h+eb1bydVHHbZfUjvnRkKYIMlwh7K3kj8=", - "System.Reflection.Extensions.dll": "sha256-JKsTDJDSh5j9L\/WSxfipyo5VSwC+gt16DlIombV9JnQ=", - "System.Reflection.Metadata.dll": "sha256-Xvh75GrTyfErSp1eI5LnieGuksDwYVKvvXqttpdslds=", - "System.Reflection.Primitives.dll": "sha256-UvRlMpUS5pFfgKpchtV5yGODNSvSkO9XiiCCtITN+cI=", - "System.Reflection.TypeExtensions.dll": "sha256-q7H4U8NhV+IWEjmFbs7mPuUNLafE1NDii\/cAdVBXH+c=", - "System.Reflection.dll": "sha256-wU8NawkqHDchmF\/VaeIG8FLqLhdJXPqDZTYedfL2zM4=", - "System.Resources.Reader.dll": "sha256-rw\/+UpkqHo4rZvq32d1RdOSuR0hSQcSHupVq6NT1kXQ=", - "System.Resources.ResourceManager.dll": "sha256-zRBUrRgOkncVucHAXjBzrCMnmcNzZOvDCT+4etzTlWU=", - "System.Resources.Writer.dll": "sha256-EvevOqU6vp9dPJh6J\/l6QBezz22jY4iD9YPVSIFDb6s=", - "System.Runtime.CompilerServices.Unsafe.dll": "sha256-6K17V0W6VfnLiVg43QkSRUprOwfgapoZjHugwvuas0M=", - "System.Runtime.CompilerServices.VisualC.dll": "sha256-APa2rEQRuinyhpVkZ6KdD3iq0mEZIIIsv9XKEtHXGmM=", - "System.Runtime.Extensions.dll": "sha256-L2OMWQXRmvNpPocbC5pYLpbFdHj0FRuZkf2G33\/eoxE=", - "System.Runtime.Handles.dll": "sha256-n+MSIB4tQURkY7y12zb\/p8ZJbOszbezVR8TafPNrIsQ=", - "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-ZpFzbXgj3C5thUR+JOZH2saVJ6L6cGR+IkMWTdUo0zM=", - "System.Runtime.InteropServices.dll": "sha256-ZAfmG7mOtiTn\/\/KUyMrTFLy9q4nZr0noyyN8c1OhMi4=", - "System.Runtime.Intrinsics.dll": "sha256-EklfSpodEL4U2vHU3yQIBfs\/KaD1UslJItmf5WaKFzg=", - "System.Runtime.Loader.dll": "sha256-2JXo5DlrfJnRqqnmRp19HJbGqfCdFq3CMIwKCqhlHsQ=", - "System.Runtime.Numerics.dll": "sha256-W39hmZWKCKHsAoSsAYHc118MstJCwhGxdBvG1E0Y3h4=", - "System.Runtime.Serialization.Formatters.dll": "sha256-iIIhgtsbM\/1S9zc\/A2v5GL+mkZ9PIOmpzp5p5PAdLDA=", - "System.Runtime.Serialization.Json.dll": "sha256-gOe6QckUOG+ZzGfIUkE1yZQ5p3Vd7fIv0MM0NMG2+eg=", - "System.Runtime.Serialization.Primitives.dll": "sha256-E\/MN\/FdXTQFLd752DDurxJ3rLlac3OAJNiSqRUAC2Wc=", - "System.Runtime.Serialization.Xml.dll": "sha256-Eb+Bz6dqvV0QHj4hfC54n4fTFVQBej7g9qCQmB\/jQR0=", - "System.Runtime.Serialization.dll": "sha256-PhOVm+iUnZSLUKLKT7nJjkJ8dsuVVPQLGG3viCcmyME=", - "System.Runtime.dll": "sha256-nGmRByhcm6aLgKxHcPE7nXeD3\/vQJL2W6LbGkZ3jg8Y=", - "System.Security.AccessControl.dll": "sha256-KfxuXhcCl\/9Pmcl9FxOK2EX9U8rs\/0wy0oqrquXH5Uc=", - "System.Security.Claims.dll": "sha256-czRguTF9jKcB8T\/1fmKdMOCE8Np5jX+qLadC0n2v9hw=", - "System.Security.Cryptography.Algorithms.dll": "sha256-E6hIIvnYR+\/npcHrwVFG475bsSHGJ86dSpsD4rOpZ8U=", - "System.Security.Cryptography.Cng.dll": "sha256-cyGHGhH089lmlh7LsIcpbh0tBBalLhCnQSrnCxZPHNQ=", - "System.Security.Cryptography.Csp.dll": "sha256-cN0WAURvTnWTBj8ynoeKwdFPxx3QdpChZsWNFNYKPsk=", - "System.Security.Cryptography.Encoding.dll": "sha256-OKKqVj9kJ3Y1dkQSm1GZwcxwdVctR4lyfufvdOi2jjk=", - "System.Security.Cryptography.OpenSsl.dll": "sha256-52dV2B6OvEo59T9KyNotsyzjiayyJ+tdCrt3joYnOWk=", - "System.Security.Cryptography.Primitives.dll": "sha256-+gyCRDm6zbGjr\/A22iw7WCheMKs\/u3yPSVtnk8G0rIw=", - "System.Security.Cryptography.X509Certificates.dll": "sha256-rgRoBgWthPnK4ksHZoZBv9jh8ja7LyHcEYb3mr51EL0=", - "System.Security.Principal.Windows.dll": "sha256-gleQbVzK9IsJCVC8Pbdd7THYYyHvaOAPcPxHWL+lWT0=", - "System.Security.Principal.dll": "sha256-PvxVqzoAtUucsuUg+UlNjmQDoXQFAcmgd26iFc61X7k=", - "System.Security.SecureString.dll": "sha256-S5\/yBMMXJpWduYNdCHGBMcaHPUO0T1BNdA7n3zpz6JY=", - "System.Security.dll": "sha256-m9vbgGP4MLvRh8Ofa+\/GSS6yHHMZc1AikOXU\/FLeTHg=", - "System.ServiceModel.Web.dll": "sha256-KQfgXJ67+pR4yf+\/Egw1GuyOY4+pVGLv+ykG0MLi2+c=", - "System.ServiceProcess.dll": "sha256-j7NKDkjuaEOrTqTwf+wuXD5ecvV8hG0AL0H8ajGFxxs=", - "System.Text.Encoding.CodePages.dll": "sha256-DFJcVE5YoUsUTZDRTdi+8q1vcpIGZnI\/UbCf+4GdJ+0=", - "System.Text.Encoding.Extensions.dll": "sha256-ud04p\/IgOICKQ4hRKHn1B3qZeLYRc8X1FlUvhkoNFvM=", - "System.Text.Encoding.dll": "sha256-H9If4AVIBLCmSf4xTCdSH7qKas173BKxErN6IzYpdO0=", - "System.Text.Encodings.Web.dll": "sha256-P7DpDcIuZ9ctgcXD3CQ9b7rdLW9+jEL4vx9vKHYyxXo=", - "System.Text.Json.dll": "sha256-Z\/DhRhO1eT1cOMbPzDFqRIZCh3Ii5r37+mshMLLlID0=", - "System.Text.RegularExpressions.dll": "sha256-1epmmxLCRGJneOMTLFg5zryW96chWg9pBq+Rrya7gcY=", - "System.Threading.Channels.dll": "sha256-vBdrcTcL01LAZftbe6V\/MHW53fwnSnAvX7rvGPTHMD4=", - "System.Threading.Overlapped.dll": "sha256-CT9PucBLgFGf3wJ+LfWMJNI0YS2uEGgZIQEHgeLxSeU=", - "System.Threading.Tasks.Dataflow.dll": "sha256-V0gELODyuzGogxSSQc4h0p5tGA6TYEuNkSi6JaN2Bq8=", - "System.Threading.Tasks.Extensions.dll": "sha256-gbflKKrV044ELtapmrcITXsiZKK9ag8ia3+\/yxKI\/74=", - "System.Threading.Tasks.Parallel.dll": "sha256-NMkD5rsWmNqYTO8rqEdHHWhcJMuNfe9KMoMXcoy8P\/M=", - "System.Threading.Tasks.dll": "sha256-c1IdXHP1+ttWv2Lk3l5e9wt+xWA3UTlJzEp4YZA3jHM=", - "System.Threading.Thread.dll": "sha256-7JrNNGNseUTd8aBQ+46M75DDKegFxP4Mfj6EdGEO7e8=", - "System.Threading.ThreadPool.dll": "sha256-\/VtLkPxzg03axqV1AWU0y6rtPzUtE7Covhtz35Gd4WI=", - "System.Threading.Timer.dll": "sha256-9Sfga8ftnPShNk6TfvBN7pJttKTqoeB8Dh5Dl6Jj+0A=", - "System.Threading.dll": "sha256-\/qU2wLSHAm5M80qWvcUHegm58B5PE8jHz+vRhG0oyWk=", - "System.Transactions.Local.dll": "sha256-PwLEaoYIUqnhSUuBmLeg7Z9xdp3xeN\/KeLbl5KGWddM=", - "System.Transactions.dll": "sha256-Hw7yQFO6s2F7tSF28ZqbYVZYU8C0E2t3Tl3td0j03jA=", - "System.ValueTuple.dll": "sha256-bROgzdvXEX2kG+3mUsg2DaitY8orpKTci0LXGrkggmw=", - "System.Web.HttpUtility.dll": "sha256-T53rVtP58TtoQh2Fbp56OkN09vIEpHkmDEnRT3rgPaY=", - "System.Web.dll": "sha256-n\/Yffqf1O7pklzkAhoBOrgu3ctNf+N1BjZlI1XJ73OQ=", - "System.Windows.dll": "sha256-Wvaw3qXl5ky\/d9vKfUHusZKKAm7p6DXWjVUAdEtr0FQ=", - "System.Xml.Linq.dll": "sha256-cqkrXv5FQ\/CFEUI0TUq1XLudTpbl+ylbtK4MgrjjCn0=", - "System.Xml.ReaderWriter.dll": "sha256-LdOx6fdRyfImo076YqJswg5T\/kz0W35zY5Bxzvu4bg0=", - "System.Xml.Serialization.dll": "sha256-jDgvUAJcbga4YBf85rlJS+mBa9PPfEq5xPpWi0Yy7vU=", - "System.Xml.XDocument.dll": "sha256-379HQGCc7jcbJBv3EZ9oThRs4+KytL4+4grGGXK0NAE=", - "System.Xml.XPath.XDocument.dll": "sha256-HDoYy88J2a\/d03AAgJYAoU7SCO9fSuyRu9sUzFg5cSA=", - "System.Xml.XPath.dll": "sha256-zdO8KHqhw4CvshzXavUPMftdzNGO3P6RsoqiWIkB9VY=", - "System.Xml.XmlDocument.dll": "sha256-9mzmBNe2e7m9RnR3Pk+Rzkq8X3jVmuZoVaJ+aDtZ1vE=", - "System.Xml.XmlSerializer.dll": "sha256-7IG747ObsbU0F1XE1cPzo5stiK3+Bzu5QJTsbNp1ghw=", - "System.Xml.dll": "sha256-Pk6SFlpcUa9rGuzLsrYMxXBJ5+z27OyyFJ9LRlnopzM=", - "System.dll": "sha256-38ae8SoDtR6ynwmRtxV4XYa77mxCTS97Wi4r655aIGI=", - "WindowsBase.dll": "sha256-KvLLadWLn60MfIz5AYXq00L9kT67VsOzuR4tAm4vUow=", - "mscorlib.dll": "sha256-zNVxhWqav+Wvwc8mjOqsl40bhVLw78MhgITrphqoROc=", - "netstandard.dll": "sha256-yQ7oiuGXRX47V21EibXbfTPXOkJGOgCJhW9YF6e4hw0=", - "System.Private.CoreLib.dll": "sha256-Ug2\/rd8Ck7Dls6uaZNmrqc7EvE8f41iX96qdX57LStQ=", - "Account_SQLite.dll": "sha256-huZPl9JvS5hXgLcmNbcyCiWI\/3h5MVMsJScrLQuIGDw=" - }, - "extensions": null, - "lazyAssembly": null, - "libraryInitializers": null, - "pdb": { - "Account_SQLite.pdb": "sha256-HUdQaXaMhj97f6DyUgBc1KQlVH7sT2rk0vZfraEWGuw=" - }, - "runtime": { - "dotnet.timezones.blat": "sha256-44J\/Hf\/X8VbgiBAazDB8c0FaVrAFYOb4BbGyQwuzNyk=", - "icudt.dat": "sha256-Zuq0dWAsBm6\/2lSOsz7+H9PvFaRn61KIXHMMwXDfvyE=", - "icudt_CJK.dat": "sha256-WPyI4hWDPnOw62Nr27FkzGjdbucZnQD+Ph+GOPhAedw=", - "icudt_EFIGS.dat": "sha256-4RwaPx87Z4dvn77ie\/ro3\/QzyS+\/gGmO3Y\/0CSAXw4k=", - "icudt_no_CJK.dat": "sha256-OxylFgLJlFqixsj+nLxYVsv5iZLvfIKMpLf9hrWaChA=", - "dotnet.wasm": "sha256-3xQeIRtu\/DogglGK8zEoSxKRD\/1bIBBowMgkcGf9dKs=", - "dotnet..0qqpqpio55.js": "sha256-qCSLMmIabrtbMnfRF0pXcNjoDs32EPFTuLEZ0FHxHGI=" - }, - "satelliteResources": null - } -} \ No newline at end of file diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/+JTVyhb1.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/+JTVyhb1.gz deleted file mode 100644 index ba125393..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/+JTVyhb1.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/+Kre5Tpp.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/+Kre5Tpp.gz deleted file mode 100644 index 37e4da66..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/+Kre5Tpp.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/+LRe9Tns.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/+LRe9Tns.gz deleted file mode 100644 index b5c3ae5a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/+LRe9Tns.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/+QY0PBsI.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/+QY0PBsI.gz deleted file mode 100644 index 2058fd24..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/+QY0PBsI.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/+sQ5oVnS.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/+sQ5oVnS.gz deleted file mode 100644 index 005c3f48..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/+sQ5oVnS.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/+tcLfj0H.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/+tcLfj0H.gz deleted file mode 100644 index e69ed55d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/+tcLfj0H.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/0FKjlXJj.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/0FKjlXJj.gz deleted file mode 100644 index 35c11a08..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/0FKjlXJj.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/0Iwipr4w.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/0Iwipr4w.gz deleted file mode 100644 index 1b803110..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/0Iwipr4w.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/0JQ0c28H.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/0JQ0c28H.gz deleted file mode 100644 index b3ba4a0b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/0JQ0c28H.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/0K+LzERo.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/0K+LzERo.gz deleted file mode 100644 index 1b167511..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/0K+LzERo.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/0QiSef+M.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/0QiSef+M.gz deleted file mode 100644 index d4ab3b4b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/0QiSef+M.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/0fOL2sdj.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/0fOL2sdj.gz deleted file mode 100644 index e0c73508..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/0fOL2sdj.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/0mHQ+lYF.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/0mHQ+lYF.gz deleted file mode 100644 index 7a0102dc..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/0mHQ+lYF.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/1WRZXFTn.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/1WRZXFTn.gz deleted file mode 100644 index 14f88fb5..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/1WRZXFTn.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/1YNe1gPB.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/1YNe1gPB.gz deleted file mode 100644 index 24301e7b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/1YNe1gPB.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/1l00Hi2C.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/1l00Hi2C.gz deleted file mode 100644 index 181a420f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/1l00Hi2C.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/1vm4IFaG.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/1vm4IFaG.gz deleted file mode 100644 index bbf68757..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/1vm4IFaG.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/2BVSVm+S.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/2BVSVm+S.gz deleted file mode 100644 index 845d3278..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/2BVSVm+S.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/2XfazusX.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/2XfazusX.gz deleted file mode 100644 index 2d26d530..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/2XfazusX.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/2ge50QZE.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/2ge50QZE.gz deleted file mode 100644 index 8d59691d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/2ge50QZE.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/2oVtJt50.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/2oVtJt50.gz deleted file mode 100644 index 7e8934be..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/2oVtJt50.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/2pQ1JqsF.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/2pQ1JqsF.gz deleted file mode 100644 index 50346fe5..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/2pQ1JqsF.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/2zEZXe0u.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/2zEZXe0u.gz deleted file mode 100644 index 77d187dc..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/2zEZXe0u.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/4lUgkp+U.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/4lUgkp+U.gz deleted file mode 100644 index 69d74a59..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/4lUgkp+U.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/4xtw6LPe.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/4xtw6LPe.gz deleted file mode 100644 index 93a73c35..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/4xtw6LPe.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/56fZcRR8.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/56fZcRR8.gz deleted file mode 100644 index 4b1a75d1..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/56fZcRR8.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/5EpkVPhj.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/5EpkVPhj.gz deleted file mode 100644 index 59f424eb..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/5EpkVPhj.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/5HhZz3K9.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/5HhZz3K9.gz deleted file mode 100644 index f2f5d32d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/5HhZz3K9.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/5JyieZfh.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/5JyieZfh.gz deleted file mode 100644 index a357d812..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/5JyieZfh.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/5dCjNJ5b.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/5dCjNJ5b.gz deleted file mode 100644 index efcec999..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/5dCjNJ5b.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/5eY4GF5U.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/5eY4GF5U.gz deleted file mode 100644 index e8a69bb4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/5eY4GF5U.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/5pGaLGBy.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/5pGaLGBy.gz deleted file mode 100644 index 76de839a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/5pGaLGBy.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/68cJW34q.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/68cJW34q.gz deleted file mode 100644 index 31972096..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/68cJW34q.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/6GAA+LDT.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/6GAA+LDT.gz deleted file mode 100644 index eebcbe74..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/6GAA+LDT.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/6MQ1jJcK.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/6MQ1jJcK.gz deleted file mode 100644 index 8d6d0645..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/6MQ1jJcK.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/6eQHB3+4.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/6eQHB3+4.gz deleted file mode 100644 index 9f6faac5..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/6eQHB3+4.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/6g5IwAqq.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/6g5IwAqq.gz deleted file mode 100644 index 03873c42..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/6g5IwAqq.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/6za3LhEM.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/6za3LhEM.gz deleted file mode 100644 index 1ae18e67..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/6za3LhEM.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/7RG3PMhI.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/7RG3PMhI.gz deleted file mode 100644 index 7317c4f2..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/7RG3PMhI.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/7Yzj389P.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/7Yzj389P.gz deleted file mode 100644 index cc703da7..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/7Yzj389P.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/8bQLqeih.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/8bQLqeih.gz deleted file mode 100644 index 1d4749f7..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/8bQLqeih.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/8jbtvLI5.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/8jbtvLI5.gz deleted file mode 100644 index afe06294..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/8jbtvLI5.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/91cuMT+c.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/91cuMT+c.gz deleted file mode 100644 index 92292813..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/91cuMT+c.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/A3Z5u4ys.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/A3Z5u4ys.gz deleted file mode 100644 index d9b3f6f9..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/A3Z5u4ys.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/AG+zWk8B.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/AG+zWk8B.gz deleted file mode 100644 index cbab94c0..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/AG+zWk8B.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/BLUafUvS.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/BLUafUvS.gz deleted file mode 100644 index e2b87673..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/BLUafUvS.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz deleted file mode 100644 index fce16d46..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/CE3HGrFj.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/CE3HGrFj.gz deleted file mode 100644 index 8ccb5ed5..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/CE3HGrFj.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/CGGDUrLS.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/CGGDUrLS.gz deleted file mode 100644 index 30c54716..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/CGGDUrLS.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/CGeqtl+O.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/CGeqtl+O.gz deleted file mode 100644 index 72a8adc3..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/CGeqtl+O.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/CzDJaXvP.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/CzDJaXvP.gz deleted file mode 100644 index 0b490718..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/CzDJaXvP.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/D30ARJVX.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/D30ARJVX.gz deleted file mode 100644 index d4ccd67f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/D30ARJVX.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/DMHJGpTb.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/DMHJGpTb.gz deleted file mode 100644 index 89d5299a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/DMHJGpTb.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/E4MUYSbj.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/E4MUYSbj.gz deleted file mode 100644 index ae2b859f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/E4MUYSbj.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/E64FvjlP.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/E64FvjlP.gz deleted file mode 100644 index db40331c..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/E64FvjlP.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/EYygXBXV.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/EYygXBXV.gz deleted file mode 100644 index 4db742d1..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/EYygXBXV.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/EycU5AZA.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/EycU5AZA.gz deleted file mode 100644 index 463b515d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/EycU5AZA.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/FEErnO+2.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/FEErnO+2.gz deleted file mode 100644 index 9d414bf8..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/FEErnO+2.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/FH0Yj4k3.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/FH0Yj4k3.gz deleted file mode 100644 index 0fe7e3f4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/FH0Yj4k3.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/FOVtCNm+.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/FOVtCNm+.gz deleted file mode 100644 index 04b14df1..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/FOVtCNm+.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/G+v4Gqyr.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/G+v4Gqyr.gz deleted file mode 100644 index dfcad5ba..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/G+v4Gqyr.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/G6RHxxA7.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/G6RHxxA7.gz deleted file mode 100644 index ba10a393..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/G6RHxxA7.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/GA6UnUSo.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/GA6UnUSo.gz deleted file mode 100644 index 5159ea5a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/GA6UnUSo.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/GiLT6S0T.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/GiLT6S0T.gz deleted file mode 100644 index 85bfc72f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/GiLT6S0T.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/HH+np8ru.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/HH+np8ru.gz deleted file mode 100644 index a6efd270..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/HH+np8ru.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/HUmGKp8o.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/HUmGKp8o.gz deleted file mode 100644 index b17cb078..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/HUmGKp8o.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Ht1gJnwo.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Ht1gJnwo.gz deleted file mode 100644 index 36a568c6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Ht1gJnwo.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Hx9AKOya.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Hx9AKOya.gz deleted file mode 100644 index 4b001bc3..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Hx9AKOya.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/IIwZRqn8.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/IIwZRqn8.gz deleted file mode 100644 index 67e8720d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/IIwZRqn8.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/IM4GHJDx.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/IM4GHJDx.gz deleted file mode 100644 index cc515261..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/IM4GHJDx.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/IRFTg+Zn.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/IRFTg+Zn.gz deleted file mode 100644 index dd8f25b6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/IRFTg+Zn.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/J4UVuU3X.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/J4UVuU3X.gz deleted file mode 100644 index e9f320b1..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/J4UVuU3X.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/JB+CJuXL.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/JB+CJuXL.gz deleted file mode 100644 index 058e2d5f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/JB+CJuXL.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/JBZLbhsR.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/JBZLbhsR.gz deleted file mode 100644 index 843bc9ce..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/JBZLbhsR.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/JWwzygqN.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/JWwzygqN.gz deleted file mode 100644 index c123472f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/JWwzygqN.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/JY9yV2o0.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/JY9yV2o0.gz deleted file mode 100644 index 75c01d4e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/JY9yV2o0.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/JjqaMvBJ.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/JjqaMvBJ.gz deleted file mode 100644 index 7e8e6851..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/JjqaMvBJ.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/KWzBYWxz.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/KWzBYWxz.gz deleted file mode 100644 index 8ecd4024..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/KWzBYWxz.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/KXXhXkbu.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/KXXhXkbu.gz deleted file mode 100644 index d69cb29e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/KXXhXkbu.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/KfqDX+eU.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/KfqDX+eU.gz deleted file mode 100644 index 0b32527c..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/KfqDX+eU.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/KvLNa2Bc.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/KvLNa2Bc.gz deleted file mode 100644 index 46ecf908..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/KvLNa2Bc.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/LAErubWT.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/LAErubWT.gz deleted file mode 100644 index 86777043..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/LAErubWT.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/LTEuWA3z.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/LTEuWA3z.gz deleted file mode 100644 index 93a1dae4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/LTEuWA3z.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/M6gJA7L2.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/M6gJA7L2.gz deleted file mode 100644 index e2a10d6b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/M6gJA7L2.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/MG+l9gKt.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/MG+l9gKt.gz deleted file mode 100644 index 03870874..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/MG+l9gKt.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/MuWbHBuW.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/MuWbHBuW.gz deleted file mode 100644 index 91683384..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/MuWbHBuW.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/NSKpvYGD.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/NSKpvYGD.gz deleted file mode 100644 index d346e172..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/NSKpvYGD.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/NksrmDDk.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/NksrmDDk.gz deleted file mode 100644 index e0385cbf..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/NksrmDDk.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/NtPMok5n.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/NtPMok5n.gz deleted file mode 100644 index 81f47a44..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/NtPMok5n.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/O0n+vaCx.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/O0n+vaCx.gz deleted file mode 100644 index 6a25e55a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/O0n+vaCx.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/OHcrvftp.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/OHcrvftp.gz deleted file mode 100644 index 45d72b57..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/OHcrvftp.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/OYiTuEMW.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/OYiTuEMW.gz deleted file mode 100644 index 20e2a77f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/OYiTuEMW.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/OcErHWFw.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/OcErHWFw.gz deleted file mode 100644 index 131a68cf..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/OcErHWFw.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/OhuJiVbC.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/OhuJiVbC.gz deleted file mode 100644 index 96bfc5b7..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/OhuJiVbC.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/OkhxxYtB.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/OkhxxYtB.gz deleted file mode 100644 index 16ccaf2b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/OkhxxYtB.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/OlSr4V7c.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/OlSr4V7c.gz deleted file mode 100644 index cdaddea0..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/OlSr4V7c.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/P9V4P+3u.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/P9V4P+3u.gz deleted file mode 100644 index d00f7aec..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/P9V4P+3u.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/PPCPRXaZ.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/PPCPRXaZ.gz deleted file mode 100644 index 2085e09a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/PPCPRXaZ.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Pf+Dj+oK.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Pf+Dj+oK.gz deleted file mode 100644 index 363523d8..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Pf+Dj+oK.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/PzgkgiCU.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/PzgkgiCU.gz deleted file mode 100644 index e2105018..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/PzgkgiCU.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/QIoil28w.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/QIoil28w.gz deleted file mode 100644 index c8124ae8..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/QIoil28w.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Qv3EwTy+.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Qv3EwTy+.gz deleted file mode 100644 index 210039f6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Qv3EwTy+.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/RiHs74k4.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/RiHs74k4.gz deleted file mode 100644 index 3da8b345..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/RiHs74k4.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/S4jcrGte.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/S4jcrGte.gz deleted file mode 100644 index 4f094734..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/S4jcrGte.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/ScGxZLHc.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/ScGxZLHc.gz deleted file mode 100644 index 443117a4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/ScGxZLHc.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Sl0g++2k.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Sl0g++2k.gz deleted file mode 100644 index 6a8f320f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Sl0g++2k.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Ss96Cozm.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Ss96Cozm.gz deleted file mode 100644 index 9c6a9079..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Ss96Cozm.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/T6EYjrM3.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/T6EYjrM3.gz deleted file mode 100644 index f41de3f6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/T6EYjrM3.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/TFiMoj8S.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/TFiMoj8S.gz deleted file mode 100644 index ee5bca3a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/TFiMoj8S.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/U1GjwWQV.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/U1GjwWQV.gz deleted file mode 100644 index b47daccd..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/U1GjwWQV.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/UDNB8RFz.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/UDNB8RFz.gz deleted file mode 100644 index 05bdbc9a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/UDNB8RFz.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/UZuk9v7S.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/UZuk9v7S.gz deleted file mode 100644 index 41ac5bf0..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/UZuk9v7S.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/UgfmWOey.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/UgfmWOey.gz deleted file mode 100644 index 62c3e9ed..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/UgfmWOey.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/UjV8g6Wb.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/UjV8g6Wb.gz deleted file mode 100644 index 7372ec44..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/UjV8g6Wb.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/UjjnPjhC.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/UjjnPjhC.gz deleted file mode 100644 index ea6e6fad..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/UjjnPjhC.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Uz49Tq2y.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Uz49Tq2y.gz deleted file mode 100644 index 63dd4f11..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Uz49Tq2y.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/VBHSFBan.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/VBHSFBan.gz deleted file mode 100644 index a4aea805..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/VBHSFBan.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/VEpmbc+j.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/VEpmbc+j.gz deleted file mode 100644 index 5caaba21..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/VEpmbc+j.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/VQvPAk3v.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/VQvPAk3v.gz deleted file mode 100644 index 269c8def..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/VQvPAk3v.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/VUurIt2N.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/VUurIt2N.gz deleted file mode 100644 index 326ac977..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/VUurIt2N.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/VeOJi+Gj.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/VeOJi+Gj.gz deleted file mode 100644 index a44057d7..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/VeOJi+Gj.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/VijnN3m+.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/VijnN3m+.gz deleted file mode 100644 index 2166e345..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/VijnN3m+.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/W0iuVMXb.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/W0iuVMXb.gz deleted file mode 100644 index 2d4b1dc4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/W0iuVMXb.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/WZrCPLxf.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/WZrCPLxf.gz deleted file mode 100644 index 85ff1da4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/WZrCPLxf.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/WcHq51f8.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/WcHq51f8.gz deleted file mode 100644 index 9db86fae..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/WcHq51f8.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Wq3tHjrU.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Wq3tHjrU.gz deleted file mode 100644 index 23b4ca6e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Wq3tHjrU.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/XeLPKmXp.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/XeLPKmXp.gz deleted file mode 100644 index d4f51f40..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/XeLPKmXp.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Y4R2M7vg.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Y4R2M7vg.gz deleted file mode 100644 index fe971ddd..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Y4R2M7vg.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Y5yjli0O.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Y5yjli0O.gz deleted file mode 100644 index d603e641..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Y5yjli0O.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Y6HQNyKj.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Y6HQNyKj.gz deleted file mode 100644 index 1d933408..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Y6HQNyKj.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/YLu1GWJ8.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/YLu1GWJ8.gz deleted file mode 100644 index 47d752d2..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/YLu1GWJ8.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/YMLNoDcs.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/YMLNoDcs.gz deleted file mode 100644 index ecf7087b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/YMLNoDcs.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/YOMdCEDS.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/YOMdCEDS.gz deleted file mode 100644 index 794f338b..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/YOMdCEDS.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/Zr4es2Pl.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/Zr4es2Pl.gz deleted file mode 100644 index b94b47f5..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/Zr4es2Pl.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/aeiE8f7u.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/aeiE8f7u.gz deleted file mode 100644 index e184392e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/aeiE8f7u.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/b4km8OTJ.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/b4km8OTJ.gz deleted file mode 100644 index 0d8fc21a..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/b4km8OTJ.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/bL03ttyK.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/bL03ttyK.gz deleted file mode 100644 index 125fdbb9..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/bL03ttyK.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/bQDTZzZq.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/bQDTZzZq.gz deleted file mode 100644 index 3d1fbd31..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/bQDTZzZq.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/bThRWctG.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/bThRWctG.gz deleted file mode 100644 index 8ce0ea97..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/bThRWctG.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/c0YuPbll.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/c0YuPbll.gz deleted file mode 100644 index 99b0768e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/c0YuPbll.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/c1AOAAWG.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/c1AOAAWG.gz deleted file mode 100644 index 36586699..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/c1AOAAWG.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/c6j+Y26l.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/c6j+Y26l.gz deleted file mode 100644 index 71af6bc6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/c6j+Y26l.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/dbqFKMmc.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/dbqFKMmc.gz deleted file mode 100644 index dce68734..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/dbqFKMmc.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/de5KTgXZ.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/de5KTgXZ.gz deleted file mode 100644 index fe352a9e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/de5KTgXZ.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/df1c6WT5.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/df1c6WT5.gz deleted file mode 100644 index 2f5486e0..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/df1c6WT5.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/e3fzYNFK.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/e3fzYNFK.gz deleted file mode 100644 index b22cde33..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/e3fzYNFK.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/eDjy34wv.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/eDjy34wv.gz deleted file mode 100644 index b77c31ee..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/eDjy34wv.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/eWVBG67y.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/eWVBG67y.gz deleted file mode 100644 index c4811de3..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/eWVBG67y.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/evzhjbZl.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/evzhjbZl.gz deleted file mode 100644 index 512d6d98..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/evzhjbZl.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/f0Eijqws.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/f0Eijqws.gz deleted file mode 100644 index 9347e7ef..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/f0Eijqws.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/f620GeOq.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/f620GeOq.gz deleted file mode 100644 index 1dcc1b3e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/f620GeOq.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/fPziUjLD.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/fPziUjLD.gz deleted file mode 100644 index 4887af21..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/fPziUjLD.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/g4IGgIl0.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/g4IGgIl0.gz deleted file mode 100644 index f6ddd3cf..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/g4IGgIl0.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/gGwx65ye.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/gGwx65ye.gz deleted file mode 100644 index 728a92bf..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/gGwx65ye.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/gTncO+bt.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/gTncO+bt.gz deleted file mode 100644 index 6de91e1c..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/gTncO+bt.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/gY7C+Pj0.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/gY7C+Pj0.gz deleted file mode 100644 index 063f7ff6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/gY7C+Pj0.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/ghYVXx0t.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/ghYVXx0t.gz deleted file mode 100644 index a427c49c..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/ghYVXx0t.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/h5nmla+E.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/h5nmla+E.gz deleted file mode 100644 index 9693a86f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/h5nmla+E.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/hApAU2Ux.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/hApAU2Ux.gz deleted file mode 100644 index d6644265..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/hApAU2Ux.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/hsVedUCV.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/hsVedUCV.gz deleted file mode 100644 index c03155cc..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/hsVedUCV.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/i9ugRC3H.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/i9ugRC3H.gz deleted file mode 100644 index 915a5313..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/i9ugRC3H.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/iSH8aA68.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/iSH8aA68.gz deleted file mode 100644 index da3db480..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/iSH8aA68.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/j++BdFv1.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/j++BdFv1.gz deleted file mode 100644 index 3d7e29ea..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/j++BdFv1.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/jBbmVu0Y.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/jBbmVu0Y.gz deleted file mode 100644 index 645211b4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/jBbmVu0Y.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/jbYvZPux.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/jbYvZPux.gz deleted file mode 100644 index 3e0a2640..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/jbYvZPux.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/jfMvQQ6O.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/jfMvQQ6O.gz deleted file mode 100644 index 1b5b7181..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/jfMvQQ6O.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/k+baeXzX.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/k+baeXzX.gz deleted file mode 100644 index ec25f4a7..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/k+baeXzX.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/k2roKodh.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/k2roKodh.gz deleted file mode 100644 index 9fc2ce97..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/k2roKodh.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/kjMKg2YM.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/kjMKg2YM.gz deleted file mode 100644 index 33d6c66d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/kjMKg2YM.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/kpwabJeh.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/kpwabJeh.gz deleted file mode 100644 index 55264f69..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/kpwabJeh.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/kx7B1ihF.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/kx7B1ihF.gz deleted file mode 100644 index 3e1eea29..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/kx7B1ihF.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/l6oXNOY5.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/l6oXNOY5.gz deleted file mode 100644 index 20a6a0a3..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/l6oXNOY5.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/l6xNnSyK.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/l6xNnSyK.gz deleted file mode 100644 index 66d40a4d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/l6xNnSyK.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/lJfRzgHZ.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/lJfRzgHZ.gz deleted file mode 100644 index 14636b46..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/lJfRzgHZ.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/lKnsk7jv.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/lKnsk7jv.gz deleted file mode 100644 index 48d707de..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/lKnsk7jv.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/lf6EacQh.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/lf6EacQh.gz deleted file mode 100644 index 6c46fbef..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/lf6EacQh.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/m1I7g+si.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/m1I7g+si.gz deleted file mode 100644 index 15fc7a08..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/m1I7g+si.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/mKCm41GD.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/mKCm41GD.gz deleted file mode 100644 index 6ecae334..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/mKCm41GD.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/mYkuZEdi.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/mYkuZEdi.gz deleted file mode 100644 index 18ab8916..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/mYkuZEdi.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/o7uAv0wC.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/o7uAv0wC.gz deleted file mode 100644 index e1a73f0e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/o7uAv0wC.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/od2uW63o.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/od2uW63o.gz deleted file mode 100644 index 801c4b10..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/od2uW63o.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/p+xdbHnC.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/p+xdbHnC.gz deleted file mode 100644 index 263d4883..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/p+xdbHnC.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/pWIEjruq.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/pWIEjruq.gz deleted file mode 100644 index adfa14b9..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/pWIEjruq.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/peDw+Yy9.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/peDw+Yy9.gz deleted file mode 100644 index 88b39f38..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/peDw+Yy9.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/q+C86qWT.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/q+C86qWT.gz deleted file mode 100644 index 0da58390..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/q+C86qWT.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/qHHiOcs6.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/qHHiOcs6.gz deleted file mode 100644 index f1f0d142..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/qHHiOcs6.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/qKorz+QM.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/qKorz+QM.gz deleted file mode 100644 index 7ba234f4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/qKorz+QM.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/rIzXv3eE.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/rIzXv3eE.gz deleted file mode 100644 index cb3f0c2f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/rIzXv3eE.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/sOFvdHMh.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/sOFvdHMh.gz deleted file mode 100644 index 0345e5ff..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/sOFvdHMh.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/sh794WsF.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/sh794WsF.gz deleted file mode 100644 index f58dcd60..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/sh794WsF.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/spxJVBGU.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/spxJVBGU.gz deleted file mode 100644 index fd11c5f9..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/spxJVBGU.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/tGWz2oWJ.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/tGWz2oWJ.gz deleted file mode 100644 index c11e0b62..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/tGWz2oWJ.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/tLnY+z2a.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/tLnY+z2a.gz deleted file mode 100644 index e3c7207d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/tLnY+z2a.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/tNIMt8TM.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/tNIMt8TM.gz deleted file mode 100644 index da396bc4..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/tNIMt8TM.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/tYeVKjgS.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/tYeVKjgS.gz deleted file mode 100644 index cdcd4555..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/tYeVKjgS.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/tgrMqSNc.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/tgrMqSNc.gz deleted file mode 100644 index f3f7d82d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/tgrMqSNc.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/tmzMw3td.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/tmzMw3td.gz deleted file mode 100644 index 80fedafc..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/tmzMw3td.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/ttWvaRvQ.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/ttWvaRvQ.gz deleted file mode 100644 index 13ac0a41..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/ttWvaRvQ.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/vI1ipYqb.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/vI1ipYqb.gz deleted file mode 100644 index 0f31cb18..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/vI1ipYqb.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/vWSmlNx5.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/vWSmlNx5.gz deleted file mode 100644 index fb441c9c..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/vWSmlNx5.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/vgE+rhU1.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/vgE+rhU1.gz deleted file mode 100644 index 300fad82..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/vgE+rhU1.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/vpDjtL+6.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/vpDjtL+6.gz deleted file mode 100644 index 3a3f1df8..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/vpDjtL+6.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/vrvJMn09.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/vrvJMn09.gz deleted file mode 100644 index 861bd518..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/vrvJMn09.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/wFpQ4XsM.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/wFpQ4XsM.gz deleted file mode 100644 index 18d18443..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/wFpQ4XsM.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/wRuJDVjF.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/wRuJDVjF.gz deleted file mode 100644 index ec85a01e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/wRuJDVjF.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/wrRolEjk.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/wrRolEjk.gz deleted file mode 100644 index 433c1484..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/wrRolEjk.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/x3WDy8sM.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/x3WDy8sM.gz deleted file mode 100644 index 4f6d28bf..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/x3WDy8sM.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/x3ZTCwCx.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/x3ZTCwCx.gz deleted file mode 100644 index d7d0a3f1..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/x3ZTCwCx.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/xFv7r9Ii.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/xFv7r9Ii.gz deleted file mode 100644 index 04301fc9..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/xFv7r9Ii.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/xdpXJry5.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/xdpXJry5.gz deleted file mode 100644 index cd70c8db..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/xdpXJry5.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/xmiwABxn.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/xmiwABxn.gz deleted file mode 100644 index 8a8d8a2d..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/xmiwABxn.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/yMqHz40p.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/yMqHz40p.gz deleted file mode 100644 index 3a0e293e..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/yMqHz40p.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/yTICDYKU.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/yTICDYKU.gz deleted file mode 100644 index 686a30f9..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/yTICDYKU.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/yeh6ldoC.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/yeh6ldoC.gz deleted file mode 100644 index a7af8feb..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/yeh6ldoC.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/build-gz/yjo6GPoA.gz b/Account_SQLite/obj/Debug/net6.0/build-gz/yjo6GPoA.gz deleted file mode 100644 index fbd779e5..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/build-gz/yjo6GPoA.gz and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/project.razor.json b/Account_SQLite/obj/Debug/net6.0/project.razor.json deleted file mode 100644 index 30a272a6..00000000 --- a/Account_SQLite/obj/Debug/net6.0/project.razor.json +++ /dev/null @@ -1,72153 +0,0 @@ -{ - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj", - "Configuration": { - "ConfigurationName": "Default", - "LanguageVersion": "6.0", - "Extensions": [] - }, - "ProjectWorkspaceState": { - "TagHelpers": [ - { - "HashCode": -1062481895, - "Kind": "Components.Component", - "Name": "Account_SQLite.App", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "App" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.App" - } - }, - { - "HashCode": 2095723713, - "Kind": "Components.Component", - "Name": "Account_SQLite.App", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Account_SQLite.App" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.App", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 112980126, - "Kind": "Components.Component", - "Name": "Account_SQLite.Pages.Index", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Index" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Pages.Index" - } - }, - { - "HashCode": 219577974, - "Kind": "Components.Component", - "Name": "Account_SQLite.Pages.Index", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Account_SQLite.Pages.Index" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Pages.Index", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1097085710, - "Kind": "Components.Component", - "Name": "Account_SQLite.Pages._Host", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "_Host" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Pages._Host" - } - }, - { - "HashCode": -968717022, - "Kind": "Components.Component", - "Name": "Account_SQLite.Pages._Host", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Account_SQLite.Pages._Host" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Pages._Host", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -133523031, - "Kind": "Components.Component", - "Name": "Account_SQLite.Pages._Layout", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "_Layout" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Pages._Layout" - } - }, - { - "HashCode": 1668947989, - "Kind": "Components.Component", - "Name": "Account_SQLite.Pages._Layout", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Account_SQLite.Pages._Layout" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Pages._Layout", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1302970091, - "Kind": "Components.Component", - "Name": "Account_SQLite.Shared.MainLayout", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "MainLayout" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Body", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", - "Metadata": { - "Common.PropertyName": "Body", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Shared.MainLayout" - } - }, - { - "HashCode": -1204315855, - "Kind": "Components.Component", - "Name": "Account_SQLite.Shared.MainLayout", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Account_SQLite.Shared.MainLayout" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Body", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", - "Metadata": { - "Common.PropertyName": "Body", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Shared.MainLayout", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1770012243, - "Kind": "Components.ChildContent", - "Name": "Account_SQLite.Shared.MainLayout.Body", - "AssemblyName": "Account_SQLite", - "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Body", - "ParentTag": "MainLayout" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Account_SQLite.Shared.MainLayout.Body", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1750779560, - "Kind": "Components.ChildContent", - "Name": "Account_SQLite.Shared.MainLayout.Body", - "AssemblyName": "Account_SQLite", - "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Body", - "ParentTag": "Account_SQLite.Shared.MainLayout" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Account_SQLite.Shared.MainLayout.Body", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1615830862, - "Kind": "Components.Component", - "Name": "Account_SQLite.Shared.NavMenu", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NavMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Shared.NavMenu" - } - }, - { - "HashCode": -61168743, - "Kind": "Components.Component", - "Name": "Account_SQLite.Shared.NavMenu", - "AssemblyName": "Account_SQLite", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Account_SQLite.Shared.NavMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Account_SQLite.Shared.NavMenu", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2074442050, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.CascadingValue", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "CascadingValue" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n The value to be provided.\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "IsFixed", - "TypeName": "System.Boolean", - "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", - "Metadata": { - "Common.PropertyName": "IsFixed" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1220423194, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.CascadingValue", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.CascadingValue" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n The value to be provided.\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "IsFixed", - "TypeName": "System.Boolean", - "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", - "Metadata": { - "Common.PropertyName": "IsFixed" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -550707607, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "CascadingValue" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1575267149, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.CascadingValue" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1954602521, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.DynamicComponent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DynamicComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.Type", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "Parameters", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ", - "Metadata": { - "Common.PropertyName": "Parameters" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent" - } - }, - { - "HashCode": 1837006718, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.DynamicComponent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.DynamicComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.Type", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "Parameters", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ", - "Metadata": { - "Common.PropertyName": "Parameters" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 678210953, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.LayoutView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "LayoutView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Layout", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", - "Metadata": { - "Common.PropertyName": "Layout" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView" - } - }, - { - "HashCode": 1106070228, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.LayoutView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.LayoutView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Layout", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", - "Metadata": { - "Common.PropertyName": "Layout" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 140819585, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "LayoutView" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1924216065, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.LayoutView" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -434031713, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.RouteView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RouteView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", - "Metadata": { - "Common.PropertyName": "RouteData" - } - }, - { - "Kind": "Components.Component", - "Name": "DefaultLayout", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", - "Metadata": { - "Common.PropertyName": "DefaultLayout" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView" - } - }, - { - "HashCode": -493010364, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.RouteView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.RouteView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", - "Metadata": { - "Common.PropertyName": "RouteData" - } - }, - { - "Kind": "Components.Component", - "Name": "DefaultLayout", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", - "Metadata": { - "Common.PropertyName": "DefaultLayout" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 934572083, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.Router", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Router" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AppAssembly", - "TypeName": "System.Reflection.Assembly", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", - "Metadata": { - "Common.PropertyName": "AppAssembly" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAssemblies", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAssemblies" - } - }, - { - "Kind": "Components.Component", - "Name": "NotFound", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "Metadata": { - "Common.PropertyName": "NotFound", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Found", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "Metadata": { - "Common.PropertyName": "Found", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Navigating", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", - "Metadata": { - "Common.PropertyName": "Navigating", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnNavigateAsync", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ", - "Metadata": { - "Common.PropertyName": "OnNavigateAsync", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PreferExactMatches", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ", - "Metadata": { - "Common.PropertyName": "PreferExactMatches" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router" - } - }, - { - "HashCode": -1322055884, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.Router", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Routing.Router" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AppAssembly", - "TypeName": "System.Reflection.Assembly", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", - "Metadata": { - "Common.PropertyName": "AppAssembly" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAssemblies", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAssemblies" - } - }, - { - "Kind": "Components.Component", - "Name": "NotFound", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "Metadata": { - "Common.PropertyName": "NotFound", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Found", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEditorRequired": true, - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "Metadata": { - "Common.PropertyName": "Found", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Navigating", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", - "Metadata": { - "Common.PropertyName": "Navigating", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnNavigateAsync", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ", - "Metadata": { - "Common.PropertyName": "OnNavigateAsync", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PreferExactMatches", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ", - "Metadata": { - "Common.PropertyName": "PreferExactMatches" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1586090514, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotFound", - "ParentTag": "Router" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1195226419, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotFound", - "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1793974710, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Found", - "ParentTag": "Router" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Found' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1939587532, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Found", - "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Found' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1550554141, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Navigating", - "ParentTag": "Router" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1223991453, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Navigating", - "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1104312341, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", - "AssemblyName": "Microsoft.AspNetCore.Components.Forms", - "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DataAnnotationsValidator" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator" - } - }, - { - "HashCode": 1778597382, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", - "AssemblyName": "Microsoft.AspNetCore.Components.Forms", - "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1816691600, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", - "Metadata": { - "Common.PropertyName": "EditContext" - } - }, - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", - "Metadata": { - "Common.PropertyName": "Model" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", - "Metadata": { - "Common.PropertyName": "OnSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnValidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "OnValidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnInvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", - "Metadata": { - "Common.PropertyName": "OnInvalidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm" - } - }, - { - "HashCode": 913197973, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.EditForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", - "Metadata": { - "Common.PropertyName": "EditContext" - } - }, - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", - "Metadata": { - "Common.PropertyName": "Model" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", - "Metadata": { - "Common.PropertyName": "OnSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnValidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "OnValidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnInvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", - "Metadata": { - "Common.PropertyName": "OnInvalidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1878232463, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "EditForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -843192619, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Forms.EditForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -585987003, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputCheckbox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" - } - }, - { - "HashCode": -1983288295, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1931598168, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputDate" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1332008517, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -807298437, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputFile" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "OnChange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ", - "Metadata": { - "Common.PropertyName": "OnChange", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile" - } - }, - { - "HashCode": 969456661, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputFile" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "OnChange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ", - "Metadata": { - "Common.PropertyName": "OnChange", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -30655613, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , , .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputNumber" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1319005411, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , , .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -435803919, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputRadio" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of this input.\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ", - "Metadata": { - "Common.PropertyName": "Name" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -125058503, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadio" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of this input.\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ", - "Metadata": { - "Common.PropertyName": "Name" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 536807856, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Groups child components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputRadioGroup" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the group.\n \n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -416165024, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Groups child components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the group.\n \n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1303307478, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "InputRadioGroup" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -645684901, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1651608839, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A dropdown selection component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputSelect" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1929732824, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A dropdown selection component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -713146602, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "InputSelect" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 428087852, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputSelect" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -389858243, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputText" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" - } - }, - { - "HashCode": -680808087, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputText" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -778606526, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A multiline input component for editing values.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputTextArea" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" - } - }, - { - "HashCode": 1322615178, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A multiline input component for editing values.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "DisplayName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", - "Metadata": { - "Common.PropertyName": "DisplayName" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 304263895, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValidationMessage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "For", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", - "Metadata": { - "Common.PropertyName": "For", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1821614454, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "For", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", - "Metadata": { - "Common.PropertyName": "For", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 628073309, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValidationSummary" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", - "Metadata": { - "Common.PropertyName": "Model" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary" - } - }, - { - "HashCode": 622227640, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", - "Metadata": { - "Common.PropertyName": "Model" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2074783401, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FocusOnNavigate" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ", - "Metadata": { - "Common.PropertyName": "RouteData" - } - }, - { - "Kind": "Components.Component", - "Name": "Selector", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ", - "Metadata": { - "Common.PropertyName": "Selector" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate" - } - }, - { - "HashCode": -1873270347, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ", - "Metadata": { - "Common.PropertyName": "RouteData" - } - }, - { - "Kind": "Components.Component", - "Name": "Selector", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ", - "Metadata": { - "Common.PropertyName": "Selector" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1964802706, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NavLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ActiveClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", - "Metadata": { - "Common.PropertyName": "ActiveClass" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Match", - "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", - "IsEnum": true, - "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", - "Metadata": { - "Common.PropertyName": "Match" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink" - } - }, - { - "HashCode": 557410031, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Routing.NavLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ActiveClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", - "Metadata": { - "Common.PropertyName": "ActiveClass" - } - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Match", - "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", - "IsEnum": true, - "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", - "Metadata": { - "Common.PropertyName": "Match" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 100313067, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "NavLink" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1537976112, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Routing.NavLink" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -95504226, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Provides content to components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeadContent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent" - } - }, - { - "HashCode": -982749320, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Provides content to components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Web.HeadContent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -83413069, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "HeadContent" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1752113130, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Web.HeadContent" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2073163222, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Renders content provided by components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeadOutlet" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet" - } - }, - { - "HashCode": 1488243984, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Renders content provided by components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Web.HeadOutlet" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1234031506, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "PageTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle" - } - }, - { - "HashCode": -922402604, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Web.PageTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1724498635, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "PageTitle" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1501680976, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Web.PageTitle" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1986643943, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Captures errors thrown from its child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ErrorBoundary" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ErrorContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", - "Metadata": { - "Common.PropertyName": "ErrorContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MaximumErrorCount", - "TypeName": "System.Int32", - "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ", - "Metadata": { - "Common.PropertyName": "MaximumErrorCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" - } - }, - { - "HashCode": 555668296, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Captures errors thrown from its child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ErrorContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", - "Metadata": { - "Common.PropertyName": "ErrorContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MaximumErrorCount", - "TypeName": "System.Int32", - "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ", - "Metadata": { - "Common.PropertyName": "MaximumErrorCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 137001226, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "ErrorBoundary" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 2110695038, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1548425071, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ErrorContent", - "ParentTag": "ErrorBoundary" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -688997084, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ErrorContent", - "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -734202640, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ItemContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "Metadata": { - "Common.PropertyName": "ItemContent", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", - "Metadata": { - "Common.PropertyName": "Placeholder", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ItemSize", - "TypeName": "System.Single", - "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ", - "Metadata": { - "Common.PropertyName": "ItemSize" - } - }, - { - "Kind": "Components.Component", - "Name": "ItemsProvider", - "TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate", - "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ", - "Metadata": { - "Common.PropertyName": "ItemsProvider", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "System.Collections.Generic.ICollection", - "Documentation": "\n \n Gets or sets the fixed item source.\n \n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OverscanCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ", - "Metadata": { - "Common.PropertyName": "OverscanCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1822091595, - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ItemContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "Metadata": { - "Common.PropertyName": "ItemContent", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", - "Metadata": { - "Common.PropertyName": "Placeholder", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ItemSize", - "TypeName": "System.Single", - "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ", - "Metadata": { - "Common.PropertyName": "ItemSize" - } - }, - { - "Kind": "Components.Component", - "Name": "ItemsProvider", - "TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate", - "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ", - "Metadata": { - "Common.PropertyName": "ItemsProvider", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "System.Collections.Generic.ICollection", - "Documentation": "\n \n Gets or sets the fixed item source.\n \n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OverscanCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ", - "Metadata": { - "Common.PropertyName": "OverscanCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 938293743, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1230735497, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1612279654, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ItemContent", - "ParentTag": "Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ItemContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1871186175, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ItemContent", - "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ItemContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1985035176, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Placeholder", - "ParentTag": "Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Placeholder' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 347259040, - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Placeholder", - "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Placeholder' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 841540448, - "Kind": "Components.Component", - "Name": "Radzen.RadzenComponentWithChildren", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A base class of components that have child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenComponentWithChildren" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.RadzenComponentWithChildren" - } - }, - { - "HashCode": -1872613320, - "Kind": "Components.Component", - "Name": "Radzen.RadzenComponentWithChildren", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A base class of components that have child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.RadzenComponentWithChildren" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.RadzenComponentWithChildren", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 103805748, - "Kind": "Components.ChildContent", - "Name": "Radzen.RadzenComponentWithChildren.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenComponentWithChildren" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.RadzenComponentWithChildren.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1454835030, - "Kind": "Components.ChildContent", - "Name": "Radzen.RadzenComponentWithChildren.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.RadzenComponentWithChildren" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.RadzenComponentWithChildren.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 896501644, - "Kind": "Components.Component", - "Name": "Radzen.DataBoundFormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class DataBoundFormComponent.\n Implements the \n Implements the \n \n \n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DataBoundFormComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.DataBoundFormComponent component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.DataBoundFormComponent", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1154737875, - "Kind": "Components.Component", - "Name": "Radzen.DataBoundFormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class DataBoundFormComponent.\n Implements the \n Implements the \n \n \n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.DataBoundFormComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.DataBoundFormComponent component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.DataBoundFormComponent", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1907669012, - "Kind": "Components.Component", - "Name": "Radzen.DropDownBase", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Base class of components that display a list of items.\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DropDownBase" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.DropDownBase component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed. Set to false by default.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.DropDownBase", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1571628173, - "Kind": "Components.Component", - "Name": "Radzen.DropDownBase", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Base class of components that display a list of items.\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.DropDownBase" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.DropDownBase component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed. Set to false by default.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.DropDownBase", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1941258331, - "Kind": "Components.ChildContent", - "Name": "Radzen.DropDownBase.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "DropDownBase" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.DropDownBase.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1380845471, - "Kind": "Components.ChildContent", - "Name": "Radzen.DropDownBase.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.DropDownBase" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.DropDownBase.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -234291353, - "Kind": "Components.Component", - "Name": "Radzen.FormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class FormComponent.\n Implements the \n Implements the \n \n \n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FormComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.FormComponent component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "T", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.FormComponent", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1427570007, - "Kind": "Components.Component", - "Name": "Radzen.FormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class FormComponent.\n Implements the \n Implements the \n \n \n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.FormComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.FormComponent component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "T", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.FormComponent", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1934149729, - "Kind": "Components.Component", - "Name": "Radzen.PagedDataBoundComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Base classes of components that support paging.\n \n The type of the data item\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "PagedDataBoundComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.PagedDataBoundComponent component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.PagedDataBoundComponent", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 392048819, - "Kind": "Components.Component", - "Name": "Radzen.PagedDataBoundComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Base classes of components that support paging.\n \n The type of the data item\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.PagedDataBoundComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "T", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter T for the Radzen.PagedDataBoundComponent component.", - "Metadata": { - "Common.PropertyName": "T", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.PagedDataBoundComponent", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1791770404, - "Kind": "Components.ChildContent", - "Name": "Radzen.PagedDataBoundComponent.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "PagedDataBoundComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.PagedDataBoundComponent.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1104301236, - "Kind": "Components.ChildContent", - "Name": "Radzen.PagedDataBoundComponent.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.PagedDataBoundComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.PagedDataBoundComponent.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -614903208, - "Kind": "Components.Component", - "Name": "Radzen.RadzenComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Base class of Radzen Blazor components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.RadzenComponent" - } - }, - { - "HashCode": -240842172, - "Kind": "Components.Component", - "Name": "Radzen.RadzenComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Base class of Radzen Blazor components.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.RadzenComponent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.RadzenComponent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1944361398, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAccordion", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenAccordion component.\n \n \n \n <RadzenAccordion>\n <Items>\n <RadzenAccordionItem Text=\"Orders\" Icon=\"account_balance_wallet\">\n Details for Orders\n </RadzenAccordionItem>\n <RadzenAccordionItem Text=\"Employees\" Icon=\"account_box\">\n Details for Employees\n </RadzenAccordionItem>\n </Items>\n </RadzenAccordion>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenAccordion" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether multiple items can be expanded.\n \n true if multiple items can be expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the selected item.\n \n The index of the selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback raised when the item is expanded.\n \n The expand.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback raised when the item is collapsed.\n \n The collapse.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAccordion" - } - }, - { - "HashCode": -1444657402, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAccordion", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenAccordion component.\n \n \n \n <RadzenAccordion>\n <Items>\n <RadzenAccordionItem Text=\"Orders\" Icon=\"account_balance_wallet\">\n Details for Orders\n </RadzenAccordionItem>\n <RadzenAccordionItem Text=\"Employees\" Icon=\"account_box\">\n Details for Employees\n </RadzenAccordionItem>\n </Items>\n </RadzenAccordion>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenAccordion" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether multiple items can be expanded.\n \n true if multiple items can be expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the selected item.\n \n The index of the selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback raised when the item is expanded.\n \n The expand.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback raised when the item is collapsed.\n \n The collapse.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAccordion", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 382813810, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAccordion.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "RadzenAccordion" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAccordion.Items", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 226386575, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAccordion.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "Radzen.Blazor.RadzenAccordion" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAccordion.Items", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 968430582, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAccordionItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class RadzenAccordionItem.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenAccordionItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAccordionItem" - } - }, - { - "HashCode": -71700202, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAccordionItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class RadzenAccordionItem.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenAccordionItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAccordionItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2140237430, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAccordionItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenAccordionItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAccordionItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1022625056, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAccordionItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenAccordionItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAccordionItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1603526674, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenArcGaugeScale", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenArcGaugeScale component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenArcGaugeScale" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the tick.\n \n The length of the tick.\n ", - "Metadata": { - "Common.PropertyName": "TickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorTickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the minor tick.\n \n The length of the minor tick.\n ", - "Metadata": { - "Common.PropertyName": "MinorTickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLabelOffset", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the tick label offset.\n \n The tick label offset.\n ", - "Metadata": { - "Common.PropertyName": "TickLabelOffset" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Height", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the height.\n \n The height.\n ", - "Metadata": { - "Common.PropertyName": "Height" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets the formatter.\n \n The formatter.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the start angle.\n \n The start angle.\n ", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "TickPosition", - "TypeName": "Radzen.Blazor.GaugeTickPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the tick position.\n \n The tick position.\n ", - "Metadata": { - "Common.PropertyName": "TickPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the end angle.\n \n The end angle.\n ", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the radius.\n \n The radius.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowFirstTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether first tick is shown.\n \n true if first tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowFirstTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowLastTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether last tick is shown.\n \n true if last tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowLastTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTickLabels", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show tick labels.\n \n true if tick labels are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTickLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the x.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorStep", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the minor step.\n \n The minor step.\n ", - "Metadata": { - "Common.PropertyName": "MinorStep" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the y.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin.\n \n The margin.\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScale" - } - }, - { - "HashCode": -778740416, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenArcGaugeScale", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenArcGaugeScale component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenArcGaugeScale" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the tick.\n \n The length of the tick.\n ", - "Metadata": { - "Common.PropertyName": "TickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorTickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the minor tick.\n \n The length of the minor tick.\n ", - "Metadata": { - "Common.PropertyName": "MinorTickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLabelOffset", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the tick label offset.\n \n The tick label offset.\n ", - "Metadata": { - "Common.PropertyName": "TickLabelOffset" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Height", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the height.\n \n The height.\n ", - "Metadata": { - "Common.PropertyName": "Height" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets the formatter.\n \n The formatter.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the start angle.\n \n The start angle.\n ", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "TickPosition", - "TypeName": "Radzen.Blazor.GaugeTickPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the tick position.\n \n The tick position.\n ", - "Metadata": { - "Common.PropertyName": "TickPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the end angle.\n \n The end angle.\n ", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the radius.\n \n The radius.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowFirstTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether first tick is shown.\n \n true if first tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowFirstTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowLastTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether last tick is shown.\n \n true if last tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowLastTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTickLabels", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show tick labels.\n \n true if tick labels are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTickLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the x.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorStep", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the minor step.\n \n The minor step.\n ", - "Metadata": { - "Common.PropertyName": "MinorStep" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the y.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin.\n \n The margin.\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScale", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1657346536, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenArcGaugeScale" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1085083961, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenArcGaugeScale" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -826873475, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenArcGaugeScaleValue component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenArcGaugeScaleValue" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowValue", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show value.\n \n true if value is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowValue" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScaleValue" - } - }, - { - "HashCode": 237475449, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenArcGaugeScaleValue component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenArcGaugeScaleValue" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowValue", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show value.\n \n true if value is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowValue" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScaleValue", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1752933542, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenArcGaugeScaleValue" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1789952603, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenArcGaugeScaleValue" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1739179490, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAreaSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders area series in .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenAreaSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenAreaSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the line.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the fill (background color) of the area series.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the pixel width of the line. Set to 2 by default.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the line type.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Smooth", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to render a smooth line. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Smooth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAreaSeries", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1225732701, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAreaSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders area series in .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenAreaSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenAreaSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the line.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the fill (background color) of the area series.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the pixel width of the line. Set to 2 by default.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the line type.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Smooth", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to render a smooth line. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Smooth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAreaSeries", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1169262029, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAreaSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenAreaSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAreaSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -319856653, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAreaSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenAreaSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAreaSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1554654510, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "RadzenAreaSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1059699373, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "Radzen.Blazor.RadzenAreaSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 448191229, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAutoComplete", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenAutoComplete component.\n \n \n \n <RadzenAutoComplete Data=@customers TextProperty=\"CompanyName\" Change=@(args => Console.WriteLine($\"Selected text: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenAutoComplete" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "MinLength", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the minimum length.\n \n The minimum length.\n ", - "Metadata": { - "Common.PropertyName": "MinLength" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAutoComplete" - } - }, - { - "HashCode": 1987941485, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAutoComplete", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenAutoComplete component.\n \n \n \n <RadzenAutoComplete Data=@customers TextProperty=\"CompanyName\" Change=@(args => Console.WriteLine($\"Selected text: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenAutoComplete" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "MinLength", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the minimum length.\n \n The minimum length.\n ", - "Metadata": { - "Common.PropertyName": "MinLength" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAutoComplete", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 937118546, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAxisTitle", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Represents the title configuration of a .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenAxisTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text displayed by the title.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAxisTitle" - } - }, - { - "HashCode": 175708865, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenAxisTitle", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Represents the title configuration of a .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenAxisTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text displayed by the title.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenAxisTitle", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1766461197, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBadge", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenBadge component.\n \n \n \n <RadzenBadge BadgeStyle=\"BadgeStyle.Primary\" Text=\"Primary\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenBadge" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "BadgeStyle", - "TypeName": "Radzen.BadgeStyle", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the badge style.\n \n The badge style.\n ", - "Metadata": { - "Common.PropertyName": "BadgeStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "IsPill", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance is pill.\n \n true if this instance is pill; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "IsPill" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBadge" - } - }, - { - "HashCode": 1687128250, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBadge", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenBadge component.\n \n \n \n <RadzenBadge BadgeStyle=\"BadgeStyle.Primary\" Text=\"Primary\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenBadge" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "BadgeStyle", - "TypeName": "Radzen.BadgeStyle", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the badge style.\n \n The badge style.\n ", - "Metadata": { - "Common.PropertyName": "BadgeStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "IsPill", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance is pill.\n \n true if this instance is pill; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "IsPill" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBadge", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1000694637, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBadge.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenBadge" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBadge.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1425720342, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBadge.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenBadge" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBadge.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1352372524, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBarOptions", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Common configuration of .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenBarOptions" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the border radius of the bars. \n \n The radius. Values greater than 0 make rounded corners.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin between bars.\n \n The margin. By default set to 10\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBarOptions" - } - }, - { - "HashCode": 495936107, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBarOptions", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Common configuration of .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenBarOptions" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the border radius of the bars. \n \n The radius. Values greater than 0 make rounded corners.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin between bars.\n \n The margin. By default set to 10\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBarOptions", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -570756545, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBarSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders bar series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenBarSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenBarSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the fill (background color) of the bar series.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual bar backgrounds.\n \n The fills.\n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the stroke (border color) of the bar series.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual bar borders.\n \n The strokes.\n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke (border).\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to render the bar border.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBarSeries", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 355614846, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBarSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders bar series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenBarSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenBarSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the fill (background color) of the bar series.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual bar backgrounds.\n \n The fills.\n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the stroke (border color) of the bar series.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual bar borders.\n \n The strokes.\n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke (border).\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to render the bar border.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBarSeries", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1216936721, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBarSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenBarSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBarSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -2070686320, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBarSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenBarSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBarSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 860649614, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "RadzenBarSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1458380130, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "Radzen.Blazor.RadzenBarSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -870503640, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBody", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenBody component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenBody" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is expanded.\n \n true if expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandedChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback raised when the component is expanded or collapsed.\n \n The expanded changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ExpandedChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBody" - } - }, - { - "HashCode": -11304691, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBody", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenBody component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenBody" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is expanded.\n \n true if expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandedChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets a callback raised when the component is expanded or collapsed.\n \n The expanded changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ExpandedChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBody", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2137597324, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBody.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenBody" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBody.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -129440168, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBody.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenBody" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBody.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1978671736, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBreadCrumb", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component to display a Bread Crumb style menu\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenBreadCrumb" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n An optional RenderFragment that is rendered per Item\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumb" - } - }, - { - "HashCode": -1910503637, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBreadCrumb", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component to display a Bread Crumb style menu\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenBreadCrumb" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n An optional RenderFragment that is rendered per Item\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumb", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1025296893, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBreadCrumb.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n An optional RenderFragment that is rendered per Item\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenBreadCrumb" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumb.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1492436619, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBreadCrumb.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n An optional RenderFragment that is rendered per Item\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenBreadCrumb" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumb.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1400690675, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBreadCrumb.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenBreadCrumb" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumb.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 580310395, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenBreadCrumb.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenBreadCrumb" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumb.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 494303725, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBreadCrumbItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Bread Crumb Item Component\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenBreadCrumbItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n The Displayed Text\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n An optional Link to be rendendered\n \n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n An optional Icon to be rendered\n \n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumbItem" - } - }, - { - "HashCode": -136577315, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenBreadCrumbItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Bread Crumb Item Component\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenBreadCrumbItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n The Displayed Text\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n An optional Link to be rendendered\n \n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n An optional Icon to be rendered\n \n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenBreadCrumbItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1524007247, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenButton", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenButton component.\n \n \n \n <RadzenButton Click=@(args => Console.WriteLine(\"Button clicked\")) Text=\"Button\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenButton" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonStyle", - "TypeName": "Radzen.ButtonStyle", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the button style.\n \n The button style.\n ", - "Metadata": { - "Common.PropertyName": "ButtonStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonType", - "TypeName": "Radzen.ButtonType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the button.\n \n The type of the button.\n ", - "Metadata": { - "Common.PropertyName": "ButtonType" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "Radzen.ButtonSize", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "IsBusy", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance busy text is shown.\n \n true if this instance busy text is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "IsBusy" - } - }, - { - "Kind": "Components.Component", - "Name": "BusyText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the busy text.\n \n The busy text.\n ", - "Metadata": { - "Common.PropertyName": "BusyText" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenButton" - } - }, - { - "HashCode": 513833300, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenButton", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenButton component.\n \n \n \n <RadzenButton Click=@(args => Console.WriteLine(\"Button clicked\")) Text=\"Button\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenButton" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonStyle", - "TypeName": "Radzen.ButtonStyle", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the button style.\n \n The button style.\n ", - "Metadata": { - "Common.PropertyName": "ButtonStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonType", - "TypeName": "Radzen.ButtonType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the button.\n \n The type of the button.\n ", - "Metadata": { - "Common.PropertyName": "ButtonType" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "Radzen.ButtonSize", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "IsBusy", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance busy text is shown.\n \n true if this instance busy text is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "IsBusy" - } - }, - { - "Kind": "Components.Component", - "Name": "BusyText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the busy text.\n \n The busy text.\n ", - "Metadata": { - "Common.PropertyName": "BusyText" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenButton", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -757299574, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenButton.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenButton" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenButton.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1368597472, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenButton.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenButton" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenButton.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1805116606, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCard", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCard component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCard" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCard" - } - }, - { - "HashCode": -951763852, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCard", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCard component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCard" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCard", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 700234692, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenCard.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenCard" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenCard.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 15538820, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenCard.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenCard" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenCard.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -19758303, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenChart", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays line, area, donut, pie, bar or column series.\n \n \n \n <RadzenChart>\n <RadzenColumnSeries Data=@revenue CategoryProperty=\"Quarter\" ValueProperty=\"Revenue\" />\n </RadzenChart>\n @code {\n class DataItem\n {\n public string Quarter { get; set; }\n public double Revenue { get; set; }\n }\n DataItem[] revenue = new DataItem[]\n {\n new DataItem { Quarter = \"Q1\", Revenue = 234000 },\n new DataItem { Quarter = \"Q2\", Revenue = 284000 },\n new DataItem { Quarter = \"Q3\", Revenue = 274000 },\n new DataItem { Quarter = \"Q4\", Revenue = 294000 }\n };\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenChart" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ColorScheme", - "TypeName": "Radzen.Blazor.ColorScheme", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the color scheme used to render the series.\n \n The color scheme.\n ", - "Metadata": { - "Common.PropertyName": "ColorScheme" - } - }, - { - "Kind": "Components.Component", - "Name": "SeriesClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user clicks on a series. \n \n ", - "Metadata": { - "Common.PropertyName": "SeriesClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content. Used to specify series and other configuration.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenChart" - } - }, - { - "HashCode": 1388532046, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenChart", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays line, area, donut, pie, bar or column series.\n \n \n \n <RadzenChart>\n <RadzenColumnSeries Data=@revenue CategoryProperty=\"Quarter\" ValueProperty=\"Revenue\" />\n </RadzenChart>\n @code {\n class DataItem\n {\n public string Quarter { get; set; }\n public double Revenue { get; set; }\n }\n DataItem[] revenue = new DataItem[]\n {\n new DataItem { Quarter = \"Q1\", Revenue = 234000 },\n new DataItem { Quarter = \"Q2\", Revenue = 284000 },\n new DataItem { Quarter = \"Q3\", Revenue = 274000 },\n new DataItem { Quarter = \"Q4\", Revenue = 294000 }\n };\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenChart" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ColorScheme", - "TypeName": "Radzen.Blazor.ColorScheme", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the color scheme used to render the series.\n \n The color scheme.\n ", - "Metadata": { - "Common.PropertyName": "ColorScheme" - } - }, - { - "Kind": "Components.Component", - "Name": "SeriesClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user clicks on a series. \n \n ", - "Metadata": { - "Common.PropertyName": "SeriesClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content. Used to specify series and other configuration.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenChart", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -677269275, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenChart.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content. Used to specify series and other configuration.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenChart" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenChart.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 536169165, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenChart.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content. Used to specify series and other configuration.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenChart" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenChart.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 362146033, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenChartTooltipOptions", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Contains tooltip configuration.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenChartTooltipOptions" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show tooltips. By defaults RadzenChart displays tooltips.\n \n true to display tooltips; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS style of the tooltip.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenChartTooltipOptions" - } - }, - { - "HashCode": 565731142, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenChartTooltipOptions", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Contains tooltip configuration.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenChartTooltipOptions" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show tooltips. By defaults RadzenChart displays tooltips.\n \n true to display tooltips; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS style of the tooltip.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenChartTooltipOptions", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 380505407, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCheckBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCheckBox component.\n \n The type of the value.\n \n \n <RadzenCheckBox @bind-Value=@someValue TValue=\"bool\" Change=@(args => Console.WriteLine($\"Is checked: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCheckBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenCheckBox component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "TriState", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is tri-state (true, false or null).\n \n true if tri-state; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "TriState" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBox", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1994852276, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCheckBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCheckBox component.\n \n The type of the value.\n \n \n <RadzenCheckBox @bind-Value=@someValue TValue=\"bool\" Change=@(args => Console.WriteLine($\"Is checked: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCheckBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenCheckBox component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "TriState", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is tri-state (true, false or null).\n \n true if tri-state; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "TriState" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBox", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1285309535, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCheckBoxList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCheckBoxList component.\n \n The type of the value.\n \n \n <RadzenCheckBoxList @bind-Value=@checkedValues TValue=\"int\" >\n <Items>\n <RadzenCheckBoxListItem Text=\"Orders\" Value=\"1\" />\n <RadzenCheckBoxListItem Text=\"Employees\" Value=\"2\" />\n </Items>\n </RadzenCheckBoxList>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCheckBoxList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenCheckBoxList component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data used to generate items.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Orientation", - "TypeName": "Radzen.Orientation", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the orientation.\n \n The orientation.\n ", - "Metadata": { - "Common.PropertyName": "Orientation" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items that will be concatenated with generated items from Data.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxList", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1970358905, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCheckBoxList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCheckBoxList component.\n \n The type of the value.\n \n \n <RadzenCheckBoxList @bind-Value=@checkedValues TValue=\"int\" >\n <Items>\n <RadzenCheckBoxListItem Text=\"Orders\" Value=\"1\" />\n <RadzenCheckBoxListItem Text=\"Employees\" Value=\"2\" />\n </Items>\n </RadzenCheckBoxList>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCheckBoxList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenCheckBoxList component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data used to generate items.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Orientation", - "TypeName": "Radzen.Orientation", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the orientation.\n \n The orientation.\n ", - "Metadata": { - "Common.PropertyName": "Orientation" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items that will be concatenated with generated items from Data.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxList", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 810145708, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenCheckBoxList.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items that will be concatenated with generated items from Data.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "RadzenCheckBoxList" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxList.Items", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -429564722, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenCheckBoxList.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items that will be concatenated with generated items from Data.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "Radzen.Blazor.RadzenCheckBoxList" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxList.Items", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 991592169, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCheckBoxListItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCheckBoxListItem component.\n \n The type of the value.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCheckBoxListItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenCheckBoxListItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxListItem", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -465103519, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCheckBoxListItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenCheckBoxListItem component.\n \n The type of the value.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCheckBoxListItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenCheckBoxListItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxListItem", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1820944878, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColorPicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenColorPicker component.\n \n \n \n <RadzenColorPicker @bind-Value=@color Change=@(args => Console.WriteLine($\"Selected color: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenColorPicker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Open", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the open callback.\n \n The open callback.\n ", - "Metadata": { - "Common.PropertyName": "Open", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Close", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the close callback.\n \n The close callback.\n ", - "Metadata": { - "Common.PropertyName": "Close", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the hexadecimal color label text.\n \n The hexadecimal text.\n ", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the red color label text.\n \n The red text.\n ", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the green color label text.\n \n The green text.\n ", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the blue color label text.\n \n The blue text.\n ", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the alpha label text.\n \n The alpha text.\n ", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the button text.\n \n The button text.\n ", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether button is shown.\n \n true if button shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether HSV is shown.\n \n true if HSV is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether RGBA is shown.\n \n true if RGBA is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether colors are shown.\n \n true if colors are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColorPicker" - } - }, - { - "HashCode": -1935393986, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColorPicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenColorPicker component.\n \n \n \n <RadzenColorPicker @bind-Value=@color Change=@(args => Console.WriteLine($\"Selected color: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenColorPicker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Open", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the open callback.\n \n The open callback.\n ", - "Metadata": { - "Common.PropertyName": "Open", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Close", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the close callback.\n \n The close callback.\n ", - "Metadata": { - "Common.PropertyName": "Close", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the hexadecimal color label text.\n \n The hexadecimal text.\n ", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the red color label text.\n \n The red text.\n ", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the green color label text.\n \n The green text.\n ", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the blue color label text.\n \n The blue text.\n ", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the alpha label text.\n \n The alpha text.\n ", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the button text.\n \n The button text.\n ", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether button is shown.\n \n true if button shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether HSV is shown.\n \n true if HSV is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether RGBA is shown.\n \n true if RGBA is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether colors are shown.\n \n true if colors are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColorPicker", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1467400315, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenColorPicker.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenColorPicker" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenColorPicker.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1342591121, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenColorPicker.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenColorPicker" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenColorPicker.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1400763291, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColorPickerItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenColorPickerItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenColorPickerItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColorPickerItem" - } - }, - { - "HashCode": 1987254066, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColorPickerItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenColorPickerItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenColorPickerItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColorPickerItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1637427477, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColumnOptions", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Common configuration of .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenColumnOptions" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the border radius of the bars. \n \n The radius. Values greater than 0 make rounded corners.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin between columns.\n \n The margin. By default set to 10\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColumnOptions" - } - }, - { - "HashCode": 196366872, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColumnOptions", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Common configuration of .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenColumnOptions" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the border radius of the bars. \n \n The radius. Values greater than 0 make rounded corners.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin between columns.\n \n The margin. By default set to 10\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColumnOptions", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2019513367, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColumnSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders column series in \n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenColumnSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenColumnSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the fill (background color) of the column series.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual column backgrounds.\n \n The fills.\n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the stroke (border color) of the column series.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual column borders.\n \n The strokes.\n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke (border).\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to render the column border.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColumnSeries", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 413989664, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenColumnSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders column series in \n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenColumnSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenColumnSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the fill (background color) of the column series.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual column backgrounds.\n \n The fills.\n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the stroke (border color) of the column series.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Specifies a list of colors that will be used to set the individual column borders.\n \n The strokes.\n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke (border).\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to render the column border.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenColumnSeries", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1692531385, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenColumnSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenColumnSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenColumnSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -496648610, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenColumnSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenColumnSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenColumnSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -597237514, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "RadzenColumnSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1301400182, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "Radzen.Blazor.RadzenColumnSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1321125012, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCompareValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which compares a component value with a specified value.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenPassword style=\"display: block\" Name=\"Password\" @bind-Value=@model.Password />\n <RadzenPassword style=\"display: block\" Name=\"RepeatPassword\" @bind-Value=@model.RepeatPassword />\n <RadzenCompareValidator Value=@model.Password Component=\"RepeatPassword\" Text=\"Passwords should be the same\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Password { get; set; }\n public double Value { get; set; }\n public string RepeatPassword { get; set; }\n } \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCompareValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Value should match\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the value to compare with.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Operator", - "TypeName": "Radzen.Blazor.CompareOperator", - "IsEnum": true, - "Documentation": "\n \n Specifies the comparison operator. Set to CompareOperator.Equal by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Operator" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCompareValidator" - } - }, - { - "HashCode": -175312044, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCompareValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which compares a component value with a specified value.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenPassword style=\"display: block\" Name=\"Password\" @bind-Value=@model.Password />\n <RadzenPassword style=\"display: block\" Name=\"RepeatPassword\" @bind-Value=@model.RepeatPassword />\n <RadzenCompareValidator Value=@model.Password Component=\"RepeatPassword\" Text=\"Passwords should be the same\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Password { get; set; }\n public double Value { get; set; }\n public string RepeatPassword { get; set; }\n } \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCompareValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Value should match\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the value to compare with.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Operator", - "TypeName": "Radzen.Blazor.CompareOperator", - "IsEnum": true, - "Documentation": "\n \n Specifies the comparison operator. Set to CompareOperator.Equal by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Operator" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCompareValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1130946355, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenContent component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenContent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Container", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the container.\n \n The container.\n ", - "Metadata": { - "Common.PropertyName": "Container" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenContent" - } - }, - { - "HashCode": 51429002, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenContent component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenContent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Container", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the container.\n \n The container.\n ", - "Metadata": { - "Common.PropertyName": "Container" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1718315130, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenContent.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenContent" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenContent.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1003085433, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenContent.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenContent" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenContent.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1434342599, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenContentContainer", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenContentContainer component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenContentContainer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenContentContainer" - } - }, - { - "HashCode": -232134061, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenContentContainer", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenContentContainer component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenContentContainer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenContentContainer", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1859549829, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenContentContainer.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenContentContainer" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenContentContainer.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1623399156, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenContentContainer.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenContentContainer" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenContentContainer.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1314826264, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenContextMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenContextMenu component.\n \n \n \n @inject ContextMenuService ContextMenuService\n \n <RadzenButton Text=\"Show context menu\" ContextMenu=@(args => ShowContextMenuWithItems(args)) />\n \n @code {\n void ShowContextMenuWithItems(MouseEventArgs args)\n {\n ContextMenuService.Open(args,\n new List<ContextMenuItem> {\n new ContextMenuItem() { Text = \"Context menu item 1\", Value = 1 },\n new ContextMenuItem() { Text = \"Context menu item 2\", Value = 2 },\n new ContextMenuItem() { Text = \"Context menu item 3\", Value = 3 },\n }, OnMenuItemClick);\n }\n \n void OnMenuItemClick(MenuItemEventArgs args)\n {\n Console.WriteLine($\"Menu item with Value={args.Value} clicked\");\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenContextMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenContextMenu" - } - }, - { - "HashCode": 1006176670, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenContextMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenContextMenu component.\n \n \n \n @inject ContextMenuService ContextMenuService\n \n <RadzenButton Text=\"Show context menu\" ContextMenu=@(args => ShowContextMenuWithItems(args)) />\n \n @code {\n void ShowContextMenuWithItems(MouseEventArgs args)\n {\n ContextMenuService.Open(args,\n new List<ContextMenuItem> {\n new ContextMenuItem() { Text = \"Context menu item 1\", Value = 1 },\n new ContextMenuItem() { Text = \"Context menu item 2\", Value = 2 },\n new ContextMenuItem() { Text = \"Context menu item 3\", Value = 3 },\n }, OnMenuItemClick);\n }\n \n void OnMenuItemClick(MenuItemEventArgs args)\n {\n Console.WriteLine($\"Menu item with Value={args.Value} clicked\");\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenContextMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenContextMenu", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2103406529, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDataGrid component.\n \n The type of the DataGrid data item.\n \n \n <RadzenDataGrid @data=@orders TItem=\"Order\" AllowSorting=\"true\" AllowPaging=\"true\" AllowFiltering=\"true\">\n <Columns>\n <RadzenDataGridColumn TItem=\"Order\" Property=\"OrderId\" Title=\"OrderId\" />\n <RadzenDataGridColumn TItem=\"Order\" Property=\"OrderDate\" Title=\"OrderDate\" />\n </Columns>\n </RadzenDataGrid>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGrid component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCompositeDataCells", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid data cells will follow the header cells structure in composite columns.\n \n true if DataGrid data cells will follow the header cells structure in composite columns; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCompositeDataCells" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid is responsive.\n \n true if DataGrid is Responsive; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "Group", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column group callback.\n \n The column group callback.\n ", - "Metadata": { - "Common.PropertyName": "Group", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Sort", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column sort callback.\n \n The column sort callback.\n ", - "Metadata": { - "Common.PropertyName": "Sort", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Filter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column filter callback.\n \n The column filter callback.\n ", - "Metadata": { - "Common.PropertyName": "Filter", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the logical filter operator.\n \n The logical filter operator.\n ", - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterMode", - "TypeName": "Radzen.FilterMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter mode.\n \n The filter mode.\n ", - "Metadata": { - "Common.PropertyName": "FilterMode" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandMode", - "TypeName": "Radzen.DataGridExpandMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the expand mode.\n \n The expand mode.\n ", - "Metadata": { - "Common.PropertyName": "ExpandMode" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowExpandColumn", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets whether the expandable indicator column is visible.\n \n The expandable indicator column visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowExpandColumn" - } - }, - { - "Kind": "Components.Component", - "Name": "EditMode", - "TypeName": "Radzen.DataGridEditMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the edit mode.\n \n The edit mode.\n ", - "Metadata": { - "Common.PropertyName": "EditMode" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter text.\n \n The filter text.\n ", - "Metadata": { - "Common.PropertyName": "FilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "EnumFilterSelectText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the enum filter select text.\n \n The enum filter select text.\n ", - "Metadata": { - "Common.PropertyName": "EnumFilterSelectText" - } - }, - { - "Kind": "Components.Component", - "Name": "AndOperatorText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the and operator text.\n \n The and operator text.\n ", - "Metadata": { - "Common.PropertyName": "AndOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "OrOperatorText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the or operator text.\n \n The or operator text.\n ", - "Metadata": { - "Common.PropertyName": "OrOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "ApplyFilterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the apply filter text.\n \n The apply filter text.\n ", - "Metadata": { - "Common.PropertyName": "ApplyFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "ClearFilterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the clear filter text.\n \n The clear filter text.\n ", - "Metadata": { - "Common.PropertyName": "ClearFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "EqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the equals text.\n \n The equals text.\n ", - "Metadata": { - "Common.PropertyName": "EqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "NotEqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the not equals text.\n \n The not equals text.\n ", - "Metadata": { - "Common.PropertyName": "NotEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the less than text.\n \n The less than text.\n ", - "Metadata": { - "Common.PropertyName": "LessThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanOrEqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the less than or equals text.\n \n The less than or equals text.\n ", - "Metadata": { - "Common.PropertyName": "LessThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the greater than text.\n \n The greater than text.\n ", - "Metadata": { - "Common.PropertyName": "GreaterThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanOrEqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the greater than or equals text.\n \n The greater than or equals text.\n ", - "Metadata": { - "Common.PropertyName": "GreaterThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "EndsWithText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the ends with text.\n \n The ends with text.\n ", - "Metadata": { - "Common.PropertyName": "EndsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "ContainsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the contains text.\n \n The contains text.\n ", - "Metadata": { - "Common.PropertyName": "ContainsText" - } - }, - { - "Kind": "Components.Component", - "Name": "DoesNotContainText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the does not contain text.\n \n The does not contain text.\n ", - "Metadata": { - "Common.PropertyName": "DoesNotContainText" - } - }, - { - "Kind": "Components.Component", - "Name": "StartsWithText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the starts with text.\n \n The starts with text.\n ", - "Metadata": { - "Common.PropertyName": "StartsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "IsNotNullText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the not null text.\n \n The not null text.\n ", - "Metadata": { - "Common.PropertyName": "IsNotNullText" - } - }, - { - "Kind": "Components.Component", - "Name": "IsNullText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the is null text.\n \n The null text.\n ", - "Metadata": { - "Common.PropertyName": "IsNullText" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDateFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter date format.\n \n The filter date format.\n ", - "Metadata": { - "Common.PropertyName": "FilterDateFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width of all columns.\n \n The width of the columns.\n ", - "Metadata": { - "Common.PropertyName": "ColumnWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the empty text shown when Data is empty collection.\n \n The empty text.\n ", - "Metadata": { - "Common.PropertyName": "EmptyText" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "Metadata": { - "Common.PropertyName": "EmptyTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance is virtualized.\n \n true if this instance is virtualized; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "IsLoading", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance loading indicator is shown.\n \n true if this instance loading indicator is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "IsLoading" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowSorting", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether sorting is allowed.\n \n true if sorting is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowMultiColumnSorting", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether multi column sorting is allowed.\n \n true if multi column sorting is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowMultiColumnSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowMultiColumnSortingIndex", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether multi column sorting index is shown.\n \n true if multi column sorting index is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowMultiColumnSortingIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnResize", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column resizing is allowed.\n \n true if column resizing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnResize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnReorder", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column reorder is allowed.\n \n true if column reorder is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnReorder" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnPicking", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column picking is allowed.\n \n true if column picking is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnPicking" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnsShowingText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the column picker columns showing text.\n \n The column picker columns showing text.\n ", - "Metadata": { - "Common.PropertyName": "ColumnsShowingText" - } - }, - { - "Kind": "Components.Component", - "Name": "AllColumnsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the column picker all columns text.\n \n The column picker all columns text.\n ", - "Metadata": { - "Common.PropertyName": "AllColumnsText" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the column picker columns text.\n \n The column picker columns text.\n ", - "Metadata": { - "Common.PropertyName": "ColumnsText" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowGrouping", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether grouping is allowed.\n \n true if grouping is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowGrouping" - } - }, - { - "Kind": "Components.Component", - "Name": "HideGroupedColumn", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether grouped column should be hidden.\n \n true if grouped columns should be hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "HideGroupedColumn" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFootersAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether group footers are visible even when the group is collapsed.\n \n true if group footers are visible when the group is collapsed otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "GroupFootersAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupHeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the group header template.\n \n The group header template.\n ", - "Metadata": { - "Common.PropertyName": "GroupHeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupPanelText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group panel text.\n \n The group panel text.\n ", - "Metadata": { - "Common.PropertyName": "GroupPanelText" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnResized", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column resized callback.\n \n The column resized callback.\n ", - "Metadata": { - "Common.PropertyName": "ColumnResized", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnReordered", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column reordered callback.\n \n The column reordered callback.\n ", - "Metadata": { - "Common.PropertyName": "ColumnReordered", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Collections.Generic.IList", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the value changed callback.\n \n The value changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row select callback.\n \n The row select callback.\n ", - "Metadata": { - "Common.PropertyName": "RowSelect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDeselect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row deselect callback.\n \n The row deselect callback.\n ", - "Metadata": { - "Common.PropertyName": "RowDeselect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the row click callback.\n \n The row click callback.\n ", - "Metadata": { - "Common.PropertyName": "RowClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDoubleClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the row double click callback.\n \n The row double click callback.\n ", - "Metadata": { - "Common.PropertyName": "RowDoubleClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CellContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the row click callback.\n \n The row click callback.\n ", - "Metadata": { - "Common.PropertyName": "CellContextMenu", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowExpand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row expand callback.\n \n The row expand callback.\n ", - "Metadata": { - "Common.PropertyName": "RowExpand", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupRowExpand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the group row expand callback.\n \n The group row expand callback.\n ", - "Metadata": { - "Common.PropertyName": "GroupRowExpand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCollapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row collapse callback.\n \n The row collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "RowCollapse", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupRowCollapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the group row collapse callback.\n \n The group row collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "GroupRowCollapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the row render callback. Use it to set row attributes.\n \n The row render callback.\n ", - "Metadata": { - "Common.PropertyName": "RowRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupRowRender", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the group row render callback. Use it to set group row attributes.\n \n The group row render callback.\n ", - "Metadata": { - "Common.PropertyName": "GroupRowRender", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CellRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the cell render callback. Use it to set cell attributes.\n \n The cell render callback.\n ", - "Metadata": { - "Common.PropertyName": "CellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCellRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the header cell render callback. Use it to set header cell attributes.\n \n The cell render callback.\n ", - "Metadata": { - "Common.PropertyName": "HeaderCellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCellRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the footer cell render callback. Use it to set footer cell attributes.\n \n The cell render callback.\n ", - "Metadata": { - "Common.PropertyName": "FooterCellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Render", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the render callback.\n \n The render callback.\n ", - "Metadata": { - "Common.PropertyName": "Render", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowRowSelectOnRowClick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid row can be selected on row click.\n \n true if DataGrid row can be selected on row click; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowRowSelectOnRowClick" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectionMode", - "TypeName": "Radzen.DataGridSelectionMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the selection mode.\n \n The selection mode.\n ", - "Metadata": { - "Common.PropertyName": "SelectionMode" - } - }, - { - "Kind": "Components.Component", - "Name": "RowEdit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row edit callback.\n \n The row edit callback.\n ", - "Metadata": { - "Common.PropertyName": "RowEdit", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowUpdate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row update callback.\n \n The row update callback.\n ", - "Metadata": { - "Common.PropertyName": "RowUpdate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCreate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row create callback.\n \n The row create callback.\n ", - "Metadata": { - "Common.PropertyName": "RowCreate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1202494730, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDataGrid component.\n \n The type of the DataGrid data item.\n \n \n <RadzenDataGrid @data=@orders TItem=\"Order\" AllowSorting=\"true\" AllowPaging=\"true\" AllowFiltering=\"true\">\n <Columns>\n <RadzenDataGridColumn TItem=\"Order\" Property=\"OrderId\" Title=\"OrderId\" />\n <RadzenDataGridColumn TItem=\"Order\" Property=\"OrderDate\" Title=\"OrderDate\" />\n </Columns>\n </RadzenDataGrid>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGrid component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCompositeDataCells", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid data cells will follow the header cells structure in composite columns.\n \n true if DataGrid data cells will follow the header cells structure in composite columns; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCompositeDataCells" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid is responsive.\n \n true if DataGrid is Responsive; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "Group", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column group callback.\n \n The column group callback.\n ", - "Metadata": { - "Common.PropertyName": "Group", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Sort", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column sort callback.\n \n The column sort callback.\n ", - "Metadata": { - "Common.PropertyName": "Sort", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Filter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column filter callback.\n \n The column filter callback.\n ", - "Metadata": { - "Common.PropertyName": "Filter", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the logical filter operator.\n \n The logical filter operator.\n ", - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterMode", - "TypeName": "Radzen.FilterMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter mode.\n \n The filter mode.\n ", - "Metadata": { - "Common.PropertyName": "FilterMode" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandMode", - "TypeName": "Radzen.DataGridExpandMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the expand mode.\n \n The expand mode.\n ", - "Metadata": { - "Common.PropertyName": "ExpandMode" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowExpandColumn", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets whether the expandable indicator column is visible.\n \n The expandable indicator column visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowExpandColumn" - } - }, - { - "Kind": "Components.Component", - "Name": "EditMode", - "TypeName": "Radzen.DataGridEditMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the edit mode.\n \n The edit mode.\n ", - "Metadata": { - "Common.PropertyName": "EditMode" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter text.\n \n The filter text.\n ", - "Metadata": { - "Common.PropertyName": "FilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "EnumFilterSelectText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the enum filter select text.\n \n The enum filter select text.\n ", - "Metadata": { - "Common.PropertyName": "EnumFilterSelectText" - } - }, - { - "Kind": "Components.Component", - "Name": "AndOperatorText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the and operator text.\n \n The and operator text.\n ", - "Metadata": { - "Common.PropertyName": "AndOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "OrOperatorText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the or operator text.\n \n The or operator text.\n ", - "Metadata": { - "Common.PropertyName": "OrOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "ApplyFilterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the apply filter text.\n \n The apply filter text.\n ", - "Metadata": { - "Common.PropertyName": "ApplyFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "ClearFilterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the clear filter text.\n \n The clear filter text.\n ", - "Metadata": { - "Common.PropertyName": "ClearFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "EqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the equals text.\n \n The equals text.\n ", - "Metadata": { - "Common.PropertyName": "EqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "NotEqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the not equals text.\n \n The not equals text.\n ", - "Metadata": { - "Common.PropertyName": "NotEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the less than text.\n \n The less than text.\n ", - "Metadata": { - "Common.PropertyName": "LessThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanOrEqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the less than or equals text.\n \n The less than or equals text.\n ", - "Metadata": { - "Common.PropertyName": "LessThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the greater than text.\n \n The greater than text.\n ", - "Metadata": { - "Common.PropertyName": "GreaterThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanOrEqualsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the greater than or equals text.\n \n The greater than or equals text.\n ", - "Metadata": { - "Common.PropertyName": "GreaterThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "EndsWithText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the ends with text.\n \n The ends with text.\n ", - "Metadata": { - "Common.PropertyName": "EndsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "ContainsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the contains text.\n \n The contains text.\n ", - "Metadata": { - "Common.PropertyName": "ContainsText" - } - }, - { - "Kind": "Components.Component", - "Name": "DoesNotContainText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the does not contain text.\n \n The does not contain text.\n ", - "Metadata": { - "Common.PropertyName": "DoesNotContainText" - } - }, - { - "Kind": "Components.Component", - "Name": "StartsWithText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the starts with text.\n \n The starts with text.\n ", - "Metadata": { - "Common.PropertyName": "StartsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "IsNotNullText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the not null text.\n \n The not null text.\n ", - "Metadata": { - "Common.PropertyName": "IsNotNullText" - } - }, - { - "Kind": "Components.Component", - "Name": "IsNullText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the is null text.\n \n The null text.\n ", - "Metadata": { - "Common.PropertyName": "IsNullText" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDateFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter date format.\n \n The filter date format.\n ", - "Metadata": { - "Common.PropertyName": "FilterDateFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width of all columns.\n \n The width of the columns.\n ", - "Metadata": { - "Common.PropertyName": "ColumnWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the empty text shown when Data is empty collection.\n \n The empty text.\n ", - "Metadata": { - "Common.PropertyName": "EmptyText" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "Metadata": { - "Common.PropertyName": "EmptyTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance is virtualized.\n \n true if this instance is virtualized; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "IsLoading", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance loading indicator is shown.\n \n true if this instance loading indicator is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "IsLoading" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowSorting", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether sorting is allowed.\n \n true if sorting is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowMultiColumnSorting", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether multi column sorting is allowed.\n \n true if multi column sorting is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowMultiColumnSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowMultiColumnSortingIndex", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether multi column sorting index is shown.\n \n true if multi column sorting index is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowMultiColumnSortingIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnResize", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column resizing is allowed.\n \n true if column resizing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnResize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnReorder", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column reorder is allowed.\n \n true if column reorder is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnReorder" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnPicking", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column picking is allowed.\n \n true if column picking is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnPicking" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnsShowingText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the column picker columns showing text.\n \n The column picker columns showing text.\n ", - "Metadata": { - "Common.PropertyName": "ColumnsShowingText" - } - }, - { - "Kind": "Components.Component", - "Name": "AllColumnsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the column picker all columns text.\n \n The column picker all columns text.\n ", - "Metadata": { - "Common.PropertyName": "AllColumnsText" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the column picker columns text.\n \n The column picker columns text.\n ", - "Metadata": { - "Common.PropertyName": "ColumnsText" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowGrouping", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether grouping is allowed.\n \n true if grouping is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowGrouping" - } - }, - { - "Kind": "Components.Component", - "Name": "HideGroupedColumn", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether grouped column should be hidden.\n \n true if grouped columns should be hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "HideGroupedColumn" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFootersAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether group footers are visible even when the group is collapsed.\n \n true if group footers are visible when the group is collapsed otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "GroupFootersAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupHeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the group header template.\n \n The group header template.\n ", - "Metadata": { - "Common.PropertyName": "GroupHeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupPanelText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group panel text.\n \n The group panel text.\n ", - "Metadata": { - "Common.PropertyName": "GroupPanelText" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnResized", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column resized callback.\n \n The column resized callback.\n ", - "Metadata": { - "Common.PropertyName": "ColumnResized", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnReordered", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the column reordered callback.\n \n The column reordered callback.\n ", - "Metadata": { - "Common.PropertyName": "ColumnReordered", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Collections.Generic.IList", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the value changed callback.\n \n The value changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row select callback.\n \n The row select callback.\n ", - "Metadata": { - "Common.PropertyName": "RowSelect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDeselect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row deselect callback.\n \n The row deselect callback.\n ", - "Metadata": { - "Common.PropertyName": "RowDeselect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the row click callback.\n \n The row click callback.\n ", - "Metadata": { - "Common.PropertyName": "RowClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDoubleClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the row double click callback.\n \n The row double click callback.\n ", - "Metadata": { - "Common.PropertyName": "RowDoubleClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CellContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n Gets or sets the row click callback.\n \n The row click callback.\n ", - "Metadata": { - "Common.PropertyName": "CellContextMenu", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowExpand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row expand callback.\n \n The row expand callback.\n ", - "Metadata": { - "Common.PropertyName": "RowExpand", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupRowExpand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the group row expand callback.\n \n The group row expand callback.\n ", - "Metadata": { - "Common.PropertyName": "GroupRowExpand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCollapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row collapse callback.\n \n The row collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "RowCollapse", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupRowCollapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the group row collapse callback.\n \n The group row collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "GroupRowCollapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the row render callback. Use it to set row attributes.\n \n The row render callback.\n ", - "Metadata": { - "Common.PropertyName": "RowRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupRowRender", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the group row render callback. Use it to set group row attributes.\n \n The group row render callback.\n ", - "Metadata": { - "Common.PropertyName": "GroupRowRender", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CellRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the cell render callback. Use it to set cell attributes.\n \n The cell render callback.\n ", - "Metadata": { - "Common.PropertyName": "CellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCellRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the header cell render callback. Use it to set header cell attributes.\n \n The cell render callback.\n ", - "Metadata": { - "Common.PropertyName": "HeaderCellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCellRender", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the footer cell render callback. Use it to set footer cell attributes.\n \n The cell render callback.\n ", - "Metadata": { - "Common.PropertyName": "FooterCellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Render", - "TypeName": "System.Action>", - "Documentation": "\n \n Gets or sets the render callback.\n \n The render callback.\n ", - "Metadata": { - "Common.PropertyName": "Render", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowRowSelectOnRowClick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid row can be selected on row click.\n \n true if DataGrid row can be selected on row click; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowRowSelectOnRowClick" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectionMode", - "TypeName": "Radzen.DataGridSelectionMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the selection mode.\n \n The selection mode.\n ", - "Metadata": { - "Common.PropertyName": "SelectionMode" - } - }, - { - "Kind": "Components.Component", - "Name": "RowEdit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row edit callback.\n \n The row edit callback.\n ", - "Metadata": { - "Common.PropertyName": "RowEdit", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowUpdate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row update callback.\n \n The row update callback.\n ", - "Metadata": { - "Common.PropertyName": "RowUpdate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCreate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the row create callback.\n \n The row create callback.\n ", - "Metadata": { - "Common.PropertyName": "RowCreate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -406072489, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "RadzenDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.Columns", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -2065293862, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "Radzen.Blazor.RadzenDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.Columns", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -673006476, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.EmptyTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EmptyTemplate", - "ParentTag": "RadzenDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.EmptyTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -703269531, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.EmptyTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EmptyTemplate", - "ParentTag": "Radzen.Blazor.RadzenDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.EmptyTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2036352692, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.GroupHeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the group header template.\n \n The group header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GroupHeaderTemplate", - "ParentTag": "RadzenDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'GroupHeaderTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.GroupHeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1637695664, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.GroupHeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the group header template.\n \n The group header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GroupHeaderTemplate", - "ParentTag": "Radzen.Blazor.RadzenDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'GroupHeaderTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.GroupHeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2027111380, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 952664776, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGrid.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1992907176, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridColumn", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDataGridColumn component.\n Must be placed inside a \n \n The type of the DataGrid item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridColumn component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OrderIndex", - "TypeName": "System.Int32?", - "Documentation": "\n \n Gets or sets the order index.\n \n The order index.\n ", - "Metadata": { - "Common.PropertyName": "OrderIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SortOrder", - "TypeName": "Radzen.SortOrder?", - "Documentation": "\n \n Gets or sets the sort order.\n \n The sort order.\n ", - "Metadata": { - "Common.PropertyName": "SortOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Property", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the property name.\n \n The property name.\n ", - "Metadata": { - "Common.PropertyName": "Property" - } - }, - { - "Kind": "Components.Component", - "Name": "SortProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the sort property name.\n \n The sort property name.\n ", - "Metadata": { - "Common.PropertyName": "SortProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group property name.\n \n The group property name.\n ", - "Metadata": { - "Common.PropertyName": "GroupProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter property name.\n \n The filter property name.\n ", - "Metadata": { - "Common.PropertyName": "FilterProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the filter value.\n \n The filter value.\n ", - "Metadata": { - "Common.PropertyName": "FilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the second filter value.\n \n The second filter value.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width.\n \n The width.\n ", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "MinWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the min-width.\n \n The min-width.\n ", - "Metadata": { - "Common.PropertyName": "MinWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS class applied to data cells.\n \n The CSS class applied to data cells.\n ", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the header CSS class applied to header cell.\n \n The header CSS class applied to header cell.\n ", - "Metadata": { - "Common.PropertyName": "HeaderCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the footer CSS class applied to footer cell.\n \n The footer CSS class applied to footer cell.\n ", - "Metadata": { - "Common.PropertyName": "FooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group footer CSS class applied to group footer cell.\n \n The group footer CSS class applied to group footer cell.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Filterable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is filterable.\n \n true if filterable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Filterable" - } - }, - { - "Kind": "Components.Component", - "Name": "Sortable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is sortable.\n \n true if sortable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Sortable" - } - }, - { - "Kind": "Components.Component", - "Name": "Frozen", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is frozen.\n \n true if frozen; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Frozen" - } - }, - { - "Kind": "Components.Component", - "Name": "Resizable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is resizable.\n \n true if resizable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Resizable" - } - }, - { - "Kind": "Components.Component", - "Name": "Reorderable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is reorderable.\n \n true if reorderable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Reorderable" - } - }, - { - "Kind": "Components.Component", - "Name": "Groupable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is groupable.\n \n true if groupable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Groupable" - } - }, - { - "Kind": "Components.Component", - "Name": "Pickable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is pickable - listed when DataGrid AllowColumnPicking is set to true.\n \n true if pickable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Pickable" - } - }, - { - "Kind": "Components.Component", - "Name": "TextAlign", - "TypeName": "Radzen.TextAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the text align.\n \n The text align.\n ", - "Metadata": { - "Common.PropertyName": "TextAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "Metadata": { - "Common.PropertyName": "EditTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "Metadata": { - "Common.PropertyName": "FilterTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the logical filter operator.\n \n The logical filter operator.\n ", - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the data type.\n \n The data type.\n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the second filter operator.\n \n The second filter operator.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -107786236, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridColumn", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDataGridColumn component.\n Must be placed inside a \n \n The type of the DataGrid item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridColumn component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OrderIndex", - "TypeName": "System.Int32?", - "Documentation": "\n \n Gets or sets the order index.\n \n The order index.\n ", - "Metadata": { - "Common.PropertyName": "OrderIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SortOrder", - "TypeName": "Radzen.SortOrder?", - "Documentation": "\n \n Gets or sets the sort order.\n \n The sort order.\n ", - "Metadata": { - "Common.PropertyName": "SortOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Property", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the property name.\n \n The property name.\n ", - "Metadata": { - "Common.PropertyName": "Property" - } - }, - { - "Kind": "Components.Component", - "Name": "SortProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the sort property name.\n \n The sort property name.\n ", - "Metadata": { - "Common.PropertyName": "SortProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group property name.\n \n The group property name.\n ", - "Metadata": { - "Common.PropertyName": "GroupProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter property name.\n \n The filter property name.\n ", - "Metadata": { - "Common.PropertyName": "FilterProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the filter value.\n \n The filter value.\n ", - "Metadata": { - "Common.PropertyName": "FilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the second filter value.\n \n The second filter value.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width.\n \n The width.\n ", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "MinWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the min-width.\n \n The min-width.\n ", - "Metadata": { - "Common.PropertyName": "MinWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS class applied to data cells.\n \n The CSS class applied to data cells.\n ", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the header CSS class applied to header cell.\n \n The header CSS class applied to header cell.\n ", - "Metadata": { - "Common.PropertyName": "HeaderCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the footer CSS class applied to footer cell.\n \n The footer CSS class applied to footer cell.\n ", - "Metadata": { - "Common.PropertyName": "FooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group footer CSS class applied to group footer cell.\n \n The group footer CSS class applied to group footer cell.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Filterable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is filterable.\n \n true if filterable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Filterable" - } - }, - { - "Kind": "Components.Component", - "Name": "Sortable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is sortable.\n \n true if sortable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Sortable" - } - }, - { - "Kind": "Components.Component", - "Name": "Frozen", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is frozen.\n \n true if frozen; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Frozen" - } - }, - { - "Kind": "Components.Component", - "Name": "Resizable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is resizable.\n \n true if resizable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Resizable" - } - }, - { - "Kind": "Components.Component", - "Name": "Reorderable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is reorderable.\n \n true if reorderable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Reorderable" - } - }, - { - "Kind": "Components.Component", - "Name": "Groupable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is groupable.\n \n true if groupable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Groupable" - } - }, - { - "Kind": "Components.Component", - "Name": "Pickable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is pickable - listed when DataGrid AllowColumnPicking is set to true.\n \n true if pickable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Pickable" - } - }, - { - "Kind": "Components.Component", - "Name": "TextAlign", - "TypeName": "Radzen.TextAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the text align.\n \n The text align.\n ", - "Metadata": { - "Common.PropertyName": "TextAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "Metadata": { - "Common.PropertyName": "EditTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "Metadata": { - "Common.PropertyName": "FilterTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the logical filter operator.\n \n The logical filter operator.\n ", - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the data type.\n \n The data type.\n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the second filter operator.\n \n The second filter operator.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -138567746, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "RadzenDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.Columns", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -19898536, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.Columns", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 49542362, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 330857203, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 773185429, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.EditTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditTemplate", - "ParentTag": "RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'EditTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.EditTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -660139519, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.EditTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditTemplate", - "ParentTag": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'EditTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.EditTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1873915221, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "RadzenDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1955690552, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 691167017, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "RadzenDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 2025790001, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -339102722, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.GroupFooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GroupFooterTemplate", - "ParentTag": "RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'GroupFooterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.GroupFooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -92953600, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.GroupFooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GroupFooterTemplate", - "ParentTag": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'GroupFooterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.GroupFooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1659145518, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.FilterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FilterTemplate", - "ParentTag": "RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'FilterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.FilterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1319785043, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridColumn.FilterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FilterTemplate", - "ParentTag": "Radzen.Blazor.RadzenDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'FilterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridColumn.FilterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -49148166, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDataList component.\n \n The type of the item.\n \n \n <RadzenDataList @data=@orders TItem=\"Order\" AllowPaging=\"true\" WrapItems=\"true\">\n <Template>\n @context.OrderId\n </Template>\n </RadzenDataList>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataList component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "WrapItems", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to wrap items.\n \n true if wrap items; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "WrapItems" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataList", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 2144238984, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDataList component.\n \n The type of the item.\n \n \n <RadzenDataList @data=@orders TItem=\"Order\" AllowPaging=\"true\" WrapItems=\"true\">\n <Template>\n @context.OrderId\n </Template>\n </RadzenDataList>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataList component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "WrapItems", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to wrap items.\n \n true if wrap items; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "WrapItems" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataList", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 535330355, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataList.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenDataList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataList.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1071127406, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataList.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenDataList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataList.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -388276350, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDatePicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDatePicker component.\n \n The type of the t value.\n \n \n <RadzenDatePicker @bind-Value=@someValue TValue=\"DateTime\" Change=@(args => Console.WriteLine($\"Selected date: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDatePicker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDatePicker component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether value can be cleared.\n \n true if value can be cleared; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the tab index.\n \n The tab index.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the form component.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "InputClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the input CSS class.\n \n The input CSS class.\n ", - "Metadata": { - "Common.PropertyName": "InputClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.DateTime?", - "Documentation": "\n \n Gets or sets the Minimum Selectable Date.\n \n The Minimum Selectable Date.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.DateTime?", - "Documentation": "\n \n Gets or sets the Maximum Selectable Date.\n \n The Maximum Selectable Date.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "InitialViewDate", - "TypeName": "System.DateTime?", - "Documentation": "\n \n Gets or sets the Initial Date/Month View.\n \n The Initial Date/Month View.\n ", - "Metadata": { - "Common.PropertyName": "InitialViewDate" - } - }, - { - "Kind": "Components.Component", - "Name": "DateRender", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the date render callback. Use it to set attributes.\n \n The date render callback.\n ", - "Metadata": { - "Common.PropertyName": "DateRender", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Kind", - "TypeName": "System.DateTimeKind", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the kind of DateTime bind to control\n \n ", - "Metadata": { - "Common.PropertyName": "Kind" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "CurrentDateChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or set the current date changed callback.\n \n ", - "Metadata": { - "Common.PropertyName": "CurrentDateChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Inline", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is inline - only Calender.\n \n true if inline; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Inline" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether time only can be set.\n \n true if time only can be set; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "TimeOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether read only.\n \n true if read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowInput", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input is allowed.\n \n true if input is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowInput" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTime", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether time part is shown.\n \n true if time part is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTime" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowSeconds", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether seconds are shown.\n \n true if seconds are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowSeconds" - } - }, - { - "Kind": "Components.Component", - "Name": "HoursStep", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the hours step.\n \n The hours step.\n ", - "Metadata": { - "Common.PropertyName": "HoursStep" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesStep", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the minutes step.\n \n The minutes step.\n ", - "Metadata": { - "Common.PropertyName": "MinutesStep" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondsStep", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the seconds step.\n \n The seconds step.\n ", - "Metadata": { - "Common.PropertyName": "SecondsStep" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTimeOkButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether time ok button is shown.\n \n true if time ok button is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTimeOkButton" - } - }, - { - "Kind": "Components.Component", - "Name": "DateFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the date format.\n \n The date format.\n ", - "Metadata": { - "Common.PropertyName": "DateFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "YearRange", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the year range.\n \n The year range.\n ", - "Metadata": { - "Common.PropertyName": "YearRange" - } - }, - { - "Kind": "Components.Component", - "Name": "HourFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the hour format.\n \n The hour format.\n ", - "Metadata": { - "Common.PropertyName": "HourFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the input placeholder.\n \n The input placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed callback.\n \n The value changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDatePicker", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1493288713, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDatePicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDatePicker component.\n \n The type of the t value.\n \n \n <RadzenDatePicker @bind-Value=@someValue TValue=\"DateTime\" Change=@(args => Console.WriteLine($\"Selected date: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDatePicker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDatePicker component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether value can be cleared.\n \n true if value can be cleared; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the tab index.\n \n The tab index.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the form component.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "InputClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the input CSS class.\n \n The input CSS class.\n ", - "Metadata": { - "Common.PropertyName": "InputClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.DateTime?", - "Documentation": "\n \n Gets or sets the Minimum Selectable Date.\n \n The Minimum Selectable Date.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.DateTime?", - "Documentation": "\n \n Gets or sets the Maximum Selectable Date.\n \n The Maximum Selectable Date.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "InitialViewDate", - "TypeName": "System.DateTime?", - "Documentation": "\n \n Gets or sets the Initial Date/Month View.\n \n The Initial Date/Month View.\n ", - "Metadata": { - "Common.PropertyName": "InitialViewDate" - } - }, - { - "Kind": "Components.Component", - "Name": "DateRender", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the date render callback. Use it to set attributes.\n \n The date render callback.\n ", - "Metadata": { - "Common.PropertyName": "DateRender", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Kind", - "TypeName": "System.DateTimeKind", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the kind of DateTime bind to control\n \n ", - "Metadata": { - "Common.PropertyName": "Kind" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "CurrentDateChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or set the current date changed callback.\n \n ", - "Metadata": { - "Common.PropertyName": "CurrentDateChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Inline", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is inline - only Calender.\n \n true if inline; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Inline" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether time only can be set.\n \n true if time only can be set; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "TimeOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether read only.\n \n true if read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowInput", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input is allowed.\n \n true if input is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowInput" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTime", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether time part is shown.\n \n true if time part is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTime" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowSeconds", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether seconds are shown.\n \n true if seconds are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowSeconds" - } - }, - { - "Kind": "Components.Component", - "Name": "HoursStep", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the hours step.\n \n The hours step.\n ", - "Metadata": { - "Common.PropertyName": "HoursStep" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesStep", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the minutes step.\n \n The minutes step.\n ", - "Metadata": { - "Common.PropertyName": "MinutesStep" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondsStep", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the seconds step.\n \n The seconds step.\n ", - "Metadata": { - "Common.PropertyName": "SecondsStep" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTimeOkButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether time ok button is shown.\n \n true if time ok button is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTimeOkButton" - } - }, - { - "Kind": "Components.Component", - "Name": "DateFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the date format.\n \n The date format.\n ", - "Metadata": { - "Common.PropertyName": "DateFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "YearRange", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the year range.\n \n The year range.\n ", - "Metadata": { - "Common.PropertyName": "YearRange" - } - }, - { - "Kind": "Components.Component", - "Name": "HourFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the hour format.\n \n The hour format.\n ", - "Metadata": { - "Common.PropertyName": "HourFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the input placeholder.\n \n The input placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed callback.\n \n The value changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDatePicker", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2011501891, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDatePicker.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "RadzenDatePicker" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDatePicker.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1796788898, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDatePicker.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "Radzen.Blazor.RadzenDatePicker" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDatePicker.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -795570507, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDayView", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays the appointments in a single day in \n \n \n \n <RadzenScheduler Data=\"@appointments\">\n <RadzenDayView />\n </RadzenScheduler>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDayView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the time format.\n \n The time format. Set to h tt by default.\n ", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the start time.\n \n The start time.\n ", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the end time.\n \n The end time.\n ", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets slot size in minutes. Set to 30 by default.\n \n The slot size in minutes.\n ", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDayView" - } - }, - { - "HashCode": 821905236, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDayView", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays the appointments in a single day in \n \n \n \n <RadzenScheduler Data=\"@appointments\">\n <RadzenDayView />\n </RadzenScheduler>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDayView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the time format.\n \n The time format. Set to h tt by default.\n ", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the start time.\n \n The start time.\n ", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the end time.\n \n The end time.\n ", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets slot size in minutes. Set to 30 by default.\n \n The slot size in minutes.\n ", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDayView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 389871227, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDonutSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders donut series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDonutSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDonutSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "InnerRadius", - "TypeName": "System.Double?", - "Documentation": "\n \n Gets or sets the inner radius of the donut.\n \n The inner radius.\n ", - "Metadata": { - "Common.PropertyName": "InnerRadius" - } - }, - { - "Kind": "Components.Component", - "Name": "TitleTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the title template.\n \n The title template.\n ", - "Metadata": { - "Common.PropertyName": "TitleTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the x coordinate of the pie center. Not set by default which centers pie horizontally.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the y coordinate of the pie center. Not set by default which centers pie vertically.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the radius of the pie. Not set by default - the pie takes as much size of the chart as possible.\n \n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The fill colors of the pie segments. Used as the background of the segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The stroke colors of the pie segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n The stroke width of the segments in pixels. By default set to 0.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 2125507392, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDonutSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders donut series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDonutSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDonutSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "InnerRadius", - "TypeName": "System.Double?", - "Documentation": "\n \n Gets or sets the inner radius of the donut.\n \n The inner radius.\n ", - "Metadata": { - "Common.PropertyName": "InnerRadius" - } - }, - { - "Kind": "Components.Component", - "Name": "TitleTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the title template.\n \n The title template.\n ", - "Metadata": { - "Common.PropertyName": "TitleTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the x coordinate of the pie center. Not set by default which centers pie horizontally.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the y coordinate of the pie center. Not set by default which centers pie vertically.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the radius of the pie. Not set by default - the pie takes as much size of the chart as possible.\n \n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The fill colors of the pie segments. Used as the background of the segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The stroke colors of the pie segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n The stroke width of the segments in pixels. By default set to 0.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1809142473, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDonutSeries.TitleTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the title template.\n \n The title template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TitleTemplate", - "ParentTag": "RadzenDonutSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries.TitleTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1215283822, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDonutSeries.TitleTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the title template.\n \n The title template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TitleTemplate", - "ParentTag": "Radzen.Blazor.RadzenDonutSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries.TitleTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1564634298, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDonutSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenDonutSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -246295926, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDonutSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenDonutSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 830703190, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDonutSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "RadzenDonutSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1835804134, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDonutSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "Radzen.Blazor.RadzenDonutSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDonutSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -292986124, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDropDown component.\n \n The type of the value.\n \n \n <RadzenDropDown @bind-Value=@customerID TValue=\"string\" Data=@customers TextProperty=\"CompanyName\" ValueProperty=\"CustomerID\" Change=@(args => Console.WriteLine($\"Selected CustomerID: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDown" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDropDown component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "OpenOnFocus", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether popup should open on focus. Set to false by default.\n \n true if popup should open on focus; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "OpenOnFocus" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxSelectedLabels", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of maximum selected labels.\n \n The number of maximum selected labels.\n ", - "Metadata": { - "Common.PropertyName": "MaxSelectedLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the selected items text.\n \n The selected items text.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemsText" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectAllText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the select all text.\n \n The select all text.\n ", - "Metadata": { - "Common.PropertyName": "SelectAllText" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed. Set to false by default.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 655607397, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDropDown component.\n \n The type of the value.\n \n \n <RadzenDropDown @bind-Value=@customerID TValue=\"string\" Data=@customers TextProperty=\"CompanyName\" ValueProperty=\"CustomerID\" Change=@(args => Console.WriteLine($\"Selected CustomerID: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDown" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDropDown component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "OpenOnFocus", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether popup should open on focus. Set to false by default.\n \n true if popup should open on focus; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "OpenOnFocus" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxSelectedLabels", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of maximum selected labels.\n \n The number of maximum selected labels.\n ", - "Metadata": { - "Common.PropertyName": "MaxSelectedLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the selected items text.\n \n The selected items text.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemsText" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectAllText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the select all text.\n \n The select all text.\n ", - "Metadata": { - "Common.PropertyName": "SelectAllText" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed. Set to false by default.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2081159003, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDown.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenDropDown" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1038350166, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDown.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenDropDown" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 203271502, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDropDownDataGrid component.\n \n The type of the t value.\n \n \n <RadzenDropDownDataGrid @bind-Value=@customerID TValue=\"string\" Data=@customers TextProperty=\"CompanyName\" ValueProperty=\"CustomerID\" Change=@(args => Console.WriteLine($\"Selected CustomerID: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDownDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDropDownDataGrid component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "OpenOnFocus", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether popup should open on focus. Set to false by default.\n \n true if popup should open on focus; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "OpenOnFocus" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the value template.\n \n The value template.\n ", - "Metadata": { - "Common.PropertyName": "ValueTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "Metadata": { - "Common.PropertyName": "EmptyTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnResize", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column resizing is allowed.\n \n true if column resizing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnResize" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width of all columns.\n \n The width of all columns.\n ", - "Metadata": { - "Common.PropertyName": "ColumnWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is responsive.\n \n true if responsive; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowSearch", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether search button is shown.\n \n true if search button is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowSearch" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the empty text.\n \n The empty text.\n ", - "Metadata": { - "Common.PropertyName": "EmptyText" - } - }, - { - "Kind": "Components.Component", - "Name": "SearchText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the search input placeholder text.\n \n The search input placeholder text.\n ", - "Metadata": { - "Common.PropertyName": "SearchText" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected value.\n \n The selected value.\n ", - "Metadata": { - "Common.PropertyName": "SelectedValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxSelectedLabels", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of maximum selected labels.\n \n The maximum selected labels.\n ", - "Metadata": { - "Common.PropertyName": "MaxSelectedLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the selected items text.\n \n The selected items text.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemsText" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowSorting", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether sorting is allowed.\n \n true if sorting is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFilteringByAllStringColumns", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering by all string columns is allowed.\n \n true if filtering by all string columns is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFilteringByAllStringColumns" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowRowSelectOnRowClick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid row can be selected on row click.\n \n true if DataGrid row can be selected on row click; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowRowSelectOnRowClick" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1804204948, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenDropDownDataGrid component.\n \n The type of the t value.\n \n \n <RadzenDropDownDataGrid @bind-Value=@customerID TValue=\"string\" Data=@customers TextProperty=\"CompanyName\" ValueProperty=\"CustomerID\" Change=@(args => Console.WriteLine($\"Selected CustomerID: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDownDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDropDownDataGrid component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "OpenOnFocus", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether popup should open on focus. Set to false by default.\n \n true if popup should open on focus; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "OpenOnFocus" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the value template.\n \n The value template.\n ", - "Metadata": { - "Common.PropertyName": "ValueTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "Metadata": { - "Common.PropertyName": "EmptyTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnResize", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether column resizing is allowed.\n \n true if column resizing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowColumnResize" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width of all columns.\n \n The width of all columns.\n ", - "Metadata": { - "Common.PropertyName": "ColumnWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is responsive.\n \n true if responsive; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowSearch", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether search button is shown.\n \n true if search button is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowSearch" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the empty text.\n \n The empty text.\n ", - "Metadata": { - "Common.PropertyName": "EmptyText" - } - }, - { - "Kind": "Components.Component", - "Name": "SearchText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the search input placeholder text.\n \n The search input placeholder text.\n ", - "Metadata": { - "Common.PropertyName": "SearchText" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected value.\n \n The selected value.\n ", - "Metadata": { - "Common.PropertyName": "SelectedValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxSelectedLabels", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of maximum selected labels.\n \n The maximum selected labels.\n ", - "Metadata": { - "Common.PropertyName": "MaxSelectedLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemsText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the selected items text.\n \n The selected items text.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemsText" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowSorting", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether sorting is allowed.\n \n true if sorting is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFilteringByAllStringColumns", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering by all string columns is allowed.\n \n true if filtering by all string columns is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFilteringByAllStringColumns" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowRowSelectOnRowClick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether DataGrid row can be selected on row click.\n \n true if DataGrid row can be selected on row click; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowRowSelectOnRowClick" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 428338097, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.ValueTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the value template.\n \n The value template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValueTemplate", - "ParentTag": "RadzenDropDownDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ValueTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.ValueTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -469628663, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.ValueTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the value template.\n \n The value template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValueTemplate", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ValueTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.ValueTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -903511743, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.EmptyTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EmptyTemplate", - "ParentTag": "RadzenDropDownDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.EmptyTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1599412860, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.EmptyTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the empty template shown when Data is empty collection.\n \n The empty template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EmptyTemplate", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.EmptyTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -808912972, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "RadzenDropDownDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.Columns", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -494127255, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.Columns", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -526003313, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenDropDownDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 177577831, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 518621022, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenEmailValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if a component value is a valid email address.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenEmailValidator Component=\"Email\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenEmailValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Invalid email\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenEmailValidator" - } - }, - { - "HashCode": -2075123097, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenEmailValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if a component value is a valid email address.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenEmailValidator Component=\"Email\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenEmailValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Invalid email\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenEmailValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 340754781, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenFieldset", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenFieldset component.\n \n \n \n <RadzenFieldset AllowCollapse=\"true\"\">\n <HeaderTemplate>\n Header\n </HeaderTemplate>\n <ChildContent>\n Content\n </ChildContent>\n <SummaryTemplate>\n Summary\n </SummaryTemplate>\n </RadzenFieldset>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenFieldset" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AllowCollapse", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether collapsing is allowed. Set to false by default.\n \n true if collapsing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCollapse" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsed", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsed.\n \n true if collapsed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsed" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "SummaryTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "Metadata": { - "Common.PropertyName": "SummaryTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expand callback.\n \n The expand callback.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the collapse callback.\n \n The collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset" - } - }, - { - "HashCode": 1774590429, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenFieldset", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenFieldset component.\n \n \n \n <RadzenFieldset AllowCollapse=\"true\"\">\n <HeaderTemplate>\n Header\n </HeaderTemplate>\n <ChildContent>\n Content\n </ChildContent>\n <SummaryTemplate>\n Summary\n </SummaryTemplate>\n </RadzenFieldset>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenFieldset" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AllowCollapse", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether collapsing is allowed. Set to false by default.\n \n true if collapsing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCollapse" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsed", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsed.\n \n true if collapsed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsed" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "SummaryTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "Metadata": { - "Common.PropertyName": "SummaryTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expand callback.\n \n The expand callback.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the collapse callback.\n \n The collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 694511082, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFieldset.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "RadzenFieldset" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 618622895, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFieldset.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "Radzen.Blazor.RadzenFieldset" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 599825421, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFieldset.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenFieldset" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 219192700, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFieldset.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenFieldset" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -326728612, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFieldset.SummaryTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "SummaryTemplate", - "ParentTag": "RadzenFieldset" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset.SummaryTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1993362813, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFieldset.SummaryTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "SummaryTemplate", - "ParentTag": "Radzen.Blazor.RadzenFieldset" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFieldset.SummaryTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -419558678, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenFileInput", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenFileInput component.\n \n The type of the value.\n \n \n <RadzenFileInput @bind-Value=@employee.Photo TValue=\"string\" Change=@(args => Console.WriteLine($\"File content as base64 string: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenFileInput" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenFileInput component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChooseText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the choose button text.\n \n The choose button text.\n ", - "Metadata": { - "Common.PropertyName": "ChooseText" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Error", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the error callback.\n \n The error callback.\n ", - "Metadata": { - "Common.PropertyName": "Error", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ImageClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the image click callback.\n \n The image click callback.\n ", - "Metadata": { - "Common.PropertyName": "ImageClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Accept", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the comma-separated accepted MIME types.\n \n The comma-separated accepted MIME types.\n ", - "Metadata": { - "Common.PropertyName": "Accept" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxFileSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the maximum size of the file.\n \n The maximum size of the file.\n ", - "Metadata": { - "Common.PropertyName": "MaxFileSize" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxWidth", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the maximum width of the file, keeping aspect ratio.\n \n The maximum width of the file.\n ", - "Metadata": { - "Common.PropertyName": "MaxWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxHeight", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the maximum height of the file, keeping aspect ratio.\n \n The maximum height of the file.\n ", - "Metadata": { - "Common.PropertyName": "MaxHeight" - } - }, - { - "Kind": "Components.Component", - "Name": "ImageStyle", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image style.\n \n The image style.\n ", - "Metadata": { - "Common.PropertyName": "ImageStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenFileInput", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 844303639, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenFileInput", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenFileInput component.\n \n The type of the value.\n \n \n <RadzenFileInput @bind-Value=@employee.Photo TValue=\"string\" Change=@(args => Console.WriteLine($\"File content as base64 string: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenFileInput" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenFileInput component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChooseText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the choose button text.\n \n The choose button text.\n ", - "Metadata": { - "Common.PropertyName": "ChooseText" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Error", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the error callback.\n \n The error callback.\n ", - "Metadata": { - "Common.PropertyName": "Error", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ImageClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the image click callback.\n \n The image click callback.\n ", - "Metadata": { - "Common.PropertyName": "ImageClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Accept", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the comma-separated accepted MIME types.\n \n The comma-separated accepted MIME types.\n ", - "Metadata": { - "Common.PropertyName": "Accept" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxFileSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the maximum size of the file.\n \n The maximum size of the file.\n ", - "Metadata": { - "Common.PropertyName": "MaxFileSize" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxWidth", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the maximum width of the file, keeping aspect ratio.\n \n The maximum width of the file.\n ", - "Metadata": { - "Common.PropertyName": "MaxWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxHeight", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the maximum height of the file, keeping aspect ratio.\n \n The maximum height of the file.\n ", - "Metadata": { - "Common.PropertyName": "MaxHeight" - } - }, - { - "Kind": "Components.Component", - "Name": "ImageStyle", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image style.\n \n The image style.\n ", - "Metadata": { - "Common.PropertyName": "ImageStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenFileInput", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -618817283, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenFooter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenFooter component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenFooter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenFooter" - } - }, - { - "HashCode": -1276675317, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenFooter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenFooter component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenFooter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenFooter", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1196517500, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFooter.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenFooter" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFooter.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 35610838, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenFooter.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenFooter" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenFooter.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1037891373, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGoogleMap", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenGoogleMap component.\n \n \n \n <RadzenGoogleMap Zoom=\"3\" Center=@(new GoogleMapPosition() { Lat = 42.6977, Lng = 23.3219 }) MapClick=@OnMapClick MarkerClick=@OnMarkerClick\">\n <Markers>\n <RadzenGoogleMapMarker Title=\"London\" Label=\"London\" Position=@(new GoogleMapPosition() { Lat = 51.5074, Lng = 0.1278 }) />\n <RadzenGoogleMapMarker Title=\"Paris \" Label=\"Paris\" Position=@(new GoogleMapPosition() { Lat = 48.8566, Lng = 2.3522 }) />\n </Markers>\n </RadzenGoogleMap>\n @code {\n void OnMapClick(GoogleMapClickEventArgs args)\n {\n Console.WriteLine($\"Map clicked at Lat: {args.Position.Lat}, Lng: {args.Position.Lng}\");\n }\n \n void OnMarkerClick(RadzenGoogleMapMarker marker)\n {\n Console.WriteLine($\"Map {marker.Title} marker clicked. Marker position -> Lat: {marker.Position.Lat}, Lng: {marker.Position.Lng}\");\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGoogleMap" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data - collection of RadzenGoogleMapMarker.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "MapClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the map click callback.\n \n The map click callback.\n ", - "Metadata": { - "Common.PropertyName": "MapClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the marker click callback.\n \n The marker click callback.\n ", - "Metadata": { - "Common.PropertyName": "MarkerClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ApiKey", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the Google API key.\n \n The Google API key.\n ", - "Metadata": { - "Common.PropertyName": "ApiKey" - } - }, - { - "Kind": "Components.Component", - "Name": "Zoom", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the zoom.\n \n The zoom.\n ", - "Metadata": { - "Common.PropertyName": "Zoom" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.GoogleMapPosition", - "Documentation": "\n \n Gets or sets the center map position.\n \n The center.\n ", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Markers", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the markers.\n \n The markers.\n ", - "Metadata": { - "Common.PropertyName": "Markers", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGoogleMap" - } - }, - { - "HashCode": 1195414387, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGoogleMap", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenGoogleMap component.\n \n \n \n <RadzenGoogleMap Zoom=\"3\" Center=@(new GoogleMapPosition() { Lat = 42.6977, Lng = 23.3219 }) MapClick=@OnMapClick MarkerClick=@OnMarkerClick\">\n <Markers>\n <RadzenGoogleMapMarker Title=\"London\" Label=\"London\" Position=@(new GoogleMapPosition() { Lat = 51.5074, Lng = 0.1278 }) />\n <RadzenGoogleMapMarker Title=\"Paris \" Label=\"Paris\" Position=@(new GoogleMapPosition() { Lat = 48.8566, Lng = 2.3522 }) />\n </Markers>\n </RadzenGoogleMap>\n @code {\n void OnMapClick(GoogleMapClickEventArgs args)\n {\n Console.WriteLine($\"Map clicked at Lat: {args.Position.Lat}, Lng: {args.Position.Lng}\");\n }\n \n void OnMarkerClick(RadzenGoogleMapMarker marker)\n {\n Console.WriteLine($\"Map {marker.Title} marker clicked. Marker position -> Lat: {marker.Position.Lat}, Lng: {marker.Position.Lng}\");\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGoogleMap" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data - collection of RadzenGoogleMapMarker.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "MapClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the map click callback.\n \n The map click callback.\n ", - "Metadata": { - "Common.PropertyName": "MapClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the marker click callback.\n \n The marker click callback.\n ", - "Metadata": { - "Common.PropertyName": "MarkerClick", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ApiKey", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the Google API key.\n \n The Google API key.\n ", - "Metadata": { - "Common.PropertyName": "ApiKey" - } - }, - { - "Kind": "Components.Component", - "Name": "Zoom", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the zoom.\n \n The zoom.\n ", - "Metadata": { - "Common.PropertyName": "Zoom" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.GoogleMapPosition", - "Documentation": "\n \n Gets or sets the center map position.\n \n The center.\n ", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Markers", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the markers.\n \n The markers.\n ", - "Metadata": { - "Common.PropertyName": "Markers", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGoogleMap", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1145949484, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGoogleMap.Markers", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the markers.\n \n The markers.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Markers", - "ParentTag": "RadzenGoogleMap" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGoogleMap.Markers", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 262612803, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGoogleMap.Markers", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the markers.\n \n The markers.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Markers", - "ParentTag": "Radzen.Blazor.RadzenGoogleMap" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGoogleMap.Markers", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 952136348, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGoogleMapMarker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenGoogleMapMarker component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGoogleMapMarker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Position", - "TypeName": "Radzen.GoogleMapPosition", - "Documentation": "\n \n Gets or sets the position.\n \n The position.\n ", - "Metadata": { - "Common.PropertyName": "Position" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Label", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the label.\n \n The label.\n ", - "Metadata": { - "Common.PropertyName": "Label" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGoogleMapMarker" - } - }, - { - "HashCode": -2011785928, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGoogleMapMarker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenGoogleMapMarker component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGoogleMapMarker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Position", - "TypeName": "Radzen.GoogleMapPosition", - "Documentation": "\n \n Gets or sets the position.\n \n The position.\n ", - "Metadata": { - "Common.PropertyName": "Position" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Label", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the label.\n \n The label.\n ", - "Metadata": { - "Common.PropertyName": "Label" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGoogleMapMarker", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1065545466, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGravatar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenGravatar component.\n \n \n \n <RadzenGravatar Email=\"info@radzen.com\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGravatar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Email", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the email.\n \n The email.\n ", - "Metadata": { - "Common.PropertyName": "Email" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGravatar" - } - }, - { - "HashCode": 1538067853, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGravatar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenGravatar component.\n \n \n \n <RadzenGravatar Email=\"info@radzen.com\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGravatar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Email", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the email.\n \n The email.\n ", - "Metadata": { - "Common.PropertyName": "Email" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGravatar", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1938712725, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridLines", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Grid line configuration of .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGridLines" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the grid lines.\n \n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Specifies the pixel width of the grid lines. Set to 1 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the type of line used to render the grid lines.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to display grid lines or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridLines" - } - }, - { - "HashCode": 1398749367, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridLines", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Grid line configuration of .\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGridLines" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the grid lines.\n \n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Specifies the pixel width of the grid lines. Set to 1 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the type of line used to render the grid lines.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to display grid lines or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridLines", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -872707401, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHeader", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenHeader component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHeader" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHeader" - } - }, - { - "HashCode": -1359057236, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHeader", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenHeader component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHeader" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHeader", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1727441309, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHeader.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenHeader" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHeader.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -304634196, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHeader.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenHeader" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHeader.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -129457397, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHeading", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenHeading component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHeading" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHeading" - } - }, - { - "HashCode": 1464747972, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHeading", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenHeading component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHeading" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHeading", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -339055633, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtml", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenHtml component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtml" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtml" - } - }, - { - "HashCode": 590969479, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtml", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenHtml component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtml" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtml", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 350718278, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtml.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenHtml" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtml.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 528483181, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtml.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenHtml" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtml.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1922714592, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditor", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which edits HTML content. Provides built-in upload capabilities.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html />\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditor" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "UploadHeaders", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Specifies custom headers that will be submit during uploads.\n \n ", - "Metadata": { - "Common.PropertyName": "UploadHeaders" - } - }, - { - "Kind": "Components.Component", - "Name": "Paste", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user pastes content in the editor. Commonly used to filter unwanted HTML.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html Paste=@OnPaste />\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n void OnPaste(HtmlEditorPasteEventArgs args)\n {\n // Set args.Html to filter unwanted tags.\n args.Html = args.Html.Replace(\"<br>>\", \"\");\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Paste", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Execute", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user executes a command of the editor (e.g. by clicking one of the tools).\n \n \n \n <RadzenHtmlEditor Execute=@OnExecute>\n <RadzenHtmlEditorCustomTool CommandName=\"InsertToday\" Icon=\"today\" Title=\"Insert today\" />\n </RadzenHtmlEditor>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n async Task OnExecute(HtmlEditorExecuteEventArgs args)\n {\n if (args.CommandName == \"InsertToday\")\n {\n await args.Editor.ExecuteCommandAsync(HtmlEditorCommands.InsertHtml, DateTime.Today.ToLongDateString());\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Execute", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "UploadUrl", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the URL to which RadzenHtmlEditor will submit files.\n \n ", - "Metadata": { - "Common.PropertyName": "UploadUrl" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditor" - } - }, - { - "HashCode": -1754625463, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditor", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which edits HTML content. Provides built-in upload capabilities.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html />\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditor" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "UploadHeaders", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Specifies custom headers that will be submit during uploads.\n \n ", - "Metadata": { - "Common.PropertyName": "UploadHeaders" - } - }, - { - "Kind": "Components.Component", - "Name": "Paste", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user pastes content in the editor. Commonly used to filter unwanted HTML.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html Paste=@OnPaste />\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n void OnPaste(HtmlEditorPasteEventArgs args)\n {\n // Set args.Html to filter unwanted tags.\n args.Html = args.Html.Replace(\"<br>>\", \"\");\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Paste", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Execute", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user executes a command of the editor (e.g. by clicking one of the tools).\n \n \n \n <RadzenHtmlEditor Execute=@OnExecute>\n <RadzenHtmlEditorCustomTool CommandName=\"InsertToday\" Icon=\"today\" Title=\"Insert today\" />\n </RadzenHtmlEditor>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n async Task OnExecute(HtmlEditorExecuteEventArgs args)\n {\n if (args.CommandName == \"InsertToday\")\n {\n await args.Editor.ExecuteCommandAsync(HtmlEditorCommands.InsertHtml, DateTime.Today.ToLongDateString());\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Execute", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "UploadUrl", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the URL to which RadzenHtmlEditor will submit files.\n \n ", - "Metadata": { - "Common.PropertyName": "UploadUrl" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditor", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 206318433, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditor.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenHtmlEditor" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditor.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1746887878, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditor.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenHtmlEditor" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditor.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1753465815, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorAlignCenter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which centers the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorAlignCenter />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorAlignCenter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Align center\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorAlignCenter" - } - }, - { - "HashCode": 969628157, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorAlignCenter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which centers the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorAlignCenter />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorAlignCenter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Align center\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorAlignCenter", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 353188329, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorAlignLeft", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which aligns the selection to the left.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorAlignLeft />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorAlignLeft" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Align left\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorAlignLeft" - } - }, - { - "HashCode": -1003588534, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorAlignLeft", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which aligns the selection to the left.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorAlignLeft />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorAlignLeft" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Align left\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorAlignLeft", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1169179827, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorAlignRight", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which aligns the selection to the right.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorAlignRight />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorAlignRight" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Align right\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorAlignRight" - } - }, - { - "HashCode": 401639561, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorAlignRight", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which aligns the selection to the right.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorAlignRight />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorAlignRight" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Align right\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorAlignRight", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1052656621, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorBackground", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which sets the background color of the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorBackground />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorBackground" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the default background color. Set to \"rgb(0, 0, 255)\" by default;\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Background color\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBackground" - } - }, - { - "HashCode": -1537172164, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorBackground", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which sets the background color of the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorBackground />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorBackground" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the default background color. Set to \"rgb(0, 0, 255)\" by default;\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Background color\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBackground", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1138603092, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorBackground.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenHtmlEditorBackground" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBackground.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1558227943, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorBackground.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenHtmlEditorBackground" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBackground.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1650705916, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorBackgroundItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Adds a custom color to .\n \n \n \n <RadzenHtmlEditorBackground >\n <RadzenHtmlEditorBackgroundItem Value=\"red\" />\n <RadzenHtmlEditorBackgroundItem Value=\"green\" />\n </RadzenHtmlEditorBackground >\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorBackgroundItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n The custom color to add.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBackgroundItem" - } - }, - { - "HashCode": -1071191437, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorBackgroundItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Adds a custom color to .\n \n \n \n <RadzenHtmlEditorBackground >\n <RadzenHtmlEditorBackgroundItem Value=\"red\" />\n <RadzenHtmlEditorBackgroundItem Value=\"green\" />\n </RadzenHtmlEditorBackground >\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorBackgroundItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n The custom color to add.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBackgroundItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1151853769, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorBold", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which bolds the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorBold />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorBold" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Bold\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBold" - } - }, - { - "HashCode": -26443157, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorBold", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which bolds the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorBold />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorBold" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Bold\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorBold", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 909338536, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorColor", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which sets the text color of the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorColor />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorColor" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the default text color. Set to \"rgb(255, 0, 0)\" by default;\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Text color\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorColor" - } - }, - { - "HashCode": -1177566880, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorColor", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which sets the text color of the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorColor />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorColor" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the default text color. Set to \"rgb(255, 0, 0)\" by default;\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Text color\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Documentation": "\n \n Sets of the built-in RadzenColorPicker.\n \n ", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorColor", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2091642815, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorColor.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenHtmlEditorColor" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorColor.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -795003812, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorColor.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenHtmlEditorColor" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorColor.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1415099727, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorColorItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Adds a custom color to .\n \n \n \n <RadzenHtmlEditorColor >\n <RadzenHtmlEditorColorItem Value=\"red\" />\n <RadzenHtmlEditorColorItem Value=\"green\" />\n </RadzenHtmlEditorColor >\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorColorItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n The custom color to add.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorColorItem" - } - }, - { - "HashCode": 176733148, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorColorItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Adds a custom color to .\n \n \n \n <RadzenHtmlEditorColor >\n <RadzenHtmlEditorColorItem Value=\"red\" />\n <RadzenHtmlEditorColorItem Value=\"green\" />\n </RadzenHtmlEditorColor >\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorColorItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n The custom color to add.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorColorItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -99209456, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A custom tool in RadzenHtmlEditor\n \n \n \n <RadzenHtmlEditor Execute=@OnExecute>\n <RadzenHtmlEditorCustomTool CommandName=\"InsertToday\" Icon=\"today\" Title=\"Insert today\" />\n </RadzenHtmlEditor>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n async Task OnExecute(HtmlEditorExecuteEventArgs args)\n {\n if (args.CommandName == \"InsertToday\")\n {\n await args.Editor.ExecuteCommandAsync(HtmlEditorCommands.InsertHtml, DateTime.Today.ToLongDateString());\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorCustomTool" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the tools is visible.\n \n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the icon of the tool. Set to \"settings\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The template of the tool. Use to render a custom tool.\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether the tool is selected.\n \n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether the tool is disabled.\n \n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "CommandName", - "TypeName": "System.String", - "Documentation": "\n Specifies the name of the command. It is available as when\n is raised.\n ", - "Metadata": { - "Common.PropertyName": "CommandName" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorCustomTool" - } - }, - { - "HashCode": -50241453, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A custom tool in RadzenHtmlEditor\n \n \n \n <RadzenHtmlEditor Execute=@OnExecute>\n <RadzenHtmlEditorCustomTool CommandName=\"InsertToday\" Icon=\"today\" Title=\"Insert today\" />\n </RadzenHtmlEditor>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n async Task OnExecute(HtmlEditorExecuteEventArgs args)\n {\n if (args.CommandName == \"InsertToday\")\n {\n await args.Editor.ExecuteCommandAsync(HtmlEditorCommands.InsertHtml, DateTime.Today.ToLongDateString());\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorCustomTool" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the tools is visible.\n \n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the icon of the tool. Set to \"settings\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n The template of the tool. Use to render a custom tool.\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether the tool is selected.\n \n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether the tool is disabled.\n \n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "CommandName", - "TypeName": "System.String", - "Documentation": "\n Specifies the name of the command. It is available as when\n is raised.\n ", - "Metadata": { - "Common.PropertyName": "CommandName" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorCustomTool", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1181246574, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n The template of the tool. Use to render a custom tool.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenHtmlEditorCustomTool" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorCustomTool.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 449415984, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n The template of the tool. Use to render a custom tool.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenHtmlEditorCustomTool" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorCustomTool.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -665453501, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontName", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which changes the font of the selected text.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorFontName />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorFontName" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Sets the child content.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Font name\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontName" - } - }, - { - "HashCode": -1799873919, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontName", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which changes the font of the selected text.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorFontName />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorFontName" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Sets the child content.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Font name\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontName", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1800190392, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontName.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Sets the child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenHtmlEditorFontName" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontName.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1243335749, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontName.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Sets the child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenHtmlEditorFontName" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontName.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 367449409, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontNameItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Adds a custom font to a .\n \n \n \n <RadzenHtmlEditorFontName>\n <RadzenHtmlEditorFontNameItem Text=\"Times New Roman\" Value='\"Times New Roman\"' />\n </RadzenHtmlEditorFontName>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorFontNameItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n The name of the font e.g. \"Times New Roman\".\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n The CSS value of the font. Use quotes if it contains spaces.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontNameItem" - } - }, - { - "HashCode": 2075095869, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontNameItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Adds a custom font to a .\n \n \n \n <RadzenHtmlEditorFontName>\n <RadzenHtmlEditorFontNameItem Text=\"Times New Roman\" Value='\"Times New Roman\"' />\n </RadzenHtmlEditorFontName>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorFontNameItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n The name of the font e.g. \"Times New Roman\".\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n The CSS value of the font. Use quotes if it contains spaces.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontNameItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 671005336, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontSize", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which changes the font size of the selected text.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorFontSize />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorFontSize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Font size\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontSize" - } - }, - { - "HashCode": -1816536780, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFontSize", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which changes the font size of the selected text.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorFontSize />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorFontSize" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Font size\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFontSize", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -829578520, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFormatBlock", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which changes the style of a the selected text by making it a heading or paragraph.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorFormatBlock />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorFormatBlock" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Text style\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFormatBlock" - } - }, - { - "HashCode": -2082788458, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorFormatBlock", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which changes the style of a the selected text by making it a heading or paragraph.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorFormatBlock />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorFormatBlock" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Text style\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorFormatBlock", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -812473589, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorImage", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which inserts and uploads images in a .\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorImage />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorImage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Insert image\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to select a file for upload. Set to \"Select image file to upload\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "SelectText" - } - }, - { - "Kind": "Components.Component", - "Name": "UploadChooseText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the upload label. Set to \"Browse\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "UploadChooseText" - } - }, - { - "Kind": "Components.Component", - "Name": "UrlText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to enter a web address. Set to \"or enter a web address\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "UrlText" - } - }, - { - "Kind": "Components.Component", - "Name": "AltText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to enter a alternative text (alt) for the image. Set to \"Alternative text\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AltText" - } - }, - { - "Kind": "Components.Component", - "Name": "OkText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which inserts the image. Set to \"OK\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "OkText" - } - }, - { - "Kind": "Components.Component", - "Name": "CancelText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which cancels image insertion and closes the dialog. Set to \"Cancel\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "CancelText" - } - }, - { - "Kind": "Components.Component", - "Name": "WidthText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of label for image width. Set to \"Image Width\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "WidthText" - } - }, - { - "Kind": "Components.Component", - "Name": "HeightText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of label for image height. Set to \"Image Height\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "HeightText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorImage" - } - }, - { - "HashCode": 1990844074, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorImage", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which inserts and uploads images in a .\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorImage />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorImage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Insert image\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to select a file for upload. Set to \"Select image file to upload\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "SelectText" - } - }, - { - "Kind": "Components.Component", - "Name": "UploadChooseText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the upload label. Set to \"Browse\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "UploadChooseText" - } - }, - { - "Kind": "Components.Component", - "Name": "UrlText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to enter a web address. Set to \"or enter a web address\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "UrlText" - } - }, - { - "Kind": "Components.Component", - "Name": "AltText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to enter a alternative text (alt) for the image. Set to \"Alternative text\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AltText" - } - }, - { - "Kind": "Components.Component", - "Name": "OkText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which inserts the image. Set to \"OK\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "OkText" - } - }, - { - "Kind": "Components.Component", - "Name": "CancelText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which cancels image insertion and closes the dialog. Set to \"Cancel\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "CancelText" - } - }, - { - "Kind": "Components.Component", - "Name": "WidthText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of label for image width. Set to \"Image Width\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "WidthText" - } - }, - { - "Kind": "Components.Component", - "Name": "HeightText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of label for image height. Set to \"Image Height\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "HeightText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorImage", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -378411288, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorIndent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which indents the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorIndent />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorIndent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Indent\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorIndent" - } - }, - { - "HashCode": 211063280, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorIndent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which indents the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorIndent />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorIndent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Indent\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorIndent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1291084542, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorItalic", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which makes the selection italic.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorItalic />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorItalic" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Italic\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorItalic" - } - }, - { - "HashCode": -1864639914, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorItalic", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which makes the selection italic.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorItalic />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorItalic" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Italic\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorItalic", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 734522870, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorJustify", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which justifies the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorJustify />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorJustify" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Justify\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorJustify" - } - }, - { - "HashCode": -959910584, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorJustify", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which justifies the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorJustify />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorJustify" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Justify\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorJustify", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 304592016, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorLink", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which creates links from the selection of a .\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorLink />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Insert link\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "UrlText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to enter a web address. Set to \"Web address\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "UrlText" - } - }, - { - "Kind": "Components.Component", - "Name": "OpenInNewWindowText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the checkbox that opens the link in new window. Set to \"Open in new window\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "OpenInNewWindowText" - } - }, - { - "Kind": "Components.Component", - "Name": "LinkText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to change the text of the link. Set to \"Text\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "LinkText" - } - }, - { - "Kind": "Components.Component", - "Name": "OkText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which inserts the image. Set to \"OK\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "OkText" - } - }, - { - "Kind": "Components.Component", - "Name": "CancelText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which cancels image insertion and closes the dialog. Set to \"Cancel\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "CancelText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorLink" - } - }, - { - "HashCode": 1064224424, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorLink", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A tool which creates links from the selection of a .\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorLink />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Insert link\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "UrlText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to enter a web address. Set to \"Web address\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "UrlText" - } - }, - { - "Kind": "Components.Component", - "Name": "OpenInNewWindowText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the checkbox that opens the link in new window. Set to \"Open in new window\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "OpenInNewWindowText" - } - }, - { - "Kind": "Components.Component", - "Name": "LinkText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of the label suggesting the user to change the text of the link. Set to \"Text\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "LinkText" - } - }, - { - "Kind": "Components.Component", - "Name": "OkText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which inserts the image. Set to \"OK\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "OkText" - } - }, - { - "Kind": "Components.Component", - "Name": "CancelText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text of button which cancels image insertion and closes the dialog. Set to \"Cancel\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "CancelText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorLink", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -397288824, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorOrderedList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which inserts an ordered list (ol).\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorOrderedList />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorOrderedList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Ordered list\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorOrderedList" - } - }, - { - "HashCode": -1357942531, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorOrderedList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which inserts an ordered list (ol).\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorOrderedList />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorOrderedList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Ordered list\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorOrderedList", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1458609887, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorOutdent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which outdents the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorOutdent />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorOutdent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Outdent\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorOutdent" - } - }, - { - "HashCode": 9314797, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorOutdent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which outdents the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorOutdent />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorOutdent" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Outdent\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorOutdent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1201237417, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorRedo", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which repeats the last undone command.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorRedo />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorRedo" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Redo\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorRedo" - } - }, - { - "HashCode": -747700817, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorRedo", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which repeats the last undone command.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorRedo />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorRedo" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Redo\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorRedo", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -3643985, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorRemoveFormat", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which removes the styling of the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorRemoveFormat />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorRemoveFormat" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Remove styling\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorRemoveFormat" - } - }, - { - "HashCode": 2023602388, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorRemoveFormat", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which removes the styling of the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorRemoveFormat />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorRemoveFormat" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Remove styling\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorRemoveFormat", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -804559878, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorSeparator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor visual separator.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorLink />\n <RadzenHtmlEditorSeparator />\n <RadzenHtmlEditorJustify />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorSeparator" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorSeparator" - } - }, - { - "HashCode": -1609712452, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorSeparator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor visual separator.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorLink />\n <RadzenHtmlEditorSeparator />\n <RadzenHtmlEditorJustify />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorSeparator" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorSeparator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 705271190, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorStrikeThrough", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which applies \"strike through\" styling to the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorStrikeThrough />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorStrikeThrough" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Strikethrough\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorStrikeThrough" - } - }, - { - "HashCode": 415079314, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorStrikeThrough", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which applies \"strike through\" styling to the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorStrikeThrough />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorStrikeThrough" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Strikethrough\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorStrikeThrough", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2021278283, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorSubscript", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which formats the selection as subscript.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorSubscript />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorSubscript" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Subscript\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorSubscript" - } - }, - { - "HashCode": 372346472, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorSubscript", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which formats the selection as subscript.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorSubscript />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorSubscript" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Subscript\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorSubscript", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1498135405, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorSuperscript", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which formats the selection as superscript.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorSuperscript />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorSuperscript" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Superscript\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorSuperscript" - } - }, - { - "HashCode": -882567545, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorSuperscript", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which formats the selection as superscript.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorSuperscript />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorSuperscript" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Superscript\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorSuperscript", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 840478, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUnderline", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which underlines the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUnderline />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorUnderline" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Underline\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUnderline" - } - }, - { - "HashCode": -201880773, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUnderline", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which underlines the selection.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUnderline />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorUnderline" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Underline\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUnderline", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -846043883, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUndo", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which reverts the last edit operation.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUndo />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorUndo" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Undo\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUndo" - } - }, - { - "HashCode": -48757859, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUndo", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which reverts the last edit operation.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUndo />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorUndo" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Undo\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUndo", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 122381622, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUnlink", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which removes a link.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUnlink />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorUnlink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Remove link\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUnlink" - } - }, - { - "HashCode": -1313556645, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUnlink", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which removes a link.\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUnlink />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorUnlink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Remove link\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUnlink", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -854380296, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUnorderedList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which inserts a bullet list (ul).\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUnorderedList />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditorUnorderedList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Bullet list\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUnorderedList" - } - }, - { - "HashCode": 1344636728, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenHtmlEditorUnorderedList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A RadzenHtmlEditor tool which inserts a bullet list (ul).\n \n \n \n <RadzenHtmlEditor @bind-Value=@html>\n <RadzenHtmlEditorUnorderedList />\n </RadzenHtmlEdito>\n @code {\n string html = \"@lt;strong>Hello</strong> world!\"; \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditorUnorderedList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the title (tooltip) displayed when the user hovers the tool. Set to \"Bullet list\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditorUnorderedList", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1822559787, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenIcon", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenIcon component. Displays icon from Material Icons font.\n \n \n \n <RadzenIcon Icon=\"3d_rotation\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenIcon" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "IconStyle", - "TypeName": "Radzen.IconStyle?", - "Documentation": "\n \n Specifies the display style of the icon.\n \n ", - "Metadata": { - "Common.PropertyName": "IconStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenIcon" - } - }, - { - "HashCode": 1352532607, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenIcon", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenIcon component. Displays icon from Material Icons font.\n \n \n \n <RadzenIcon Icon=\"3d_rotation\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenIcon" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "IconStyle", - "TypeName": "Radzen.IconStyle?", - "Documentation": "\n \n Specifies the display style of the icon.\n \n ", - "Metadata": { - "Common.PropertyName": "IconStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenIcon", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2023577716, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenImage", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenImage component.\n \n \n \n <RadzenImage Path=\"someimage.png\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenImage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenImage" - } - }, - { - "HashCode": 839149082, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenImage", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenImage component.\n \n \n \n <RadzenImage Path=\"someimage.png\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenImage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenImage", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1269934479, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenImage.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenImage" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenImage.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1997657077, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenImage.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenImage" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenImage.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1143482507, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLabel", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLabel component.\n \n \n \n <RadzenLabel Text=\"CompanyName\" Component=\"CompanyName\" />\n <RadzenTextBox Name=\"CompanyName\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenLabel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the component name for the label.\n \n The component name for the label.\n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLabel" - } - }, - { - "HashCode": -1882083038, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLabel", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLabel component.\n \n \n \n <RadzenLabel Text=\"CompanyName\" Component=\"CompanyName\" />\n <RadzenTextBox Name=\"CompanyName\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenLabel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the component name for the label.\n \n The component name for the label.\n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLabel", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1121600511, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLayout", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLayout component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenLayout" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLayout" - } - }, - { - "HashCode": -1345057750, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLayout", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLayout component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenLayout" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLayout", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -544551646, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenLayout.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenLayout" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenLayout.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1367157801, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenLayout.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenLayout" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenLayout.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1391557645, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLegend", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class RadzenLegend.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenLegend" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Position", - "TypeName": "Radzen.Blazor.LegendPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the position.\n \n The position.\n ", - "Metadata": { - "Common.PropertyName": "Position" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLegend" - } - }, - { - "HashCode": 1174832341, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLegend", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class RadzenLegend.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenLegend" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Position", - "TypeName": "Radzen.Blazor.LegendPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the position.\n \n The position.\n ", - "Metadata": { - "Common.PropertyName": "Position" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLegend", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1467885804, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLengthValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if then component value length is within a specified range.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"FirstName\" @bind-Value=@model.FirstName />\n <RadzenLengthValidator Component=\"FirstName\" Min=\"3\" Text=\"First name should be at least 3 characters\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string FirstName { get; set; }\n }\n Model model = new Model(); \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenLengthValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Invalid length\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Int32?", - "Documentation": "\n \n Specifies the minimum accepted length. The component value length should be greater than the minimum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Int32?", - "Documentation": "\n \n Specifies the maximum accepted length. The component value length should be less than the maximum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLengthValidator" - } - }, - { - "HashCode": -1138715342, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLengthValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if then component value length is within a specified range.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"FirstName\" @bind-Value=@model.FirstName />\n <RadzenLengthValidator Component=\"FirstName\" Min=\"3\" Text=\"First name should be at least 3 characters\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string FirstName { get; set; }\n }\n Model model = new Model(); \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenLengthValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Invalid length\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Int32?", - "Documentation": "\n \n Specifies the minimum accepted length. The component value length should be greater than the minimum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Int32?", - "Documentation": "\n \n Specifies the maximum accepted length. The component value length should be less than the maximum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLengthValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -797961535, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLineSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders line series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenLineSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenLineSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the line.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Specifies the pixel width of the line. Set to 2 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the line type.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Smooth", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to render a smooth line. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Smooth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLineSeries", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1766737519, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLineSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders line series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenLineSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenLineSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the line.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Specifies the pixel width of the line. Set to 2 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the line type.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Smooth", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to render a smooth line. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Smooth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLineSeries", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1307905770, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenLineSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenLineSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenLineSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 69123008, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenLineSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenLineSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenLineSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1851730815, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenLineSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "RadzenLineSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenLineSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -89667620, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenLineSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "Radzen.Blazor.RadzenLineSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenLineSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 156459181, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLink", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLink component.\n \n \n \n <RadzenLink Path=\"https://www.radzen.com\" Text=\"Go to url\" Target=\"_blank\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLink" - } - }, - { - "HashCode": 1830010447, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLink", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLink component.\n \n \n \n <RadzenLink Path=\"https://www.radzen.com\" Text=\"Go to url\" Target=\"_blank\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLink", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2080943869, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenListBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenListBox component.\n \n The type of the value.\n \n \n <RadzenListBox @bind-Value=@customerID TValue=\"string\" Data=@customers TextProperty=\"CompanyName\" ValueProperty=\"CustomerID\" Change=@(args => Console.WriteLine($\"Selected CustomerID: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenListBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenListBox component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed. Set to false by default.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenListBox", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1023004052, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenListBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenListBox component.\n \n The type of the value.\n \n \n <RadzenListBox @bind-Value=@customerID TValue=\"string\" Data=@customers TextProperty=\"CompanyName\" ValueProperty=\"CustomerID\" Change=@(args => Console.WriteLine($\"Selected CustomerID: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenListBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenListBox component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the total number of items in the data source.\n \n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowVirtualization", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies wether virtualization is enabled. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowVirtualization" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the default page size. Set to 5 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether filtering is allowed. Set to false by default.\n \n true if filtering is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowClear", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether the user can clear the value. Set to false by default.\n \n true if clearing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowClear" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItemChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the selected item changed.\n \n The selected item changed.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItemChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the filter delay.\n \n The filter delay.\n ", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedItem", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the selected item.\n \n The selected item.\n ", - "Metadata": { - "Common.PropertyName": "SelectedItem" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter case sensitivity.\n \n The filter case sensitivity.\n ", - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.StringFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenListBox", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -123007307, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenListBox.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenListBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenListBox.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1472544650, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenListBox.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenListBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenListBox.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1865385048, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLogin", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLogin component. Must be placed in RadzenTemplateForm.\n \n \n \n <RadzenTemplateForm Data=@(\"Login\")>\n <RadzenLogin AllowRegister=\"true\" AllowResetPassword=\"true\"\n Login=@OnLogin\n ResetPassword=@OnResetPassword\n Register=@OnRegister />\n </RadzenTemplateForm>\n @code {\n void OnLogin(LoginArgs args, string name)\n {\n Console.WriteLine($\"{name} -> Username: {args.Username} and password: {args.Password}\");\n }\n \n void OnRegister(string name)\n {\n Console.WriteLine($\"{name} -> Register\");\n }\n \n void OnResetPassword(string value, string name)\n {\n Console.WriteLine($\"{name} -> ResetPassword for user: {value}\");\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenLogin" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether automatic complete of inputs is enabled.\n \n true if automatic complete of inputs is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "Username", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the username.\n \n The username.\n ", - "Metadata": { - "Common.PropertyName": "Username" - } - }, - { - "Kind": "Components.Component", - "Name": "Password", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the password.\n \n The password.\n ", - "Metadata": { - "Common.PropertyName": "Password" - } - }, - { - "Kind": "Components.Component", - "Name": "Login", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the login callback.\n \n The login callback.\n ", - "Metadata": { - "Common.PropertyName": "Login", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Register", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the register callback.\n \n The register callback.\n ", - "Metadata": { - "Common.PropertyName": "Register", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ResetPassword", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the reset password callback.\n \n The reset password callback.\n ", - "Metadata": { - "Common.PropertyName": "ResetPassword", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowRegister", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether register is allowed.\n \n true if register is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowRegister" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowResetPassword", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether reset password is allowed.\n \n true if reset password is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowResetPassword" - } - }, - { - "Kind": "Components.Component", - "Name": "LoginText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the login text.\n \n The login text.\n ", - "Metadata": { - "Common.PropertyName": "LoginText" - } - }, - { - "Kind": "Components.Component", - "Name": "RegisterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the register text.\n \n The register text.\n ", - "Metadata": { - "Common.PropertyName": "RegisterText" - } - }, - { - "Kind": "Components.Component", - "Name": "RegisterMessageText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the register message text.\n \n The register message text.\n ", - "Metadata": { - "Common.PropertyName": "RegisterMessageText" - } - }, - { - "Kind": "Components.Component", - "Name": "ResetPasswordText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the reset password text.\n \n The reset password text.\n ", - "Metadata": { - "Common.PropertyName": "ResetPasswordText" - } - }, - { - "Kind": "Components.Component", - "Name": "UserText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the user text.\n \n The user text.\n ", - "Metadata": { - "Common.PropertyName": "UserText" - } - }, - { - "Kind": "Components.Component", - "Name": "UserRequired", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the user required text.\n \n The user required text.\n ", - "Metadata": { - "Common.PropertyName": "UserRequired" - } - }, - { - "Kind": "Components.Component", - "Name": "PasswordText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the password text.\n \n The password text.\n ", - "Metadata": { - "Common.PropertyName": "PasswordText" - } - }, - { - "Kind": "Components.Component", - "Name": "PasswordRequired", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the password required.\n \n The password required.\n ", - "Metadata": { - "Common.PropertyName": "PasswordRequired" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLogin" - } - }, - { - "HashCode": -241552388, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenLogin", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenLogin component. Must be placed in RadzenTemplateForm.\n \n \n \n <RadzenTemplateForm Data=@(\"Login\")>\n <RadzenLogin AllowRegister=\"true\" AllowResetPassword=\"true\"\n Login=@OnLogin\n ResetPassword=@OnResetPassword\n Register=@OnRegister />\n </RadzenTemplateForm>\n @code {\n void OnLogin(LoginArgs args, string name)\n {\n Console.WriteLine($\"{name} -> Username: {args.Username} and password: {args.Password}\");\n }\n \n void OnRegister(string name)\n {\n Console.WriteLine($\"{name} -> Register\");\n }\n \n void OnResetPassword(string value, string name)\n {\n Console.WriteLine($\"{name} -> ResetPassword for user: {value}\");\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenLogin" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether automatic complete of inputs is enabled.\n \n true if automatic complete of inputs is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "Username", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the username.\n \n The username.\n ", - "Metadata": { - "Common.PropertyName": "Username" - } - }, - { - "Kind": "Components.Component", - "Name": "Password", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the password.\n \n The password.\n ", - "Metadata": { - "Common.PropertyName": "Password" - } - }, - { - "Kind": "Components.Component", - "Name": "Login", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the login callback.\n \n The login callback.\n ", - "Metadata": { - "Common.PropertyName": "Login", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Register", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the register callback.\n \n The register callback.\n ", - "Metadata": { - "Common.PropertyName": "Register", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ResetPassword", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the reset password callback.\n \n The reset password callback.\n ", - "Metadata": { - "Common.PropertyName": "ResetPassword", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowRegister", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether register is allowed.\n \n true if register is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowRegister" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowResetPassword", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether reset password is allowed.\n \n true if reset password is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowResetPassword" - } - }, - { - "Kind": "Components.Component", - "Name": "LoginText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the login text.\n \n The login text.\n ", - "Metadata": { - "Common.PropertyName": "LoginText" - } - }, - { - "Kind": "Components.Component", - "Name": "RegisterText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the register text.\n \n The register text.\n ", - "Metadata": { - "Common.PropertyName": "RegisterText" - } - }, - { - "Kind": "Components.Component", - "Name": "RegisterMessageText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the register message text.\n \n The register message text.\n ", - "Metadata": { - "Common.PropertyName": "RegisterMessageText" - } - }, - { - "Kind": "Components.Component", - "Name": "ResetPasswordText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the reset password text.\n \n The reset password text.\n ", - "Metadata": { - "Common.PropertyName": "ResetPasswordText" - } - }, - { - "Kind": "Components.Component", - "Name": "UserText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the user text.\n \n The user text.\n ", - "Metadata": { - "Common.PropertyName": "UserText" - } - }, - { - "Kind": "Components.Component", - "Name": "UserRequired", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the user required text.\n \n The user required text.\n ", - "Metadata": { - "Common.PropertyName": "UserRequired" - } - }, - { - "Kind": "Components.Component", - "Name": "PasswordText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the password text.\n \n The password text.\n ", - "Metadata": { - "Common.PropertyName": "PasswordText" - } - }, - { - "Kind": "Components.Component", - "Name": "PasswordRequired", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the password required.\n \n The password required.\n ", - "Metadata": { - "Common.PropertyName": "PasswordRequired" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenLogin", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 224725228, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMarkers", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class RadzenMarkers.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenMarkers" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerType", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the marker.\n \n The type of the marker.\n ", - "Metadata": { - "Common.PropertyName": "MarkerType" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMarkers" - } - }, - { - "HashCode": 1091424394, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMarkers", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Class RadzenMarkers.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenMarkers" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerType", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the marker.\n \n The type of the marker.\n ", - "Metadata": { - "Common.PropertyName": "MarkerType" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMarkers", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 540045565, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMask", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMask component.\n \n \n \n <RadzenMask Mask=\"(***) ***-****\" Pattern=\"[^0-9]\" Placeholder=\"(000) 000-0000\" @bind-Value=@phone Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenMask" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input automatic complete is enabled.\n \n true if input automatic complete is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxLength", - "TypeName": "System.Int64?", - "Documentation": "\n \n Gets or sets the maximum length.\n \n The maximum length.\n ", - "Metadata": { - "Common.PropertyName": "MaxLength" - } - }, - { - "Kind": "Components.Component", - "Name": "Mask", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the mask.\n \n The mask.\n ", - "Metadata": { - "Common.PropertyName": "Mask" - } - }, - { - "Kind": "Components.Component", - "Name": "Pattern", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pattern that will be used to replace all invalid characters with regular expression.\n \n The invalid characters pattern.\n ", - "Metadata": { - "Common.PropertyName": "Pattern" - } - }, - { - "Kind": "Components.Component", - "Name": "CharacterPattern", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pattern that will be used to match all valid characters with regular expression. If both Pattern and CharacterPattern are set CharacterPattern will be used.\n \n The valid characters pattern.\n ", - "Metadata": { - "Common.PropertyName": "CharacterPattern" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMask" - } - }, - { - "HashCode": 914598269, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMask", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMask component.\n \n \n \n <RadzenMask Mask=\"(***) ***-****\" Pattern=\"[^0-9]\" Placeholder=\"(000) 000-0000\" @bind-Value=@phone Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenMask" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input automatic complete is enabled.\n \n true if input automatic complete is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxLength", - "TypeName": "System.Int64?", - "Documentation": "\n \n Gets or sets the maximum length.\n \n The maximum length.\n ", - "Metadata": { - "Common.PropertyName": "MaxLength" - } - }, - { - "Kind": "Components.Component", - "Name": "Mask", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the mask.\n \n The mask.\n ", - "Metadata": { - "Common.PropertyName": "Mask" - } - }, - { - "Kind": "Components.Component", - "Name": "Pattern", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pattern that will be used to replace all invalid characters with regular expression.\n \n The invalid characters pattern.\n ", - "Metadata": { - "Common.PropertyName": "Pattern" - } - }, - { - "Kind": "Components.Component", - "Name": "CharacterPattern", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pattern that will be used to match all valid characters with regular expression. If both Pattern and CharacterPattern are set CharacterPattern will be used.\n \n The valid characters pattern.\n ", - "Metadata": { - "Common.PropertyName": "CharacterPattern" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMask", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1587777461, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMediaQuery", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMediaQuery fires its event when the media query specified via matches or not.\n \n \n < RadzenMediaQuery Query=\"(max-width: 768px)\" Change=@OnChange />\n @code {\n void OnChange(bool matches)\n {\n // matches is true if the media query applies; otherwise false.\n }\n }\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenMediaQuery" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Query", - "TypeName": "System.String", - "Documentation": "\n \n The CSS media query this component will listen for.\n \n ", - "Metadata": { - "Common.PropertyName": "Query" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the status of the media query changes - to either match or not.\n \n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMediaQuery" - } - }, - { - "HashCode": -1336024804, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMediaQuery", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMediaQuery fires its event when the media query specified via matches or not.\n \n \n < RadzenMediaQuery Query=\"(max-width: 768px)\" Change=@OnChange />\n @code {\n void OnChange(bool matches)\n {\n // matches is true if the media query applies; otherwise false.\n }\n }\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenMediaQuery" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Query", - "TypeName": "System.String", - "Documentation": "\n \n The CSS media query this component will listen for.\n \n ", - "Metadata": { - "Common.PropertyName": "Query" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the status of the media query changes - to either match or not.\n \n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMediaQuery", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1702828657, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMenu component.\n \n \n \n <RadzenMenu>\n <RadzenMenuItem Text=\"Data\">\n <RadzenMenuItem Text=\"Orders\" Path=\"orders\" />\n <RadzenMenuItem Text=\"Employees\" Path=\"employees\" />\n </RadzenMenuItemItem>\n </RadzenMenu>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is responsive.\n \n true if responsive; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMenu" - } - }, - { - "HashCode": 1847434716, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMenu component.\n \n \n \n <RadzenMenu>\n <RadzenMenuItem Text=\"Data\">\n <RadzenMenuItem Text=\"Orders\" Path=\"orders\" />\n <RadzenMenuItem Text=\"Employees\" Path=\"employees\" />\n </RadzenMenuItemItem>\n </RadzenMenu>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is responsive.\n \n true if responsive; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMenu", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1396848761, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenMenu.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenMenu.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -521345291, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenMenu.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenMenu.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 832465583, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMenuItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenMenuItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMenuItem" - } - }, - { - "HashCode": 838487681, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenMenuItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenMenuItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMenuItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -974148950, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenMenuItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenMenuItem.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 493030612, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenMenuItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenMenuItem.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1385462576, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenMenuItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenMenuItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 943844127, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenMenuItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenMenuItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1436757392, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMonthView", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays the appointments in a month day in \n \n \n \n <RadzenScheduler Data=\"@appointments\">\n <RadzenMonthView />\n </RadzenScheduler>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenMonthView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxAppointmentsInSlot", - "TypeName": "System.Int32?", - "Documentation": "\n \n Specifies the maximum appointnments to render in a slot.\n \n The maximum appointments in slot.\n ", - "Metadata": { - "Common.PropertyName": "MaxAppointmentsInSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "MoreText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text displayed when there are more appointments in a slot than .\n \n The more text. Set to \"+ {0} more\" by default.\n ", - "Metadata": { - "Common.PropertyName": "MoreText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMonthView" - } - }, - { - "HashCode": 103936290, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenMonthView", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays the appointments in a month day in \n \n \n \n <RadzenScheduler Data=\"@appointments\">\n <RadzenMonthView />\n </RadzenScheduler>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenMonthView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxAppointmentsInSlot", - "TypeName": "System.Int32?", - "Documentation": "\n \n Specifies the maximum appointnments to render in a slot.\n \n The maximum appointments in slot.\n ", - "Metadata": { - "Common.PropertyName": "MaxAppointmentsInSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "MoreText", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the text displayed when there are more appointments in a slot than .\n \n The more text. Set to \"+ {0} more\" by default.\n ", - "Metadata": { - "Common.PropertyName": "MoreText" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenMonthView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -164074802, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNumeric", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenNumeric component.\n \n The type of the t value.\n \n \n <RadzenNumeric TValue=\"int\" Min=\"1\" Max=\"10\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenNumeric" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenNumeric component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Format", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format.\n \n The format.\n ", - "Metadata": { - "Common.PropertyName": "Format" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input automatic complete is enabled.\n \n true if input automatic complete is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowUpDown", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether up down buttons are shown.\n \n true if up down buttons are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowUpDown" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Decimal?", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Decimal?", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNumeric", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 70106934, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNumeric", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenNumeric component.\n \n The type of the t value.\n \n \n <RadzenNumeric TValue=\"int\" Min=\"1\" Max=\"10\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenNumeric" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenNumeric component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Format", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format.\n \n The format.\n ", - "Metadata": { - "Common.PropertyName": "Format" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input automatic complete is enabled.\n \n true if input automatic complete is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowUpDown", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether up down buttons are shown.\n \n true if up down buttons are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowUpDown" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Decimal?", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Decimal?", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNumeric", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -953323352, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNumericRangeValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if a component value is within a specified range.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenNumeric style=\"display: block\" Name=\"Quantity\" @bind-Value=@model.Quantity />\n <RadzenNumericRangeValidator Component=\"Quantity\" Min=\"1\" Max=\"10\" Text=\"Quantity should be between 1 and 10\" Style=\"position: absolute\" /> \n </RadzenTemplateForm>\n @code {\n class Model\n {\n public decimal Quantity { get; set; }\n }\n Model model = new Model(); \n }\n \n >\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenNumericRangeValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Not in the valid range\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "dynamic", - "Documentation": "\n \n Specifies the minimum value. The component value should be greater than the minimum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "dynamic", - "Documentation": "\n \n Specifies the maximum value. The component value should be less than the maximum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNumericRangeValidator" - } - }, - { - "HashCode": -2122079776, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNumericRangeValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if a component value is within a specified range.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenNumeric style=\"display: block\" Name=\"Quantity\" @bind-Value=@model.Quantity />\n <RadzenNumericRangeValidator Component=\"Quantity\" Min=\"1\" Max=\"10\" Text=\"Quantity should be between 1 and 10\" Style=\"position: absolute\" /> \n </RadzenTemplateForm>\n @code {\n class Model\n {\n public decimal Quantity { get; set; }\n }\n Model model = new Model(); \n }\n \n >\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenNumericRangeValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Not in the valid range\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "dynamic", - "Documentation": "\n \n Specifies the minimum value. The component value should be greater than the minimum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "dynamic", - "Documentation": "\n \n Specifies the maximum value. The component value should be less than the maximum in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNumericRangeValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1916252082, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPager", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPager component.\n \n \n \n <RadzenPager Count=\"100\" PageSize=\"10\" PageNumbersCount=\"5\" PageChanged=@(args => Console.WriteLine($\"Skip: {args.Skip}, Top: {args.Top}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPager" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "HorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "HorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page size.\n \n The page size.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page size changed callback.\n \n The page size changed callback.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the total items count.\n \n The total items count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PageChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page changed callback.\n \n The page changed callback.\n ", - "Metadata": { - "Common.PropertyName": "PageChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPager" - } - }, - { - "HashCode": 1159089716, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPager", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPager component.\n \n \n \n <RadzenPager Count=\"100\" PageSize=\"10\" PageNumbersCount=\"5\" PageChanged=@(args => Console.WriteLine($\"Skip: {args.Skip}, Top: {args.Top}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPager" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "HorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "HorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page size.\n \n The page size.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page size changed callback.\n \n The page size changed callback.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the total items count.\n \n The total items count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "AlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PageChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page changed callback.\n \n The page changed callback.\n ", - "Metadata": { - "Common.PropertyName": "PageChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPager", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -953083934, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPanel", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPanel component.\n \n \n \n <RadzenPanel AllowCollapse=\"true\"\">\n <HeaderTemplate>\n Header\n </HeaderTemplate>\n <ChildContent>\n Content\n </ChildContent>\n <SummaryTemplate>\n Summary\n </SummaryTemplate>\n </RadzenPanel>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPanel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AllowCollapse", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether collapsing is allowed. Set to false by default.\n \n true if collapsing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCollapse" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsed", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsed.\n \n true if collapsed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsed" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "SummaryTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "Metadata": { - "Common.PropertyName": "SummaryTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expand callback.\n \n The expand callback.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the collapse callback.\n \n The collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPanel" - } - }, - { - "HashCode": 1360270467, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPanel", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPanel component.\n \n \n \n <RadzenPanel AllowCollapse=\"true\"\">\n <HeaderTemplate>\n Header\n </HeaderTemplate>\n <ChildContent>\n Content\n </ChildContent>\n <SummaryTemplate>\n Summary\n </SummaryTemplate>\n </RadzenPanel>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPanel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AllowCollapse", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether collapsing is allowed. Set to false by default.\n \n true if collapsing is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCollapse" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsed", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsed.\n \n true if collapsed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsed" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "SummaryTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "Metadata": { - "Common.PropertyName": "SummaryTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expand callback.\n \n The expand callback.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the collapse callback.\n \n The collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPanel", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 777866820, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 2032422141, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "Radzen.Blazor.RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1563156288, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.SummaryTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "SummaryTemplate", - "ParentTag": "RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.SummaryTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1666827741, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.SummaryTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the summary template.\n \n The summary template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "SummaryTemplate", - "ParentTag": "Radzen.Blazor.RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.SummaryTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1821242261, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 39549287, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "Radzen.Blazor.RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1774058495, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1911023815, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanel.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenPanel" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanel.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1392863094, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPanelMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPanelMenu component.\n \n \n \n <RadzenPanelMenu>\n <RadzenPanelMenuItem Text=\"Data\">\n <RadzenPanelMenuItem Text=\"Orders\" Path=\"orders\" />\n <RadzenPanelMenuItem Text=\"Employees\" Path=\"employees\" />\n </RadzenPanelMenuItemItem>\n </RadzenPanelMenu>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPanelMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Match", - "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", - "IsEnum": true, - "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", - "Metadata": { - "Common.PropertyName": "Match" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenu" - } - }, - { - "HashCode": 518987450, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPanelMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPanelMenu component.\n \n \n \n <RadzenPanelMenu>\n <RadzenPanelMenuItem Text=\"Data\">\n <RadzenPanelMenuItem Text=\"Orders\" Path=\"orders\" />\n <RadzenPanelMenuItem Text=\"Employees\" Path=\"employees\" />\n </RadzenPanelMenuItemItem>\n </RadzenPanelMenu>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPanelMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Match", - "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", - "IsEnum": true, - "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", - "Metadata": { - "Common.PropertyName": "Match" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenu", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1156492705, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanelMenu.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenPanelMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenu.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 945769926, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanelMenu.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenPanelMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenu.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1752091083, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPanelMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPanelMenuItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPanelMenuItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandedChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expanded changed callback.\n \n The expanded changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ExpandedChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is expanded.\n \n true if expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem" - } - }, - { - "HashCode": -455948332, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPanelMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPanelMenuItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPanelMenuItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandedChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expanded changed callback.\n \n The expanded changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ExpandedChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is expanded.\n \n true if expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1620534396, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanelMenuItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenPanelMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 529732883, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanelMenuItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenPanelMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -404272830, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanelMenuItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenPanelMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 403745797, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPanelMenuItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenPanelMenuItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1491980583, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPassword", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPassword component.\n \n \n \n <RadzenPassword Placeholder=\"Enter password...\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPassword" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input automatic complete is allowed.\n \n true if input automatic complete is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPassword" - } - }, - { - "HashCode": -738004459, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPassword", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenPassword component.\n \n \n \n <RadzenPassword Placeholder=\"Enter password...\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPassword" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether input automatic complete is allowed.\n \n true if input automatic complete is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPassword", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1418078842, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPieSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders pie series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPieSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenPieSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the x coordinate of the pie center. Not set by default which centers pie horizontally.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the y coordinate of the pie center. Not set by default which centers pie vertically.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the radius of the pie. Not set by default - the pie takes as much size of the chart as possible.\n \n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The fill colors of the pie segments. Used as the background of the segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The stroke colors of the pie segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n The stroke width of the segments in pixels. By default set to 0.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPieSeries", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1053541738, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenPieSeries", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Renders pie series in .\n \n The type of the series data item.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPieSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenPieSeries component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the x coordinate of the pie center. Not set by default which centers pie horizontally.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the y coordinate of the pie center. Not set by default which centers pie vertically.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double?", - "Documentation": "\n \n Specifies the radius of the pie. Not set by default - the pie takes as much size of the chart as possible.\n \n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Fills", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The fill colors of the pie segments. Used as the background of the segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Fills" - } - }, - { - "Kind": "Components.Component", - "Name": "Strokes", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n The stroke colors of the pie segments.\n \n ", - "Metadata": { - "Common.PropertyName": "Strokes" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n The stroke width of the segments in pixels. By default set to 0.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TooltipTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "Metadata": { - "Common.PropertyName": "TooltipTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CategoryProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the X axis (a.k.a. category axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "CategoryProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n Invisible series do not appear in the legend and cannot be shown by the user.\n Use the Visible property to programatically show or hide a series.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Hidden", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is hidden.\n Hidden series are initially invisible and the user can show them by clicking on their label in the legend.\n Use the Hidden property to hide certain series from your users but still allow them to see them.\n \n true if hidden; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Hidden" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n The name of the property of that provides the Y axis (a.k.a. value axis) values.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "RenderingOrder", - "TypeName": "System.Int32", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "RenderingOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of the series. The data is enumerated and its items are displayed by the series.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenPieSeries", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -136865230, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPieSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenPieSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPieSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -728806169, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPieSeries.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenPieSeries" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPieSeries.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1959806780, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPieSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "RadzenPieSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPieSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1224883414, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenPieSeries.TooltipTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tooltip template.\n \n The tooltip template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "TooltipTemplate", - "ParentTag": "Radzen.Blazor.RadzenPieSeries" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'TooltipTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenPieSeries.TooltipTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 214034390, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenProfileMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenProfileMenu component.\n \n \n \n <RadzenProfileMenu>\n <RadzenProfileMenuItem Text=\"Data\">\n <RadzenProfileMenuItem Text=\"Orders\" Path=\"orders\" />\n <RadzenProfileMenuItem Text=\"Employees\" Path=\"employees\" />\n </RadzenProfileMenuItemItem>\n </RadzenProfileMenu>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenProfileMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenu" - } - }, - { - "HashCode": 689126225, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenProfileMenu", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenProfileMenu component.\n \n \n \n <RadzenProfileMenu>\n <RadzenProfileMenuItem Text=\"Data\">\n <RadzenProfileMenuItem Text=\"Orders\" Path=\"orders\" />\n <RadzenProfileMenuItem Text=\"Employees\" Path=\"employees\" />\n </RadzenProfileMenuItemItem>\n </RadzenProfileMenu>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenProfileMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenu", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2139951665, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenProfileMenu.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenProfileMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenu.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1968123054, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenProfileMenu.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenProfileMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenu.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -100496030, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenProfileMenu.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenProfileMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenu.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 653885918, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenProfileMenu.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenProfileMenu" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenu.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 161986152, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenProfileMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenProfileMenuItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenProfileMenuItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenuItem" - } - }, - { - "HashCode": 1027927457, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenProfileMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenProfileMenuItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenProfileMenuItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Target", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the target.\n \n The target.\n ", - "Metadata": { - "Common.PropertyName": "Target" - } - }, - { - "Kind": "Components.Component", - "Name": "Path", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the path.\n \n The path.\n ", - "Metadata": { - "Common.PropertyName": "Path" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenProfileMenuItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -304829622, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenProgressBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenProgressBar component.\n \n \n \n <RadzenProgressBar @bind-Value=\"@value\" Max=\"200\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenProgressBar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Mode", - "TypeName": "Radzen.ProgressBarMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the mode.\n \n The mode.\n ", - "Metadata": { - "Common.PropertyName": "Mode" - } - }, - { - "Kind": "Components.Component", - "Name": "Unit", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the unit.\n \n The unit.\n ", - "Metadata": { - "Common.PropertyName": "Unit" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowValue", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether value is shown.\n \n true if value is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowValue" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the value changed callback.\n \n The value changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ProgressBarStyle", - "TypeName": "Radzen.ProgressBarStyle", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the progress bar style.\n \n The progress bar style.\n ", - "Metadata": { - "Common.PropertyName": "ProgressBarStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenProgressBar" - } - }, - { - "HashCode": -67229580, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenProgressBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenProgressBar component.\n \n \n \n <RadzenProgressBar @bind-Value=\"@value\" Max=\"200\" />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenProgressBar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Mode", - "TypeName": "Radzen.ProgressBarMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the mode.\n \n The mode.\n ", - "Metadata": { - "Common.PropertyName": "Mode" - } - }, - { - "Kind": "Components.Component", - "Name": "Unit", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the unit.\n \n The unit.\n ", - "Metadata": { - "Common.PropertyName": "Unit" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowValue", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether value is shown.\n \n true if value is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowValue" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "System.Action", - "Documentation": "\n \n Gets or sets the value changed callback.\n \n The value changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ProgressBarStyle", - "TypeName": "Radzen.ProgressBarStyle", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the progress bar style.\n \n The progress bar style.\n ", - "Metadata": { - "Common.PropertyName": "ProgressBarStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenProgressBar", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -525241680, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGaugeScale", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadialGaugeScale component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRadialGaugeScale" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the tick.\n \n The length of the tick.\n ", - "Metadata": { - "Common.PropertyName": "TickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorTickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the minor tick.\n \n The length of the minor tick.\n ", - "Metadata": { - "Common.PropertyName": "MinorTickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLabelOffset", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the tick label offset.\n \n The tick label offset.\n ", - "Metadata": { - "Common.PropertyName": "TickLabelOffset" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets the formatter function.\n \n The formatter function.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the start angle.\n \n The start angle.\n ", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "TickPosition", - "TypeName": "Radzen.Blazor.GaugeTickPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the tick position.\n \n The tick position.\n ", - "Metadata": { - "Common.PropertyName": "TickPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the end angle.\n \n The end angle.\n ", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the radius.\n \n The radius.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowFirstTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show first tick.\n \n true if first tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowFirstTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowLastTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show last tick.\n \n true if last tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowLastTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTickLabels", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show tick labels.\n \n true if tick labels are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTickLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the x.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorStep", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the minor step.\n \n The minor step.\n ", - "Metadata": { - "Common.PropertyName": "MinorStep" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the y.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin.\n \n The margin.\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScale" - } - }, - { - "HashCode": 1687960596, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGaugeScale", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadialGaugeScale component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRadialGaugeScale" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the tick.\n \n The length of the tick.\n ", - "Metadata": { - "Common.PropertyName": "TickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorTickLength", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length of the minor tick.\n \n The length of the minor tick.\n ", - "Metadata": { - "Common.PropertyName": "MinorTickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLabelOffset", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the tick label offset.\n \n The tick label offset.\n ", - "Metadata": { - "Common.PropertyName": "TickLabelOffset" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets the formatter function.\n \n The formatter function.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the start angle.\n \n The start angle.\n ", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "TickPosition", - "TypeName": "Radzen.Blazor.GaugeTickPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the tick position.\n \n The tick position.\n ", - "Metadata": { - "Common.PropertyName": "TickPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the end angle.\n \n The end angle.\n ", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the radius.\n \n The radius.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowFirstTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show first tick.\n \n true if first tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowFirstTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowLastTick", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show last tick.\n \n true if last tick is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowLastTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTickLabels", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show tick labels.\n \n true if tick labels are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowTickLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the x.\n \n The x.\n ", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorStep", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the minor step.\n \n The minor step.\n ", - "Metadata": { - "Common.PropertyName": "MinorStep" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the y.\n \n The y.\n ", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Margin", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the margin.\n \n The margin.\n ", - "Metadata": { - "Common.PropertyName": "Margin" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScale", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1973238234, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadialGaugeScale.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenRadialGaugeScale" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScale.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -2082592804, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadialGaugeScale.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenRadialGaugeScale" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScale.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 253697402, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadialGaugeScalePointer component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRadialGaugeScalePointer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowValue", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show value.\n \n true if value is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the radius.\n \n The radius.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.Double?", - "Documentation": "\n \n Gets or sets the width.\n \n The width.\n ", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Length", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length.\n \n The length.\n ", - "Metadata": { - "Common.PropertyName": "Length" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScalePointer" - } - }, - { - "HashCode": 2123654427, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadialGaugeScalePointer component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRadialGaugeScalePointer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowValue", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show value.\n \n true if value is shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the radius.\n \n The radius.\n ", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.Double?", - "Documentation": "\n \n Gets or sets the width.\n \n The width.\n ", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Length", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the length.\n \n The length.\n ", - "Metadata": { - "Common.PropertyName": "Length" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScalePointer", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1867701330, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenRadialGaugeScalePointer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScalePointer.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 2047522646, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenRadialGaugeScalePointer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScalePointer.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 70054649, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGaugeScaleRange", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadialGaugeScaleRange component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRadialGaugeScaleRange" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "From", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets from.\n \n From.\n ", - "Metadata": { - "Common.PropertyName": "From" - } - }, - { - "Kind": "Components.Component", - "Name": "To", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets to position.\n \n To.\n ", - "Metadata": { - "Common.PropertyName": "To" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Height", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the height.\n \n The height.\n ", - "Metadata": { - "Common.PropertyName": "Height" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScaleRange" - } - }, - { - "HashCode": 951444234, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGaugeScaleRange", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadialGaugeScaleRange component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRadialGaugeScaleRange" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "From", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets from.\n \n From.\n ", - "Metadata": { - "Common.PropertyName": "From" - } - }, - { - "Kind": "Components.Component", - "Name": "To", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets to position.\n \n To.\n ", - "Metadata": { - "Common.PropertyName": "To" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the fill.\n \n The fill.\n ", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the width of the stroke.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Height", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the height.\n \n The height.\n ", - "Metadata": { - "Common.PropertyName": "Height" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGaugeScaleRange", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 193973216, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadioButtonList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadioButtonList component.\n \n The type of the value.\n \n \n <RadzenRadioButtonList @bind-Value=@value TValue=\"int\" Orientation=\"Orientation.Vertical\" >\n <Items>\n <RadzenRadioButtonListItem Text=\"Orders\" Value=\"1\" />\n <RadzenRadioButtonListItem Text=\"Employees\" Value=\"2\" />\n </Items>\n </RadzenRadioButtonList>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRadioButtonList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenRadioButtonList component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "DisabledProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the disabled property.\n \n The disabled property.\n ", - "Metadata": { - "Common.PropertyName": "DisabledProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "VisibleProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the visible property.\n \n The visible property.\n ", - "Metadata": { - "Common.PropertyName": "VisibleProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Orientation", - "TypeName": "Radzen.Orientation", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the orientation.\n \n The orientation.\n ", - "Metadata": { - "Common.PropertyName": "Orientation" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonList", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1313837037, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadioButtonList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadioButtonList component.\n \n The type of the value.\n \n \n <RadzenRadioButtonList @bind-Value=@value TValue=\"int\" Orientation=\"Orientation.Vertical\" >\n <Items>\n <RadzenRadioButtonListItem Text=\"Orders\" Value=\"1\" />\n <RadzenRadioButtonListItem Text=\"Employees\" Value=\"2\" />\n </Items>\n </RadzenRadioButtonList>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRadioButtonList" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenRadioButtonList component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "DisabledProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the disabled property.\n \n The disabled property.\n ", - "Metadata": { - "Common.PropertyName": "DisabledProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "VisibleProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the visible property.\n \n The visible property.\n ", - "Metadata": { - "Common.PropertyName": "VisibleProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Orientation", - "TypeName": "Radzen.Orientation", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the orientation.\n \n The orientation.\n ", - "Metadata": { - "Common.PropertyName": "Orientation" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonList", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -29014989, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadioButtonList.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "RadzenRadioButtonList" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonList.Items", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1715696808, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadioButtonList.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "Radzen.Blazor.RadzenRadioButtonList" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonList.Items", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -566051667, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadioButtonListItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadioButtonListItem component.\n \n The type of the value.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRadioButtonListItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenRadioButtonListItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonListItem", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1998132507, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadioButtonListItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRadioButtonListItem component.\n \n The type of the value.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRadioButtonListItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenRadioButtonListItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonListItem", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2138125569, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRating", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRating component.\n \n \n \n <RadzenRating Stars=\"10\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRating" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stars", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of stars.\n \n The number of stars.\n ", - "Metadata": { - "Common.PropertyName": "Stars" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRating" - } - }, - { - "HashCode": -1247187340, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRating", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenRating component.\n \n \n \n <RadzenRating Stars=\"10\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRating" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stars", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of stars.\n \n The number of stars.\n ", - "Metadata": { - "Common.PropertyName": "Stars" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRating", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -407093163, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRegexValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which matches a component value against a specified regular expression pattern.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"ZIP\" @bind-Value=@model.Zip />\n <RadzenRegexValidator Component=\"ZIP\" Text=\"ZIP code must be 5 digits\" Pattern=\"\\d{5}\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Zip { get; set; }\n }\n Model model = new Model(); \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRegexValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Value should match\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Pattern", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the regular expression pattern which the component value should match in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Pattern" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRegexValidator" - } - }, - { - "HashCode": -1454534565, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRegexValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which matches a component value against a specified regular expression pattern.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"ZIP\" @bind-Value=@model.Zip />\n <RadzenRegexValidator Component=\"ZIP\" Text=\"ZIP code must be 5 digits\" Pattern=\"\\d{5}\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Zip { get; set; }\n }\n Model model = new Model(); \n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRegexValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Value should match\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Pattern", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the regular expression pattern which the component value should match in order to be valid.\n \n ", - "Metadata": { - "Common.PropertyName": "Pattern" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRegexValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1634463250, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRequiredValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if a component has value.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRequiredValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Required\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "DefaultValue", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies a default value. If the component value is equal to DefaultValue it is considered invalid.\n \n ", - "Metadata": { - "Common.PropertyName": "DefaultValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRequiredValidator" - } - }, - { - "HashCode": -1065558324, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRequiredValidator", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A validator component which checks if a component has value.\n Must be placed inside a \n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRequiredValidator" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the message displayed when the component is invalid. Set to \"Required\" by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "DefaultValue", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies a default value. If the component value is equal to DefaultValue it is considered invalid.\n \n ", - "Metadata": { - "Common.PropertyName": "DefaultValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Component", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the component which this validator should validate. Must be set to the of an existing component.\n \n ", - "Metadata": { - "Common.PropertyName": "Component" - } - }, - { - "Kind": "Components.Component", - "Name": "Popup", - "TypeName": "System.Boolean", - "Documentation": "\n \n Determines if the validator is displayed as a popup or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Popup" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRequiredValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 940142869, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenScheduler", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays a collection of in day, week or month view.\n \n The type of the value item.\n \n \n <RadzenScheduler Data=\"@data\" TItem=\"DataItem\" StartProperty=\"Start\" EndProperty=\"End\" TextProperty=\"Text\">\n <RadzenMonthView />\n </RadzenScheduler>\n @code {\n class DataItem\n {\n public DateTime Start { get; set; }\n public DateTime End { get; set; }\n public string Text { get; set; }\n }\n DataItem[] data = new DataItem[]\n {\n new DataItem\n {\n Start = DateTime.Today,\n End = DateTime.Today.AddDays(1),\n Text = \"Birthday\"\n },\n };\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenScheduler" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenScheduler component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content of the scheduler. Use to specify what views to render.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template used to render appointments.\n \n \n \n <RadzenScheduler Data=\"@data\" TItem=\"DataItem\" StartProperty=\"Start\" EndProperty=\"End\" TextProperty=\"Text\">\n <Template Context=\"data\">\n <strong>@data.Text</strong>\n </Template>\n <ChildContent>\n <RadzenMonthView />\n </ChildContent>\n </RadzenScheduler>\n \n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of RadzenScheduler. It will display an appointment for every item of the collection which is within the current view date range.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "StartProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the property of which will set .\n \n The name of the property. Must be a DateTime property.\n ", - "Metadata": { - "Common.PropertyName": "StartProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "EndProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the property of which will set .\n \n The name of the property. Must be a DateTime property.\n ", - "Metadata": { - "Common.PropertyName": "EndProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the initially selected view.\n \n The index of the selected.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "TodayText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text of the today button. Set to Today by default.\n \n The today text.\n ", - "Metadata": { - "Common.PropertyName": "TodayText" - } - }, - { - "Kind": "Components.Component", - "Name": "Date", - "TypeName": "System.DateTime", - "Documentation": "\n \n Gets or sets the initial date displayed by the selected view. Set to DateTime.Today by default.\n \n The date.\n ", - "Metadata": { - "Common.PropertyName": "Date" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the property of which will set .\n \n The name of the property. Must be a DateTime property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SlotSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user clicks a slot in the current view. Commonly used to add new appointments.\n \n \n \n <RadzenScheduler Data=@appointments SlotSelect=@OnSlotSelect>\n </RadzenScheduler>\n @code {\n void OnSlotSelect(SchedulerSlotSelectEventArgs args) \n {\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "SlotSelect", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AppointmentSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n A callback that will be invoked when the user clicks an appointment in the current view. Commonly used to edit existing appointments.\n \n \n \n <RadzenScheduler Data=@appointments AppointmentSelect=@OnAppointmentSelect>\n </RadzenScheduler>\n @code {\n void OnAppointmentSelect(SchedulerAppointmentSelectEventArgs<TItem> args) \n {\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "AppointmentSelect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AppointmentRender", - "TypeName": "System.Action>", - "Documentation": "\n \n An action that will be invoked when the current view renders an appointment. Never call StateHasChanged when handling AppointmentRender.\n \n \n \n <RadzenScheduler Data=@appointments AppointmentRender=@OnAppointmentRendert>\n </RadzenScheduler>\n @code {\n void OnAppintmentRender(SchedulerAppointmentRenderEventArgs<TItem> args) \n {\n if (args.Data.Text == \"Birthday\")\n {\n args.Attributes[\"style\"] = \"color: red;\"\n }\n . }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "AppointmentRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "SlotRender", - "TypeName": "System.Action", - "Documentation": "\n \n An action that will be invoked when the current view renders an slot. Never call StateHasChanged when handling SlotRender.\n \n \n \n <RadzenScheduler Data=@appointments SlotRender=@OnSlotRender>\n </RadzenScheduler>\n @code {\n void OnSlotRender(SchedulerSlotRenderEventArgs args) \n {\n if (args.View.Text == \"Month\" && args.Start.Date == DateTime.Today)\n {\n args.Attributes[\"style\"] = \"background: red;\";\n }\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "SlotRender", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the scheduler needs data for the current view. Commonly used to filter the\n data assigned to .\n \n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenScheduler", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -816796204, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenScheduler", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays a collection of in day, week or month view.\n \n The type of the value item.\n \n \n <RadzenScheduler Data=\"@data\" TItem=\"DataItem\" StartProperty=\"Start\" EndProperty=\"End\" TextProperty=\"Text\">\n <RadzenMonthView />\n </RadzenScheduler>\n @code {\n class DataItem\n {\n public DateTime Start { get; set; }\n public DateTime End { get; set; }\n public string Text { get; set; }\n }\n DataItem[] data = new DataItem[]\n {\n new DataItem\n {\n Start = DateTime.Today,\n End = DateTime.Today.AddDays(1),\n Text = \"Birthday\"\n },\n };\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenScheduler" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenScheduler component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content of the scheduler. Use to specify what views to render.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template used to render appointments.\n \n \n \n <RadzenScheduler Data=\"@data\" TItem=\"DataItem\" StartProperty=\"Start\" EndProperty=\"End\" TextProperty=\"Text\">\n <Template Context=\"data\">\n <strong>@data.Text</strong>\n </Template>\n <ChildContent>\n <RadzenMonthView />\n </ChildContent>\n </RadzenScheduler>\n \n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data of RadzenScheduler. It will display an appointment for every item of the collection which is within the current view date range.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "StartProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the property of which will set .\n \n The name of the property. Must be a DateTime property.\n ", - "Metadata": { - "Common.PropertyName": "StartProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "EndProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the property of which will set .\n \n The name of the property. Must be a DateTime property.\n ", - "Metadata": { - "Common.PropertyName": "EndProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Specifies the initially selected view.\n \n The index of the selected.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "TodayText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text of the today button. Set to Today by default.\n \n The today text.\n ", - "Metadata": { - "Common.PropertyName": "TodayText" - } - }, - { - "Kind": "Components.Component", - "Name": "Date", - "TypeName": "System.DateTime", - "Documentation": "\n \n Gets or sets the initial date displayed by the selected view. Set to DateTime.Today by default.\n \n The date.\n ", - "Metadata": { - "Common.PropertyName": "Date" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the property of which will set .\n \n The name of the property. Must be a DateTime property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "SlotSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user clicks a slot in the current view. Commonly used to add new appointments.\n \n \n \n <RadzenScheduler Data=@appointments SlotSelect=@OnSlotSelect>\n </RadzenScheduler>\n @code {\n void OnSlotSelect(SchedulerSlotSelectEventArgs args) \n {\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "SlotSelect", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AppointmentSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n A callback that will be invoked when the user clicks an appointment in the current view. Commonly used to edit existing appointments.\n \n \n \n <RadzenScheduler Data=@appointments AppointmentSelect=@OnAppointmentSelect>\n </RadzenScheduler>\n @code {\n void OnAppointmentSelect(SchedulerAppointmentSelectEventArgs<TItem> args) \n {\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "AppointmentSelect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AppointmentRender", - "TypeName": "System.Action>", - "Documentation": "\n \n An action that will be invoked when the current view renders an appointment. Never call StateHasChanged when handling AppointmentRender.\n \n \n \n <RadzenScheduler Data=@appointments AppointmentRender=@OnAppointmentRendert>\n </RadzenScheduler>\n @code {\n void OnAppintmentRender(SchedulerAppointmentRenderEventArgs<TItem> args) \n {\n if (args.Data.Text == \"Birthday\")\n {\n args.Attributes[\"style\"] = \"color: red;\"\n }\n . }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "AppointmentRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "SlotRender", - "TypeName": "System.Action", - "Documentation": "\n \n An action that will be invoked when the current view renders an slot. Never call StateHasChanged when handling SlotRender.\n \n \n \n <RadzenScheduler Data=@appointments SlotRender=@OnSlotRender>\n </RadzenScheduler>\n @code {\n void OnSlotRender(SchedulerSlotRenderEventArgs args) \n {\n if (args.View.Text == \"Month\" && args.Start.Date == DateTime.Today)\n {\n args.Attributes[\"style\"] = \"background: red;\";\n }\n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "SlotRender", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the scheduler needs data for the current view. Commonly used to filter the\n data assigned to .\n \n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenScheduler", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1812719820, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenScheduler.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content of the scheduler. Use to specify what views to render.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenScheduler" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenScheduler.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -2136597996, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenScheduler.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content of the scheduler. Use to specify what views to render.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenScheduler" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenScheduler.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -110396439, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenScheduler.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template used to render appointments.\n \n \n \n <RadzenScheduler Data=\"@data\" TItem=\"DataItem\" StartProperty=\"Start\" EndProperty=\"End\" TextProperty=\"Text\">\n <Template Context=\"data\">\n <strong>@data.Text</strong>\n </Template>\n <ChildContent>\n <RadzenMonthView />\n </ChildContent>\n </RadzenScheduler>\n \n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenScheduler" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenScheduler.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -337863752, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenScheduler.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template used to render appointments.\n \n \n \n <RadzenScheduler Data=\"@data\" TItem=\"DataItem\" StartProperty=\"Start\" EndProperty=\"End\" TextProperty=\"Text\">\n <Template Context=\"data\">\n <strong>@data.Text</strong>\n </Template>\n <ChildContent>\n <RadzenMonthView />\n </ChildContent>\n </RadzenScheduler>\n \n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenScheduler" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenScheduler.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 50683340, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSelectBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSelectBar component.\n \n The type of the value.\n \n \n <RadzenSelectBar @bind-Value=@values TValue=\"IEnumerable<int>\" Multiple=\"true\">\n <Items>\n <RadzenSelectBarItem Text=\"Orders\" Value=\"1\" />\n <RadzenSelectBarItem Text=\"Employees\" Value=\"2\" />\n <RadzenSelectBarItem Text=\"Customers\" Value=\"3\" />\n </Items>\n </RadzenSelectBar>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSelectBar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenSelectBar component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBar", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 872586400, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSelectBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSelectBar component.\n \n The type of the value.\n \n \n <RadzenSelectBar @bind-Value=@values TValue=\"IEnumerable<int>\" Multiple=\"true\">\n <Items>\n <RadzenSelectBarItem Text=\"Orders\" Value=\"1\" />\n <RadzenSelectBarItem Text=\"Employees\" Value=\"2\" />\n <RadzenSelectBarItem Text=\"Customers\" Value=\"3\" />\n </Items>\n </RadzenSelectBar>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSelectBar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenSelectBar component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value property.\n \n The value property.\n ", - "Metadata": { - "Common.PropertyName": "ValueProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text property.\n \n The text property.\n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Items", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "Metadata": { - "Common.PropertyName": "Items", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBar", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1403745419, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSelectBar.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "RadzenSelectBar" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBar.Items", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 948059580, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSelectBar.Items", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the items.\n \n The items.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Items", - "ParentTag": "Radzen.Blazor.RadzenSelectBar" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBar.Items", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1673877936, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSelectBarItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSelectBarItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSelectBarItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBarItem" - } - }, - { - "HashCode": -958895697, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSelectBarItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSelectBarItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSelectBarItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBarItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1728349151, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSidebar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSidebar component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSidebar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Toggles the responsive mode of the component. If set to true (the default) the component will be \n expanded on larger displays and collapsed on touch devices. Set to false if you want to disable this behavior.\n Responsive mode is only available when RadzenSidebar is inside .\n \n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is expanded.\n \n true if expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandedChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expanded changed callback.\n \n The expanded changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ExpandedChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSidebar" - } - }, - { - "HashCode": 2079032403, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSidebar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSidebar component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSidebar" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Documentation": "\n \n Toggles the responsive mode of the component. If set to true (the default) the component will be \n expanded on larger displays and collapsed on touch devices. Set to false if you want to disable this behavior.\n Responsive mode is only available when RadzenSidebar is inside .\n \n ", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is expanded.\n \n true if expanded; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandedChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expanded changed callback.\n \n The expanded changed callback.\n ", - "Metadata": { - "Common.PropertyName": "ExpandedChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSidebar", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1296405385, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSidebar.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenSidebar" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSidebar.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1968478273, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSidebar.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenSidebar" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSidebar.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1158395066, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSidebarToggle", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSidebarToggle component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSidebarToggle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSidebarToggle" - } - }, - { - "HashCode": 362850098, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSidebarToggle", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSidebarToggle component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSidebarToggle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSidebarToggle", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 510657050, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSlider", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSlider component.\n \n The type of the value.\n \n \n <RadzenSlider @bind-Value=@value TValue=\"int\" Min=\"0\" Max=\"100\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSlider" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenSlider component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "Range", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is range.\n \n true if range; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Range" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Decimal", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Decimal", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSlider", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -911245183, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSlider", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSlider component.\n \n The type of the value.\n \n \n <RadzenSlider @bind-Value=@value TValue=\"int\" Min=\"0\" Max=\"100\" Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSlider" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenSlider component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the step.\n \n The step.\n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "Range", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is range.\n \n true if range; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Range" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Decimal", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Decimal", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSlider", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1311961849, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitButton", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitButton component.\n \n \n \n <RadzenSplitButton Click=@(args => Console.WriteLine($\"Value is: {args.Value}\"))>\n <ChildContent>\n <RadzenSplitButtonItem Text=\"Orders\" Value=\"1\" />\n <RadzenSplitButtonItem Text=\"Employees\" Value=\"2\" />\n <RadzenSplitButtonItem Text=\"Customers\" Value=\"3\" />\n </ChildContent>\n </RadzenSelectBar>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSplitButton" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitButton" - } - }, - { - "HashCode": -117951320, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitButton", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitButton component.\n \n \n \n <RadzenSplitButton Click=@(args => Console.WriteLine($\"Value is: {args.Value}\"))>\n <ChildContent>\n <RadzenSplitButtonItem Text=\"Orders\" Value=\"1\" />\n <RadzenSplitButtonItem Text=\"Employees\" Value=\"2\" />\n <RadzenSplitButtonItem Text=\"Customers\" Value=\"3\" />\n </ChildContent>\n </RadzenSelectBar>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSplitButton" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Image", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the image.\n \n The image.\n ", - "Metadata": { - "Common.PropertyName": "Image" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the click callback.\n \n The click callback.\n ", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitButton", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -495222697, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSplitButton.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenSplitButton" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSplitButton.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -267145007, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSplitButton.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content\n \n The content of the child.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenSplitButton" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSplitButton.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -859843037, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitButtonItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitButtonItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSplitButtonItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitButtonItem" - } - }, - { - "HashCode": 966319292, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitButtonItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitButtonItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSplitButtonItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitButtonItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -987726088, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitter component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSplitter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Orientation", - "TypeName": "Radzen.Orientation", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the orientation.\n \n The orientation.\n ", - "Metadata": { - "Common.PropertyName": "Orientation" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the collapse callback.\n \n The collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expand callback.\n \n The expand callback.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Resize", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the resize callback.\n \n The resize callback.\n ", - "Metadata": { - "Common.PropertyName": "Resize", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitter" - } - }, - { - "HashCode": 113091498, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitter component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSplitter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Orientation", - "TypeName": "Radzen.Orientation", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the orientation.\n \n The orientation.\n ", - "Metadata": { - "Common.PropertyName": "Orientation" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the collapse callback.\n \n The collapse callback.\n ", - "Metadata": { - "Common.PropertyName": "Collapse", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the expand callback.\n \n The expand callback.\n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Resize", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the resize callback.\n \n The resize callback.\n ", - "Metadata": { - "Common.PropertyName": "Resize", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitter", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 764807094, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSplitter.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenSplitter" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSplitter.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1299446050, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSplitter.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenSplitter" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSplitter.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1039253478, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitterPane", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitterPane component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSplitterPane" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsible.\n \n true if collapsible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsible" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsed", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsed.\n \n true if collapsed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsed" - } - }, - { - "Kind": "Components.Component", - "Name": "Resizable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is resizable.\n \n true if resizable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Resizable" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.String", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.String", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitterPane" - } - }, - { - "HashCode": -159292919, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSplitterPane", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSplitterPane component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSplitterPane" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsible.\n \n true if collapsible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsible" - } - }, - { - "Kind": "Components.Component", - "Name": "Collapsed", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is collapsed.\n \n true if collapsed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Collapsed" - } - }, - { - "Kind": "Components.Component", - "Name": "Resizable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is resizable.\n \n true if resizable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Resizable" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.String", - "Documentation": "\n \n Determines the maximum value.\n \n The maximum value.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.String", - "Documentation": "\n \n Determines the minimum value.\n \n The minimum value.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the size.\n \n The size.\n ", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSplitterPane", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 817015512, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSplitterPane.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenSplitterPane" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSplitterPane.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1814697486, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSplitterPane.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenSplitterPane" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSplitterPane.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 255349084, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSSRSViewer", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSSRSViewer component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSSRSViewer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "UseProxy", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to use proxy.\n \n true if proxy is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "UseProxy" - } - }, - { - "Kind": "Components.Component", - "Name": "ReportServer", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the report server URL.\n \n The report server URL.\n ", - "Metadata": { - "Common.PropertyName": "ReportServer" - } - }, - { - "Kind": "Components.Component", - "Name": "LocalServer", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the local server URL.\n \n The local server URL.\n ", - "Metadata": { - "Common.PropertyName": "LocalServer" - } - }, - { - "Kind": "Components.Component", - "Name": "ReportName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the report.\n \n The name of the report.\n ", - "Metadata": { - "Common.PropertyName": "ReportName" - } - }, - { - "Kind": "Components.Component", - "Name": "Parameters", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the parameters.\n \n The parameters.\n ", - "Metadata": { - "Common.PropertyName": "Parameters", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSSRSViewer" - } - }, - { - "HashCode": -1733266260, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSSRSViewer", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSSRSViewer component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSSRSViewer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "UseProxy", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to use proxy.\n \n true if proxy is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "UseProxy" - } - }, - { - "Kind": "Components.Component", - "Name": "ReportServer", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the report server URL.\n \n The report server URL.\n ", - "Metadata": { - "Common.PropertyName": "ReportServer" - } - }, - { - "Kind": "Components.Component", - "Name": "LocalServer", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the local server URL.\n \n The local server URL.\n ", - "Metadata": { - "Common.PropertyName": "LocalServer" - } - }, - { - "Kind": "Components.Component", - "Name": "ReportName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the report.\n \n The name of the report.\n ", - "Metadata": { - "Common.PropertyName": "ReportName" - } - }, - { - "Kind": "Components.Component", - "Name": "Parameters", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the parameters.\n \n The parameters.\n ", - "Metadata": { - "Common.PropertyName": "Parameters", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSSRSViewer", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1921507277, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSSRSViewer.Parameters", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the parameters.\n \n The parameters.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Parameters", - "ParentTag": "RadzenSSRSViewer" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSSRSViewer.Parameters", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1525029612, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSSRSViewer.Parameters", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the parameters.\n \n The parameters.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Parameters", - "ParentTag": "Radzen.Blazor.RadzenSSRSViewer" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSSRSViewer.Parameters", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -53493010, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSSRSViewerParameter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSSRSViewerParameter component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSSRSViewerParameter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ParameterName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the parameter.\n \n The name of the parameter.\n ", - "Metadata": { - "Common.PropertyName": "ParameterName" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSSRSViewerParameter" - } - }, - { - "HashCode": -1784868916, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSSRSViewerParameter", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSSRSViewerParameter component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSSRSViewerParameter" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ParameterName", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name of the parameter.\n \n The name of the parameter.\n ", - "Metadata": { - "Common.PropertyName": "ParameterName" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSSRSViewerParameter", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1675704453, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSteps", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSteps component.\n \n \n \n <RadzenSteps Change=@(args => Console.WriteLine($\"Selected index is: {args}\"))>\n <Steps>\n <RadzenStepsItem Text=\"Orders\">\n Details for Orders\n </RadzenStepsItem>\n <RadzenStepsItem Text=\"Employees\">\n Details for Employees\n </RadzenStepsItem>\n </Steps>\n </RadzenTabs>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSteps" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ShowStepsButtons", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show steps buttons.\n \n true if steps buttons are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowStepsButtons" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the selected index.\n \n The selected index.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndexChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the selected index changed callback.\n \n The selected index changed callback.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndexChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "NextText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the next button text.\n \n The next button text.\n ", - "Metadata": { - "Common.PropertyName": "NextText" - } - }, - { - "Kind": "Components.Component", - "Name": "PreviousText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the previous button text.\n \n The previous button text.\n ", - "Metadata": { - "Common.PropertyName": "PreviousText" - } - }, - { - "Kind": "Components.Component", - "Name": "Steps", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the steps.\n \n The steps.\n ", - "Metadata": { - "Common.PropertyName": "Steps", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSteps" - } - }, - { - "HashCode": -802808456, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSteps", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSteps component.\n \n \n \n <RadzenSteps Change=@(args => Console.WriteLine($\"Selected index is: {args}\"))>\n <Steps>\n <RadzenStepsItem Text=\"Orders\">\n Details for Orders\n </RadzenStepsItem>\n <RadzenStepsItem Text=\"Employees\">\n Details for Employees\n </RadzenStepsItem>\n </Steps>\n </RadzenTabs>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSteps" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ShowStepsButtons", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether to show steps buttons.\n \n true if steps buttons are shown; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ShowStepsButtons" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the selected index.\n \n The selected index.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndexChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the selected index changed callback.\n \n The selected index changed callback.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndexChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "NextText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the next button text.\n \n The next button text.\n ", - "Metadata": { - "Common.PropertyName": "NextText" - } - }, - { - "Kind": "Components.Component", - "Name": "PreviousText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the previous button text.\n \n The previous button text.\n ", - "Metadata": { - "Common.PropertyName": "PreviousText" - } - }, - { - "Kind": "Components.Component", - "Name": "Steps", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the steps.\n \n The steps.\n ", - "Metadata": { - "Common.PropertyName": "Steps", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSteps", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1986289883, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSteps.Steps", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the steps.\n \n The steps.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Steps", - "ParentTag": "RadzenSteps" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSteps.Steps", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -531758088, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenSteps.Steps", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the steps.\n \n The steps.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Steps", - "ParentTag": "Radzen.Blazor.RadzenSteps" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenSteps.Steps", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -561418507, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenStepsItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenStepsItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenStepsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenStepsItem" - } - }, - { - "HashCode": 765559286, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenStepsItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenStepsItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenStepsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenStepsItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 349924575, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenStepsItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenStepsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenStepsItem.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1809916606, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenStepsItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenStepsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenStepsItem.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -215720167, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenStepsItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenStepsItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenStepsItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 708702622, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenStepsItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenStepsItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenStepsItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 537199201, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSwitch", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSwitch component.\n \n \n \n <RadzenSwitch @bind-Value=@value Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSwitch" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSwitch" - } - }, - { - "HashCode": 1169771162, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenSwitch", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenSwitch component.\n \n \n \n <RadzenSwitch @bind-Value=@value Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSwitch" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenSwitch", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1813458619, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTabs", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenTabs component.\n \n \n \n <RadzenTabs RenderMode=\"TabRenderMode.Client\" Change=@(args => Console.WriteLine($\"Selected index is: {args}\"))>\n <Tabs>\n <RadzenTabsItem Text=\"Orders\">\n Details for Orders\n </RadzenTabsItem>\n <RadzenTabsItem Text=\"Employees\">\n Details for Employees\n </RadzenTabsItem>\n </Tabs>\n </RadzenTabs>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTabs" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "RenderMode", - "TypeName": "Radzen.TabRenderMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the render mode.\n \n The render mode.\n ", - "Metadata": { - "Common.PropertyName": "RenderMode" - } - }, - { - "Kind": "Components.Component", - "Name": "TabPosition", - "TypeName": "Radzen.TabPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the tab position.\n \n The tab position.\n ", - "Metadata": { - "Common.PropertyName": "TabPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the selected index.\n \n The selected index.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndexChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the selected index changed callback.\n \n The selected index changed callback.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndexChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Tabs", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tabs.\n \n The tabs.\n ", - "Metadata": { - "Common.PropertyName": "Tabs", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTabs" - } - }, - { - "HashCode": -1940760861, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTabs", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenTabs component.\n \n \n \n <RadzenTabs RenderMode=\"TabRenderMode.Client\" Change=@(args => Console.WriteLine($\"Selected index is: {args}\"))>\n <Tabs>\n <RadzenTabsItem Text=\"Orders\">\n Details for Orders\n </RadzenTabsItem>\n <RadzenTabsItem Text=\"Employees\">\n Details for Employees\n </RadzenTabsItem>\n </Tabs>\n </RadzenTabs>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTabs" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "RenderMode", - "TypeName": "Radzen.TabRenderMode", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the render mode.\n \n The render mode.\n ", - "Metadata": { - "Common.PropertyName": "RenderMode" - } - }, - { - "Kind": "Components.Component", - "Name": "TabPosition", - "TypeName": "Radzen.TabPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the tab position.\n \n The tab position.\n ", - "Metadata": { - "Common.PropertyName": "TabPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the selected index.\n \n The selected index.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectedIndexChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the selected index changed callback.\n \n The selected index changed callback.\n ", - "Metadata": { - "Common.PropertyName": "SelectedIndexChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Tabs", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the tabs.\n \n The tabs.\n ", - "Metadata": { - "Common.PropertyName": "Tabs", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTabs", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1229056364, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTabs.Tabs", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tabs.\n \n The tabs.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Tabs", - "ParentTag": "RadzenTabs" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTabs.Tabs", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 2045000946, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTabs.Tabs", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the tabs.\n \n The tabs.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Tabs", - "ParentTag": "Radzen.Blazor.RadzenTabs" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTabs.Tabs", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 910435260, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTabsItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenTabsItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTabsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Gets or sets the arbitrary attributes.\n \n The arbitrary attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTabsItem" - } - }, - { - "HashCode": -1294039584, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTabsItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenTabsItem component.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTabsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IDictionary", - "Documentation": "\n \n Gets or sets the arbitrary attributes.\n \n The arbitrary attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text.\n \n The text.\n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is selected.\n \n true if selected; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTabsItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1511022649, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTabsItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenTabsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTabsItem.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 472224696, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTabsItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenTabsItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTabsItem.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 151535313, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTabsItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenTabsItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTabsItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 267113814, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTabsItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenTabsItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTabsItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -16133428, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTemplateForm", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which represents a form. Provides validation support.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTemplateForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenTemplateForm component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "TItem", - "Documentation": "\n \n Specifies the model of the form. Required to support validation.\n \n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Submit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user submits the form and is true.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Submit=@OnSubmit Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n \n void OnSubmit(Model value)\n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Submit", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnInvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Obsolete. Use instead.\n \n ", - "Metadata": { - "Common.PropertyName": "OnInvalidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "InvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user submits the form and is false.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" InvalidSubmit=@OnInvalidSubmit Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n \n void OnInvalidSubmit(FormInvalidSubmitEventArgs args)\n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "InvalidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Method", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the form method attribute. Used together with .\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Method=\"post\" Action=\"/register\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n \n \n ", - "Metadata": { - "Common.PropertyName": "Method" - } - }, - { - "Kind": "Components.Component", - "Name": "Action", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the form action attribute. When set the form submits to the specified URL.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Method=\"post\" Action=\"/register\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n \n \n ", - "Metadata": { - "Common.PropertyName": "Action" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTemplateForm", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1813067535, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTemplateForm", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which represents a form. Provides validation support.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTemplateForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenTemplateForm component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "TItem", - "Documentation": "\n \n Specifies the model of the form. Required to support validation.\n \n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Submit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user submits the form and is true.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Submit=@OnSubmit Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n \n void OnSubmit(Model value)\n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Submit", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OnInvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Obsolete. Use instead.\n \n ", - "Metadata": { - "Common.PropertyName": "OnInvalidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "InvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user submits the form and is false.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" InvalidSubmit=@OnInvalidSubmit Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n @code {\n class Model\n {\n public string Email { get; set; }\n }\n \n Model model = new Model();\n \n void OnInvalidSubmit(FormInvalidSubmitEventArgs args)\n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "InvalidSubmit", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Method", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the form method attribute. Used together with .\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Method=\"post\" Action=\"/register\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n \n \n ", - "Metadata": { - "Common.PropertyName": "Method" - } - }, - { - "Kind": "Components.Component", - "Name": "Action", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the form action attribute. When set the form submits to the specified URL.\n \n \n \n <RadzenTemplateForm TItem=\"Model\" Method=\"post\" Action=\"/register\" Data=@model>\n <RadzenTextBox style=\"display: block\" Name=\"Email\" @bind-Value=@model.Email />\n <RadzenRequiredValidator Component=\"Email\" Text=\"Email is required\" Style=\"position: absolute\" />\n </RadzenTemplateForm>\n \n \n ", - "Metadata": { - "Common.PropertyName": "Action" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTemplateForm", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 50347507, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTemplateForm.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenTemplateForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTemplateForm.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1717448758, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTemplateForm.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenTemplateForm" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTemplateForm.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 953766759, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTextArea", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenTextArea component.\n \n \n \n <RadzenTextArea Cols=\"30\" Rows=\"3\" @bind-Value=@value Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTextArea" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "MaxLength", - "TypeName": "System.Int64?", - "Documentation": "\n \n Gets or sets the maximum length.\n \n The maximum length.\n ", - "Metadata": { - "Common.PropertyName": "MaxLength" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "Rows", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of rows.\n \n The number of rows.\n ", - "Metadata": { - "Common.PropertyName": "Rows" - } - }, - { - "Kind": "Components.Component", - "Name": "Cols", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of cols.\n \n The number of cols.\n ", - "Metadata": { - "Common.PropertyName": "Cols" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTextArea" - } - }, - { - "HashCode": -944591128, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTextArea", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenTextArea component.\n \n \n \n <RadzenTextArea Cols=\"30\" Rows=\"3\" @bind-Value=@value Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTextArea" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "MaxLength", - "TypeName": "System.Int64?", - "Documentation": "\n \n Gets or sets the maximum length.\n \n The maximum length.\n ", - "Metadata": { - "Common.PropertyName": "MaxLength" - } - }, - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "Rows", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of rows.\n \n The number of rows.\n ", - "Metadata": { - "Common.PropertyName": "Rows" - } - }, - { - "Kind": "Components.Component", - "Name": "Cols", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the number of cols.\n \n The number of cols.\n ", - "Metadata": { - "Common.PropertyName": "Cols" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTextArea", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1488991913, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTextBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n An input component for single line text entry.\n \n \n \n <RadzenTextBox @bind-Value=@value Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTextBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating the browser built-in autocomplete is enabled.\n \n true if input automatic complete is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxLength", - "TypeName": "System.Int64?", - "Documentation": "\n \n Gets or sets the maximum allowed text length.\n \n The maximum length.\n ", - "Metadata": { - "Common.PropertyName": "MaxLength" - } - }, - { - "Kind": "Components.Component", - "Name": "Trim", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to remove any leading or trailing whitespace from the value. Set to false by default.\n \n true if trimming is enabled; otherwise, false. \n ", - "Metadata": { - "Common.PropertyName": "Trim" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTextBox" - } - }, - { - "HashCode": -1194068390, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTextBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n An input component for single line text entry.\n \n \n \n <RadzenTextBox @bind-Value=@value Change=@(args => Console.WriteLine($\"Value: {args}\")) />\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTextBox" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ReadOnly", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether is read only.\n \n true if is read only; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "ReadOnly" - } - }, - { - "Kind": "Components.Component", - "Name": "AutoComplete", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating the browser built-in autocomplete is enabled.\n \n true if input automatic complete is enabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AutoComplete" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxLength", - "TypeName": "System.Int64?", - "Documentation": "\n \n Gets or sets the maximum allowed text length.\n \n The maximum length.\n ", - "Metadata": { - "Common.PropertyName": "MaxLength" - } - }, - { - "Kind": "Components.Component", - "Name": "Trim", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether to remove any leading or trailing whitespace from the value. Set to false by default.\n \n true if trimming is enabled; otherwise, false. \n ", - "Metadata": { - "Common.PropertyName": "Trim" - } - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the name.\n \n The name.\n ", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "TabIndex", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the index of the tab.\n \n The index of the tab.\n ", - "Metadata": { - "Common.PropertyName": "TabIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the placeholder.\n \n The placeholder.\n ", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the value changed.\n \n The value changed.\n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the value.\n \n The value.\n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change.\n \n The change.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "Documentation": "\n \n Gets or sets the value expression.\n \n The value expression.\n ", - "Metadata": { - "Common.PropertyName": "ValueExpression" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTextBox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1969691262, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTicks", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Tick configuration of . \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTicks" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the ticks lines.\n \n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Specifies the width of the tick lines. Set to 1 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the type of line used to render the ticks.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTicks" - } - }, - { - "HashCode": 1020281943, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTicks", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Tick configuration of . \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTicks" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the color of the ticks lines.\n \n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Specifies the width of the tick lines. Set to 1 by default.\n \n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Specifies the type of line used to render the ticks.\n \n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTicks", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1492572482, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTicks.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenTicks" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTicks.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 624486899, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTicks.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenTicks" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTicks.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1628735086, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTree", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which displays a hierarchy of items. Supports inline definition and data-binding.\n \n \n \n <RadzenTree>\n <RadzenTreeItem Text=\"BMW\">\n <RadzenTreeItem Text=\"M3\" />\n <RadzenTreeItem Text=\"M5\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Audi\">\n <RadzenTreeItem Text=\"RS4\" />\n <RadzenTreeItem Text=\"RS6\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Mercedes\">\n <RadzenTreeItem Text=\"C63 AMG\" />\n <RadzenTreeItem Text=\"S63 AMG\" />\n </RadzenTreeItem>\n </RadzenTree>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTree" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user selects an item.\n \n \n \n <RadzenTree Change=@OnChange>\n <RadzenTreeItem Text=\"BMW\">\n <RadzenTreeItem Text=\"M3\" />\n <RadzenTreeItem Text=\"M5\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Audi\">\n <RadzenTreeItem Text=\"RS4\" />\n <RadzenTreeItem Text=\"RS6\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Mercedes\">\n <RadzenTreeItem Text=\"C63 AMG\" />\n <RadzenTreeItem Text=\"S63 AMG\" />\n </RadzenTreeItem>\n </RadzenTree>\n @code {\n void OnChange(TreeEventArgs args) \n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user expands an item.\n \n \n \n <RadzenTree Expand=@OnExpand>\n <RadzenTreeItem Text=\"BMW\">\n <RadzenTreeItem Text=\"M3\" />\n <RadzenTreeItem Text=\"M5\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Audi\">\n <RadzenTreeItem Text=\"RS4\" />\n <RadzenTreeItem Text=\"RS6\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Mercedes\">\n <RadzenTreeItem Text=\"C63 AMG\" />\n <RadzenTreeItem Text=\"S63 AMG\" />\n </RadzenTreeItem>\n </RadzenTree>\n @code {\n void OnExpand(TreeExpandEventArgs args) \n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Specifies the collection of data items which RadzenTree will create its items from.\n \n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the selected value. Use with @bind-Value to sync it with a property.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback which will be invoked when changes.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCheckBoxes", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether RadzenTree displays check boxes. Set to false by default.\n \n true if check boxes are displayed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCheckBoxes" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCheckChildren", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies what happens when a parent item is checked. If set to true checking parent items also checks all of its children.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowCheckChildren" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCheckParents", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies what happens with a parent item when one of its children is checked. If set to true checking a child item will affect the checked state of its parents.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowCheckParents" - } - }, - { - "Kind": "Components.Component", - "Name": "SingleExpand", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether siblings items are collapsed. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "SingleExpand" - } - }, - { - "Kind": "Components.Component", - "Name": "CheckedValues", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the checked values. Use with @bind-CheckedValues to sync it with a property.\n \n ", - "Metadata": { - "Common.PropertyName": "CheckedValues" - } - }, - { - "Kind": "Components.Component", - "Name": "CheckedValuesChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n A callback which will be invoked when changes.\n \n ", - "Metadata": { - "Common.PropertyName": "CheckedValuesChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTree" - } - }, - { - "HashCode": -708250367, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTree", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which displays a hierarchy of items. Supports inline definition and data-binding.\n \n \n \n <RadzenTree>\n <RadzenTreeItem Text=\"BMW\">\n <RadzenTreeItem Text=\"M3\" />\n <RadzenTreeItem Text=\"M5\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Audi\">\n <RadzenTreeItem Text=\"RS4\" />\n <RadzenTreeItem Text=\"RS6\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Mercedes\">\n <RadzenTreeItem Text=\"C63 AMG\" />\n <RadzenTreeItem Text=\"S63 AMG\" />\n </RadzenTreeItem>\n </RadzenTree>\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTree" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user selects an item.\n \n \n \n <RadzenTree Change=@OnChange>\n <RadzenTreeItem Text=\"BMW\">\n <RadzenTreeItem Text=\"M3\" />\n <RadzenTreeItem Text=\"M5\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Audi\">\n <RadzenTreeItem Text=\"RS4\" />\n <RadzenTreeItem Text=\"RS6\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Mercedes\">\n <RadzenTreeItem Text=\"C63 AMG\" />\n <RadzenTreeItem Text=\"S63 AMG\" />\n </RadzenTreeItem>\n </RadzenTree>\n @code {\n void OnChange(TreeEventArgs args) \n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user expands an item.\n \n \n \n <RadzenTree Expand=@OnExpand>\n <RadzenTreeItem Text=\"BMW\">\n <RadzenTreeItem Text=\"M3\" />\n <RadzenTreeItem Text=\"M5\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Audi\">\n <RadzenTreeItem Text=\"RS4\" />\n <RadzenTreeItem Text=\"RS6\" />\n </RadzenTreeItem>\n <RadzenTreeItem Text=\"Mercedes\">\n <RadzenTreeItem Text=\"C63 AMG\" />\n <RadzenTreeItem Text=\"S63 AMG\" />\n </RadzenTreeItem>\n </RadzenTree>\n @code {\n void OnExpand(TreeExpandEventArgs args) \n {\n \n }\n }\n \n \n ", - "Metadata": { - "Common.PropertyName": "Expand", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n Specifies the collection of data items which RadzenTree will create its items from.\n \n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the selected value. Use with @bind-Value to sync it with a property.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback which will be invoked when changes.\n \n ", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCheckBoxes", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether RadzenTree displays check boxes. Set to false by default.\n \n true if check boxes are displayed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowCheckBoxes" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCheckChildren", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies what happens when a parent item is checked. If set to true checking parent items also checks all of its children.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowCheckChildren" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowCheckParents", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies what happens with a parent item when one of its children is checked. If set to true checking a child item will affect the checked state of its parents.\n \n ", - "Metadata": { - "Common.PropertyName": "AllowCheckParents" - } - }, - { - "Kind": "Components.Component", - "Name": "SingleExpand", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether siblings items are collapsed. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "SingleExpand" - } - }, - { - "Kind": "Components.Component", - "Name": "CheckedValues", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the checked values. Use with @bind-CheckedValues to sync it with a property.\n \n ", - "Metadata": { - "Common.PropertyName": "CheckedValues" - } - }, - { - "Kind": "Components.Component", - "Name": "CheckedValuesChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "\n \n A callback which will be invoked when changes.\n \n ", - "Metadata": { - "Common.PropertyName": "CheckedValuesChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTree", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1683240725, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTree.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenTree" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTree.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 109301182, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTree.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenTree" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTree.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1784485752, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTreeItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which is an item in a \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTreeItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template. Use it to customize the appearance of a tree item.\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text displayed by the tree item.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether this item is expanded. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value of the tree item.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "HasChildren", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance has children.\n \n ", - "Metadata": { - "Common.PropertyName": "HasChildren" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether this item is selected or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n The children data.\n \n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTreeItem" - } - }, - { - "HashCode": 375744065, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTreeItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n A component which is an item in a \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTreeItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template. Use it to customize the appearance of a tree item.\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the text displayed by the tree item.\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether this item is expanded. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Expanded" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the value of the tree item.\n \n ", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "HasChildren", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this instance has children.\n \n ", - "Metadata": { - "Common.PropertyName": "HasChildren" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Documentation": "\n \n Specifies whether this item is selected or not. Set to false by default.\n \n ", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.IEnumerable", - "Documentation": "\n \n The children data.\n \n ", - "Metadata": { - "Common.PropertyName": "Data" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTreeItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2091094333, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTreeItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenTreeItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTreeItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -105960349, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTreeItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenTreeItem" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTreeItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 781673882, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTreeItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template. Use it to customize the appearance of a tree item.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenTreeItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTreeItem.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1786438099, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTreeItem.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template. Use it to customize the appearance of a tree item.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenTreeItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTreeItem.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1412630433, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTreeLevel", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Configures a level of nodes in a during data-binding.\n \n \n \n <RadzenTree Data=@rootEmployees>\n <RadzenTreeLevel TextProperty=\"LastName\" ChildrenProperty=\"Employees1\" HasChildren=@(e => (e as Employee).Employees1.Any()) />\n </RadzenTree>\n @code {\n IEnumerable<Employee> rootEmployees; \n protected override void OnInitialized()\n {\n rootEmployees = NorthwindDbContext.Employees.Where(e => e.ReportsTo == null);\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTreeLevel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the name of the property which provides values for the property of the child items.\n \n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildrenProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the name of the property which returns child data. The value returned by that property should be IEnumerable\n \n ", - "Metadata": { - "Common.PropertyName": "ChildrenProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "HasChildren", - "TypeName": "System.Func", - "Documentation": "\n \n Determines if a child item has children or not. Set to value => true by default.\n \n \n \n <RadzenTreeLevel HasChildren=@(e => (e as Employee).Employees1.Any()) />\n \n \n ", - "Metadata": { - "Common.PropertyName": "HasChildren", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Func", - "Documentation": "\n \n Determines if a child item is expanded or not. Set to value => false by default.\n \n \n \n <RadzenTreeLevel Expanded=@(e => (e as Employee).Employees1.Any()) />\n \n \n ", - "Metadata": { - "Common.PropertyName": "Expanded", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Func", - "Documentation": "\n \n Determines if a child item is selected or not. Set to value => false by default.\n \n \n \n <RadzenTreeLevel Selected=@(e => (e as Employee).LastName == \"Fuller\") />\n \n \n ", - "Metadata": { - "Common.PropertyName": "Selected", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.Func", - "Documentation": "\n \n Determines the text of a child item.\n \n \n \n <RadzenTreeLevel Text=@(e => (e as Employee).LastName) />\n \n \n ", - "Metadata": { - "Common.PropertyName": "Text", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTreeLevel" - } - }, - { - "HashCode": 773819311, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTreeLevel", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Configures a level of nodes in a during data-binding.\n \n \n \n <RadzenTree Data=@rootEmployees>\n <RadzenTreeLevel TextProperty=\"LastName\" ChildrenProperty=\"Employees1\" HasChildren=@(e => (e as Employee).Employees1.Any()) />\n </RadzenTree>\n @code {\n IEnumerable<Employee> rootEmployees; \n protected override void OnInitialized()\n {\n rootEmployees = NorthwindDbContext.Employees.Where(e => e.ReportsTo == null);\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTreeLevel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TextProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the name of the property which provides values for the property of the child items.\n \n ", - "Metadata": { - "Common.PropertyName": "TextProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildrenProperty", - "TypeName": "System.String", - "Documentation": "\n \n Specifies the name of the property which returns child data. The value returned by that property should be IEnumerable\n \n ", - "Metadata": { - "Common.PropertyName": "ChildrenProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "HasChildren", - "TypeName": "System.Func", - "Documentation": "\n \n Determines if a child item has children or not. Set to value => true by default.\n \n \n \n <RadzenTreeLevel HasChildren=@(e => (e as Employee).Employees1.Any()) />\n \n \n ", - "Metadata": { - "Common.PropertyName": "HasChildren", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Expanded", - "TypeName": "System.Func", - "Documentation": "\n \n Determines if a child item is expanded or not. Set to value => false by default.\n \n \n \n <RadzenTreeLevel Expanded=@(e => (e as Employee).Employees1.Any()) />\n \n \n ", - "Metadata": { - "Common.PropertyName": "Expanded", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Func", - "Documentation": "\n \n Determines if a child item is selected or not. Set to value => false by default.\n \n \n \n <RadzenTreeLevel Selected=@(e => (e as Employee).LastName == \"Fuller\") />\n \n \n ", - "Metadata": { - "Common.PropertyName": "Selected", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.Func", - "Documentation": "\n \n Determines the text of a child item.\n \n \n \n <RadzenTreeLevel Text=@(e => (e as Employee).LastName) />\n \n \n ", - "Metadata": { - "Common.PropertyName": "Text", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTreeLevel", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1662910990, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTreeLevel.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenTreeLevel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTreeLevel.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1117085148, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenTreeLevel.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenTreeLevel" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenTreeLevel.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2019912222, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenUpload", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenUpload component.\n \n \n \n <RadzenUpload Url=\"upload/single\" Progress=@(args => OnProgress(args, \"Single file upload\"))/>\n @code {\n void OnProgress(UploadProgressArgs args, string name)\n {\n this.info = $\"% '{name}' / {args.Loaded} of {args.Total} bytes.\";\n this.progress = args.Progress;\n if (args.Progress == 100)\n {\n console.Clear();\n \n foreach (var file in args.Files)\n {\n console.Log($\"Uploaded: {file.Name} / {file.Size} bytes\");\n }\n }\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenUpload" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Auto", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this upload is automatic.\n \n true if upload automatic; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Auto" - } - }, - { - "Kind": "Components.Component", - "Name": "ChooseText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the choose button text.\n \n The choose button text.\n ", - "Metadata": { - "Common.PropertyName": "ChooseText" - } - }, - { - "Kind": "Components.Component", - "Name": "Url", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the URL.\n \n The URL.\n ", - "Metadata": { - "Common.PropertyName": "Url" - } - }, - { - "Kind": "Components.Component", - "Name": "Accept", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the accepted MIME types.\n \n The accepted MIME types.\n ", - "Metadata": { - "Common.PropertyName": "Accept" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Progress", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the progress callback.\n \n The progress callback.\n ", - "Metadata": { - "Common.PropertyName": "Progress", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Complete", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the complete callback.\n \n The complete callback.\n ", - "Metadata": { - "Common.PropertyName": "Complete", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Error", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the error callback.\n \n The error callback.\n ", - "Metadata": { - "Common.PropertyName": "Error", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenUpload" - } - }, - { - "HashCode": -2114304173, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenUpload", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n RadzenUpload component.\n \n \n \n <RadzenUpload Url=\"upload/single\" Progress=@(args => OnProgress(args, \"Single file upload\"))/>\n @code {\n void OnProgress(UploadProgressArgs args, string name)\n {\n this.info = $\"% '{name}' / {args.Loaded} of {args.Total} bytes.\";\n this.progress = args.Progress;\n if (args.Progress == 100)\n {\n console.Clear();\n \n foreach (var file in args.Files)\n {\n console.Log($\"Uploaded: {file.Name} / {file.Size} bytes\");\n }\n }\n }\n }\n \n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenUpload" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Auto", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this upload is automatic.\n \n true if upload automatic; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Auto" - } - }, - { - "Kind": "Components.Component", - "Name": "ChooseText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the choose button text.\n \n The choose button text.\n ", - "Metadata": { - "Common.PropertyName": "ChooseText" - } - }, - { - "Kind": "Components.Component", - "Name": "Url", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the URL.\n \n The URL.\n ", - "Metadata": { - "Common.PropertyName": "Url" - } - }, - { - "Kind": "Components.Component", - "Name": "Accept", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the accepted MIME types.\n \n The accepted MIME types.\n ", - "Metadata": { - "Common.PropertyName": "Accept" - } - }, - { - "Kind": "Components.Component", - "Name": "Multiple", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is multiple.\n \n true if multiple; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Multiple" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the icon.\n \n The icon.\n ", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is disabled.\n \n true if disabled; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the change callback.\n \n The change callback.\n ", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Progress", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the progress callback.\n \n The progress callback.\n ", - "Metadata": { - "Common.PropertyName": "Progress", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Complete", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the complete callback.\n \n The complete callback.\n ", - "Metadata": { - "Common.PropertyName": "Complete", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Error", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the error callback.\n \n The error callback.\n ", - "Metadata": { - "Common.PropertyName": "Error", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenUpload", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -352544136, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenUpload.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenUpload" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenUpload.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1707405128, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenUpload.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenUpload" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenUpload.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -491178619, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenWeekView", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays the appointments in a week day in \n \n \n <RadzenScheduler Data=\"@appointments\">\n <RadzenWeekView />\n </RadzenScheduler>\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenWeekView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the time format.\n \n The time format. Set to h tt by default.\n ", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the start time.\n \n The start time.\n ", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the end time.\n \n The end time.\n ", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets slot size in minutes. Set to 30 by default.\n \n The slot size in minutes.\n ", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenWeekView" - } - }, - { - "HashCode": 239226616, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenWeekView", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Displays the appointments in a week day in \n \n \n <RadzenScheduler Data=\"@appointments\">\n <RadzenWeekView />\n </RadzenScheduler>\n \n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenWeekView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Documentation": "\n \n ", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the time format.\n \n The time format. Set to h tt by default.\n ", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the start time.\n \n The start time.\n ", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Documentation": "\n \n Gets or sets the end time.\n \n The end time.\n ", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets slot size in minutes. Set to 30 by default.\n \n The slot size in minutes.\n ", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenWeekView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1704432068, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenArcGauge", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenArcGauge" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenArcGauge" - } - }, - { - "HashCode": 326851271, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenArcGauge", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenArcGauge" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenArcGauge", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -628985385, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenArcGauge.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenArcGauge" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenArcGauge.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1530114988, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenArcGauge.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenArcGauge" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenArcGauge.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -995303658, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCategoryAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCategoryAxis" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Padding", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Padding" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke (line color) of the axis.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the pixel width of axis.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string used to display the axis values.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets a formatter function that formats the axis values.\n \n The formatter.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to display the axis.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "TickDistance", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the pixel distance between axis ticks. It is used to calculate the number of visible ticks depending on the available space. Set to 100 by default;\n Setting will override this value.\n \n The desired pixel distance between ticks.\n ", - "Metadata": { - "Common.PropertyName": "TickDistance" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the minimum value of the axis.\n \n The minimum.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the maximum value of the axis.\n \n The maximum.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the step of the axis.\n \n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCategoryAxis" - } - }, - { - "HashCode": 665451427, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenCategoryAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCategoryAxis" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Padding", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Padding" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke (line color) of the axis.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the pixel width of axis.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string used to display the axis values.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets a formatter function that formats the axis values.\n \n The formatter.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to display the axis.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "TickDistance", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the pixel distance between axis ticks. It is used to calculate the number of visible ticks depending on the available space. Set to 100 by default;\n Setting will override this value.\n \n The desired pixel distance between ticks.\n ", - "Metadata": { - "Common.PropertyName": "TickDistance" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the minimum value of the axis.\n \n The minimum.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the maximum value of the axis.\n \n The maximum.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the step of the axis.\n \n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenCategoryAxis", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 260751530, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenCategoryAxis.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenCategoryAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenCategoryAxis.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 424248771, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenCategoryAxis.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenCategoryAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenCategoryAxis.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -206538164, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "RowIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "RowIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Row", - "TypeName": "Radzen.Blazor.RadzenDataGridRow", - "Metadata": { - "Common.PropertyName": "Row", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "Metadata": { - "Common.PropertyName": "EditContext" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "TItem", - "Metadata": { - "Common.PropertyName": "Item", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridCell", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 1784769423, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "RowIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "RowIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Row", - "TypeName": "Radzen.Blazor.RadzenDataGridRow", - "Metadata": { - "Common.PropertyName": "Row", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "Metadata": { - "Common.PropertyName": "EditContext" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "TItem", - "Metadata": { - "Common.PropertyName": "Item", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridCell", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 885128365, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridCell.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenDataGridCell" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridCell.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -887428659, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridCell.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenDataGridCell" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridCell.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 121306035, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridFilterMenu", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridFilterMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridFilterMenu component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridFilterMenu", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -948265350, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridFilterMenu", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridFilterMenu" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridFilterMenu component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridFilterMenu", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 689147455, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridFooterCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridFooterCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridFooterCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "RowIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridFooterCell", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -2041494598, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridFooterCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridFooterCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridFooterCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "RowIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridFooterCell", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -191902208, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridGroupFooterRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridGroupFooterRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridGroupFooterRow component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "System.Collections.Generic.IList>", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupResult", - "TypeName": "System.Linq.Dynamic.Core.GroupResult", - "Metadata": { - "Common.PropertyName": "GroupResult" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Parent", - "TypeName": "Radzen.Blazor.RadzenDataGridGroupRow", - "Metadata": { - "Common.PropertyName": "Parent", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Builder", - "TypeName": "Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder", - "Metadata": { - "Common.PropertyName": "Builder" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridGroupFooterRow", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -612758318, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridGroupFooterRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridGroupFooterRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridGroupFooterRow component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "System.Collections.Generic.IList>", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupResult", - "TypeName": "System.Linq.Dynamic.Core.GroupResult", - "Metadata": { - "Common.PropertyName": "GroupResult" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Parent", - "TypeName": "Radzen.Blazor.RadzenDataGridGroupRow", - "Metadata": { - "Common.PropertyName": "Parent", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Builder", - "TypeName": "Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder", - "Metadata": { - "Common.PropertyName": "Builder" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridGroupFooterRow", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1186448522, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridGroupRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridGroupRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridGroupRow component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "System.Collections.Generic.IList>", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupResult", - "TypeName": "System.Linq.Dynamic.Core.GroupResult", - "Metadata": { - "Common.PropertyName": "GroupResult" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Parent", - "TypeName": "Radzen.Blazor.RadzenDataGridGroupRow", - "Metadata": { - "Common.PropertyName": "Parent", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Builder", - "TypeName": "Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder", - "Metadata": { - "Common.PropertyName": "Builder" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridGroupRow", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 566463725, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridGroupRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridGroupRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridGroupRow component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "System.Collections.Generic.IList>", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupResult", - "TypeName": "System.Linq.Dynamic.Core.GroupResult", - "Metadata": { - "Common.PropertyName": "GroupResult" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Parent", - "TypeName": "Radzen.Blazor.RadzenDataGridGroupRow", - "Metadata": { - "Common.PropertyName": "Parent", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Builder", - "TypeName": "Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder", - "Metadata": { - "Common.PropertyName": "Builder" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridGroupRow", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1471303215, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridHeaderCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridHeaderCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridHeaderCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "ColumnIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "RowIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "RowIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridHeaderCell", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1554443475, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridHeaderCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridHeaderCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridHeaderCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Column", - "TypeName": "Radzen.Blazor.RadzenDataGridColumn", - "Metadata": { - "Common.PropertyName": "Column", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "ColumnIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "RowIndex", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "RowIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridHeaderCell", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1100664440, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGridRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridRow component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "System.Collections.Generic.IList>", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "TItem", - "Metadata": { - "Common.PropertyName": "Item", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Index", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "Index" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "InEditMode", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "InEditMode" - } - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "Metadata": { - "Common.PropertyName": "EditContext" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridRow", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 574028027, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDataGridRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGridRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenDataGridRow component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "System.Collections.Generic.IList>", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "TItem", - "Metadata": { - "Common.PropertyName": "Item", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Index", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "Index" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenDataGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "InEditMode", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "InEditMode" - } - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "Metadata": { - "Common.PropertyName": "EditContext" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridRow", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1730969071, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridRow.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenDataGridRow" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridRow.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1083985585, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDataGridRow.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenDataGridRow" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDataGridRow.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1504960795, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDialog", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDialog" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDialog" - } - }, - { - "HashCode": -1361258660, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDialog", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDialog" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDialog", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1622809366, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OrderIndex", - "TypeName": "System.Int32?", - "Documentation": "\n \n Gets or sets the order index.\n \n The order index.\n ", - "Metadata": { - "Common.PropertyName": "OrderIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SortOrder", - "TypeName": "Radzen.SortOrder?", - "Documentation": "\n \n Gets or sets the sort order.\n \n The sort order.\n ", - "Metadata": { - "Common.PropertyName": "SortOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Property", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the property name.\n \n The property name.\n ", - "Metadata": { - "Common.PropertyName": "Property" - } - }, - { - "Kind": "Components.Component", - "Name": "SortProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the sort property name.\n \n The sort property name.\n ", - "Metadata": { - "Common.PropertyName": "SortProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group property name.\n \n The group property name.\n ", - "Metadata": { - "Common.PropertyName": "GroupProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter property name.\n \n The filter property name.\n ", - "Metadata": { - "Common.PropertyName": "FilterProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the filter value.\n \n The filter value.\n ", - "Metadata": { - "Common.PropertyName": "FilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the second filter value.\n \n The second filter value.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width.\n \n The width.\n ", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "MinWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the min-width.\n \n The min-width.\n ", - "Metadata": { - "Common.PropertyName": "MinWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS class applied to data cells.\n \n The CSS class applied to data cells.\n ", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the header CSS class applied to header cell.\n \n The header CSS class applied to header cell.\n ", - "Metadata": { - "Common.PropertyName": "HeaderCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the footer CSS class applied to footer cell.\n \n The footer CSS class applied to footer cell.\n ", - "Metadata": { - "Common.PropertyName": "FooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group footer CSS class applied to group footer cell.\n \n The group footer CSS class applied to group footer cell.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Filterable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is filterable.\n \n true if filterable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Filterable" - } - }, - { - "Kind": "Components.Component", - "Name": "Sortable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is sortable.\n \n true if sortable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Sortable" - } - }, - { - "Kind": "Components.Component", - "Name": "Frozen", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is frozen.\n \n true if frozen; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Frozen" - } - }, - { - "Kind": "Components.Component", - "Name": "Resizable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is resizable.\n \n true if resizable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Resizable" - } - }, - { - "Kind": "Components.Component", - "Name": "Reorderable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is reorderable.\n \n true if reorderable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Reorderable" - } - }, - { - "Kind": "Components.Component", - "Name": "Groupable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is groupable.\n \n true if groupable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Groupable" - } - }, - { - "Kind": "Components.Component", - "Name": "Pickable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is pickable - listed when DataGrid AllowColumnPicking is set to true.\n \n true if pickable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Pickable" - } - }, - { - "Kind": "Components.Component", - "Name": "TextAlign", - "TypeName": "Radzen.TextAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the text align.\n \n The text align.\n ", - "Metadata": { - "Common.PropertyName": "TextAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "Metadata": { - "Common.PropertyName": "EditTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "Metadata": { - "Common.PropertyName": "FilterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the logical filter operator.\n \n The logical filter operator.\n ", - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the data type.\n \n The data type.\n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the second filter operator.\n \n The second filter operator.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - }, - { - "HashCode": 195334073, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "OrderIndex", - "TypeName": "System.Int32?", - "Documentation": "\n \n Gets or sets the order index.\n \n The order index.\n ", - "Metadata": { - "Common.PropertyName": "OrderIndex" - } - }, - { - "Kind": "Components.Component", - "Name": "SortOrder", - "TypeName": "Radzen.SortOrder?", - "Documentation": "\n \n Gets or sets the sort order.\n \n The sort order.\n ", - "Metadata": { - "Common.PropertyName": "SortOrder" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the title.\n \n The title.\n ", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Property", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the property name.\n \n The property name.\n ", - "Metadata": { - "Common.PropertyName": "Property" - } - }, - { - "Kind": "Components.Component", - "Name": "SortProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the sort property name.\n \n The sort property name.\n ", - "Metadata": { - "Common.PropertyName": "SortProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group property name.\n \n The group property name.\n ", - "Metadata": { - "Common.PropertyName": "GroupProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterProperty", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the filter property name.\n \n The filter property name.\n ", - "Metadata": { - "Common.PropertyName": "FilterProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the filter value.\n \n The filter value.\n ", - "Metadata": { - "Common.PropertyName": "FilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterValue", - "TypeName": "System.Object", - "Documentation": "\n \n Gets or sets the second filter value.\n \n The second filter value.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the width.\n \n The width.\n ", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "MinWidth", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the min-width.\n \n The min-width.\n ", - "Metadata": { - "Common.PropertyName": "MinWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the CSS class applied to data cells.\n \n The CSS class applied to data cells.\n ", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the header CSS class applied to header cell.\n \n The header CSS class applied to header cell.\n ", - "Metadata": { - "Common.PropertyName": "HeaderCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the footer CSS class applied to footer cell.\n \n The footer CSS class applied to footer cell.\n ", - "Metadata": { - "Common.PropertyName": "FooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterCssClass", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the group footer CSS class applied to group footer cell.\n \n The group footer CSS class applied to group footer cell.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Filterable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is filterable.\n \n true if filterable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Filterable" - } - }, - { - "Kind": "Components.Component", - "Name": "Sortable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is sortable.\n \n true if sortable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Sortable" - } - }, - { - "Kind": "Components.Component", - "Name": "Frozen", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is frozen.\n \n true if frozen; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Frozen" - } - }, - { - "Kind": "Components.Component", - "Name": "Resizable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is resizable.\n \n true if resizable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Resizable" - } - }, - { - "Kind": "Components.Component", - "Name": "Reorderable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is reorderable.\n \n true if reorderable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Reorderable" - } - }, - { - "Kind": "Components.Component", - "Name": "Groupable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is groupable.\n \n true if groupable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Groupable" - } - }, - { - "Kind": "Components.Component", - "Name": "Pickable", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is pickable - listed when DataGrid AllowColumnPicking is set to true.\n \n true if pickable; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Pickable" - } - }, - { - "Kind": "Components.Component", - "Name": "TextAlign", - "TypeName": "Radzen.TextAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the text align.\n \n The text align.\n ", - "Metadata": { - "Common.PropertyName": "TextAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "Metadata": { - "Common.PropertyName": "EditTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "GroupFooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "Metadata": { - "Common.PropertyName": "GroupFooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "Metadata": { - "Common.PropertyName": "FilterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the logical filter operator.\n \n The logical filter operator.\n ", - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.Type", - "Documentation": "\n \n Gets or sets the data type.\n \n The data type.\n ", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the filter operator.\n \n The filter operator.\n ", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterOperator", - "TypeName": "Radzen.FilterOperator", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the second filter operator.\n \n The second filter operator.\n ", - "Metadata": { - "Common.PropertyName": "SecondFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2057102104, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "RadzenDropDownDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.Columns", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -430708907, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Columns", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the columns.\n \n The columns.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.Columns", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1185972139, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1602778704, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2003789818, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.EditTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditTemplate", - "ParentTag": "RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'EditTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.EditTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 431174634, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.EditTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the edit template.\n \n The edit template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditTemplate", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'EditTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.EditTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2011831390, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "RadzenDropDownDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1077437990, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the header template.\n \n The header template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1564261680, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "RadzenDropDownDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1350796843, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the footer template.\n \n The footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 964911015, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.GroupFooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GroupFooterTemplate", - "ParentTag": "RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'GroupFooterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.GroupFooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1823318632, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.GroupFooterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the group footer template.\n \n The group footer template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GroupFooterTemplate", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'GroupFooterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.GroupFooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1427111622, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FilterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FilterTemplate", - "ParentTag": "RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'FilterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.FilterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1768199528, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FilterTemplate", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the filter template.\n \n The filter template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FilterTemplate", - "ParentTag": "Radzen.Blazor.RadzenDropDownDataGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'FilterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGridColumn.FilterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1717019555, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDownItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDownItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDropDownItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "DropDown", - "TypeName": "Radzen.Blazor.RadzenDropDown", - "Metadata": { - "Common.PropertyName": "DropDown", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "Item" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownItem", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 556089975, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenDropDownItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDownItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenDropDownItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "DropDown", - "TypeName": "Radzen.Blazor.RadzenDropDown", - "Metadata": { - "Common.PropertyName": "DropDown", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "Item" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownItem", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1199066509, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGrid", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenGrid component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterMode", - "TypeName": "Radzen.FilterMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "FilterMode" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandMode", - "TypeName": "Radzen.DataGridExpandMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "ExpandMode" - } - }, - { - "Kind": "Components.Component", - "Name": "EditMode", - "TypeName": "Radzen.DataGridEditMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "EditMode" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "AndOperatorText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "AndOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "OrOperatorText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "OrOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "ApplyFilterText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ApplyFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "ClearFilterText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ClearFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "EqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "EqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "NotEqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "NotEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "LessThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanOrEqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "LessThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "GreaterThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanOrEqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "GreaterThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "EndsWithText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "EndsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "ContainsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ContainsText" - } - }, - { - "Kind": "Components.Component", - "Name": "StartsWithText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "StartsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDateFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterDateFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnWidth", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ColumnWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "EmptyText" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "EmptyTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowSorting", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "AllowSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnResize", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "AllowColumnResize" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnResized", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Metadata": { - "Common.PropertyName": "ColumnResized", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "System.Action", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowSelect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDeselect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowDeselect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDoubleClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowDoubleClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowExpand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowExpand", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCollapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowCollapse", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowRender", - "TypeName": "System.Action>", - "Metadata": { - "Common.PropertyName": "RowRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CellRender", - "TypeName": "System.Action>", - "Metadata": { - "Common.PropertyName": "CellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Render", - "TypeName": "System.Action>", - "Metadata": { - "Common.PropertyName": "Render", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectionMode", - "TypeName": "Radzen.DataGridSelectionMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "SelectionMode" - } - }, - { - "Kind": "Components.Component", - "Name": "RowEdit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowEdit", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowUpdate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowUpdate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCreate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowCreate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGrid", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1912155206, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGrid", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenGrid component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterMode", - "TypeName": "Radzen.FilterMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "FilterMode" - } - }, - { - "Kind": "Components.Component", - "Name": "ExpandMode", - "TypeName": "Radzen.DataGridExpandMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "ExpandMode" - } - }, - { - "Kind": "Components.Component", - "Name": "EditMode", - "TypeName": "Radzen.DataGridEditMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "EditMode" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "AndOperatorText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "AndOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "OrOperatorText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "OrOperatorText" - } - }, - { - "Kind": "Components.Component", - "Name": "ApplyFilterText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ApplyFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "ClearFilterText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ClearFilterText" - } - }, - { - "Kind": "Components.Component", - "Name": "EqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "EqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "NotEqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "NotEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "LessThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "LessThanOrEqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "LessThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "GreaterThanText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreaterThanOrEqualsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "GreaterThanOrEqualsText" - } - }, - { - "Kind": "Components.Component", - "Name": "EndsWithText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "EndsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "ContainsText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ContainsText" - } - }, - { - "Kind": "Components.Component", - "Name": "StartsWithText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "StartsWithText" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterCaseSensitivity", - "TypeName": "Radzen.FilterCaseSensitivity", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "FilterCaseSensitivity" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDelay", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "FilterDelay" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterDateFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterDateFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnWidth", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ColumnWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "EmptyText" - } - }, - { - "Kind": "Components.Component", - "Name": "EmptyTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "EmptyTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowSorting", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "AllowSorting" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowFiltering", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "AllowFiltering" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowColumnResize", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "AllowColumnResize" - } - }, - { - "Kind": "Components.Component", - "Name": "ColumnResized", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Metadata": { - "Common.PropertyName": "ColumnResized", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "System.Action", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowSelect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowSelect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDeselect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowDeselect", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowDoubleClick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowDoubleClick", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowExpand", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowExpand", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCollapse", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowCollapse", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowRender", - "TypeName": "System.Action>", - "Metadata": { - "Common.PropertyName": "RowRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CellRender", - "TypeName": "System.Action>", - "Metadata": { - "Common.PropertyName": "CellRender", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Render", - "TypeName": "System.Action>", - "Metadata": { - "Common.PropertyName": "Render", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Columns", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "Columns", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Responsive", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Responsive" - } - }, - { - "Kind": "Components.Component", - "Name": "SelectionMode", - "TypeName": "Radzen.DataGridSelectionMode", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "SelectionMode" - } - }, - { - "Kind": "Components.Component", - "Name": "RowEdit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowEdit", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowUpdate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowUpdate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "RowCreate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "RowCreate", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerPosition", - "TypeName": "Radzen.PagerPosition", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the pager position. Set to PagerPosition.Bottom by default.\n \n The pager position.\n ", - "Metadata": { - "Common.PropertyName": "PagerPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerAlwaysVisible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether pager is visible even when not enough data for paging.\n \n true if pager is visible even when not enough data for paging otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "PagerAlwaysVisible" - } - }, - { - "Kind": "Components.Component", - "Name": "PagerHorizontalAlign", - "TypeName": "Radzen.HorizontalAlign", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the horizontal align.\n \n The horizontal align.\n ", - "Metadata": { - "Common.PropertyName": "PagerHorizontalAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "AllowPaging", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether paging is allowed. Set to false by default.\n \n true if paging is allowed; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "AllowPaging" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSize", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the size of the page.\n \n The size of the page.\n ", - "Metadata": { - "Common.PropertyName": "PageSize" - } - }, - { - "Kind": "Components.Component", - "Name": "PageNumbersCount", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the page numbers count.\n \n The page numbers count.\n ", - "Metadata": { - "Common.PropertyName": "PageNumbersCount" - } - }, - { - "Kind": "Components.Component", - "Name": "Count", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the count.\n \n The count.\n ", - "Metadata": { - "Common.PropertyName": "Count" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the data.\n \n The data.\n ", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeOptions", - "TypeName": "System.Collections.Generic.IEnumerable", - "Documentation": "\n \n Gets or sets the page size options.\n \n The page size options.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeOptions" - } - }, - { - "Kind": "Components.Component", - "Name": "PageSizeText", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the page size description text.\n \n The page size description text.\n ", - "Metadata": { - "Common.PropertyName": "PageSizeText" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowPagingSummary", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets the pager summary visibility.\n \n The pager summary visibility.\n ", - "Metadata": { - "Common.PropertyName": "ShowPagingSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "PagingSummaryFormat", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the pager summary format.\n \n The pager summary format.\n ", - "Metadata": { - "Common.PropertyName": "PagingSummaryFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "LoadData", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the load data.\n \n The load data.\n ", - "Metadata": { - "Common.PropertyName": "LoadData", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Page", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n Gets or sets the page callback.\n \n The page callback.\n ", - "Metadata": { - "Common.PropertyName": "Page", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGrid", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2069215240, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGrid.EmptyTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EmptyTemplate", - "ParentTag": "RadzenGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGrid.EmptyTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1780465358, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGrid.EmptyTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EmptyTemplate", - "ParentTag": "Radzen.Blazor.RadzenGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGrid.EmptyTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1411015287, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGrid.Columns", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "RadzenGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGrid.Columns", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -176142100, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGrid.Columns", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Columns", - "ParentTag": "Radzen.Blazor.RadzenGrid" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGrid.Columns", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -268090149, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGrid.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGrid.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1524411909, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGrid.Template", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the template.\n \n The template.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenGrid" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGrid.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2010506442, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGridCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenGridCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "TItem", - "Metadata": { - "Common.PropertyName": "Item", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridCell", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 34263842, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridCell", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGridCell" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenGridCell component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "TItem", - "Metadata": { - "Common.PropertyName": "Item", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Grid", - "TypeName": "Radzen.Blazor.RadzenGrid", - "Metadata": { - "Common.PropertyName": "Grid", - "Components.GenericTyped": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridCell", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1352405630, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridCell.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenGridCell" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridCell.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1323870227, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridCell.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenGridCell" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridCell.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1727444714, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridColumn", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenGridColumn component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Property", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Property" - } - }, - { - "Kind": "Components.Component", - "Name": "SortProperty", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "SortProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterProperty", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterValue", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "FilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterValue", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "SecondFilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterOperator", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "SecondFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "Format", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Format" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "HeaderCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Filterable", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Filterable" - } - }, - { - "Kind": "Components.Component", - "Name": "Sortable", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Sortable" - } - }, - { - "Kind": "Components.Component", - "Name": "Bubble", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Bubble" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "TextAlign", - "TypeName": "Radzen.TextAlign", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "TextAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "EditTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>", - "Metadata": { - "Common.PropertyName": "FilterTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -1280411260, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridColumn", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.RadzenGridColumn component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Property", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Property" - } - }, - { - "Kind": "Components.Component", - "Name": "SortProperty", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "SortProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterProperty", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterProperty" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterValue", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "FilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterValue", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "SecondFilterValue" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterOperator", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "SecondFilterOperator", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "SecondFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "LogicalFilterOperator", - "TypeName": "Radzen.LogicalFilterOperator", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LogicalFilterOperator" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "Format", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Format" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderCssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "HeaderCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterCssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FooterCssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "Filterable", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Filterable" - } - }, - { - "Kind": "Components.Component", - "Name": "Sortable", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Sortable" - } - }, - { - "Kind": "Components.Component", - "Name": "Bubble", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Bubble" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Visible" - } - }, - { - "Kind": "Components.Component", - "Name": "TextAlign", - "TypeName": "Radzen.TextAlign", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "TextAlign" - } - }, - { - "Kind": "Components.Component", - "Name": "Template", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "Template", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "EditTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "EditTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "HeaderTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "HeaderTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FooterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "FooterTemplate", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FilterTemplate", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>", - "Metadata": { - "Common.PropertyName": "FilterTemplate", - "Components.ChildContent": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1413744512, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.Template", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.Template", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1360909480, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.Template", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Template", - "ParentTag": "Radzen.Blazor.RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'Template' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.Template", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -491769669, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.EditTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditTemplate", - "ParentTag": "RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'EditTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.EditTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 388257567, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.EditTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditTemplate", - "ParentTag": "Radzen.Blazor.RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'EditTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.EditTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1365917396, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "RadzenGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1343831871, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.HeaderTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "HeaderTemplate", - "ParentTag": "Radzen.Blazor.RadzenGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.HeaderTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1025961045, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "RadzenGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1429169062, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.FooterTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FooterTemplate", - "ParentTag": "Radzen.Blazor.RadzenGridColumn" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.FooterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -670389928, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.FilterTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FilterTemplate", - "ParentTag": "RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'FilterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.FilterTemplate", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -408925445, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridColumn.FilterTemplate", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FilterTemplate", - "ParentTag": "Radzen.Blazor.RadzenGridColumn" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'FilterTemplate' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridColumn.FilterTemplate", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1989589076, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGridRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "InEditMode", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "InEditMode" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridRow" - } - }, - { - "HashCode": 1276221117, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenGridRow", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGridRow" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "CssClass", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "CssClass" - } - }, - { - "Kind": "Components.Component", - "Name": "InEditMode", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "InEditMode" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenGridRow", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1073444608, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridRow.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenGridRow" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridRow.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1695260919, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenGridRow.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenGridRow" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenGridRow.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2063477104, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenListBoxItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenListBoxItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenListBoxItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ListBox", - "TypeName": "Radzen.Blazor.RadzenListBox", - "Metadata": { - "Common.PropertyName": "ListBox", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "Item" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenListBoxItem", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": 109145135, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenListBoxItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenListBoxItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TValue for the Radzen.Blazor.RadzenListBoxItem component.", - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "ListBox", - "TypeName": "Radzen.Blazor.RadzenListBox", - "Metadata": { - "Common.PropertyName": "ListBox", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Item", - "TypeName": "System.Object", - "Metadata": { - "Common.PropertyName": "Item" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenListBoxItem", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -621168510, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNotification", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenNotification" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNotification" - } - }, - { - "HashCode": -1027161633, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNotification", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenNotification" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNotification", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -680859362, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNotificationMessage", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenNotificationMessage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Message", - "TypeName": "Radzen.NotificationMessage", - "Metadata": { - "Common.PropertyName": "Message" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNotificationMessage" - } - }, - { - "HashCode": 273344973, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenNotificationMessage", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenNotificationMessage" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Message", - "TypeName": "Radzen.NotificationMessage", - "Metadata": { - "Common.PropertyName": "Message" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenNotificationMessage", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1000727844, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGauge", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRadialGauge" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGauge" - } - }, - { - "HashCode": -2023702363, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenRadialGauge", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRadialGauge" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGauge", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1092298988, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadialGauge.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenRadialGauge" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGauge.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -1302075934, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenRadialGauge.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenRadialGauge" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenRadialGauge.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1717299916, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTooltip", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTooltip" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTooltip" - } - }, - { - "HashCode": -124793504, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenTooltip", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTooltip" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenTooltip", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1838864757, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenUploadHeader", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenUploadHeader" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenUploadHeader" - } - }, - { - "HashCode": -732909163, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenUploadHeader", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenUploadHeader" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Name" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenUploadHeader", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1118076636, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenValueAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenValueAxis" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke (line color) of the axis.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the pixel width of axis.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string used to display the axis values.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets a formatter function that formats the axis values.\n \n The formatter.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to display the axis.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "TickDistance", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the pixel distance between axis ticks. It is used to calculate the number of visible ticks depending on the available space. Set to 100 by default;\n Setting will override this value.\n \n The desired pixel distance between ticks.\n ", - "Metadata": { - "Common.PropertyName": "TickDistance" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the minimum value of the axis.\n \n The minimum.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the maximum value of the axis.\n \n The maximum.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the step of the axis.\n \n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenValueAxis" - } - }, - { - "HashCode": 645982633, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.RadzenValueAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenValueAxis" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the stroke (line color) of the axis.\n \n The stroke.\n ", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Documentation": "\n \n Gets or sets the pixel width of axis.\n \n The width of the stroke.\n ", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the format string used to display the axis values.\n \n The format string.\n ", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Documentation": "\n \n Gets or sets a formatter function that formats the axis values.\n \n The formatter.\n ", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Documentation": "\n \n Gets or sets the type of the line used to display the axis.\n \n The type of the line.\n ", - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "TickDistance", - "TypeName": "System.Int32", - "Documentation": "\n \n Gets or sets the pixel distance between axis ticks. It is used to calculate the number of visible ticks depending on the available space. Set to 100 by default;\n Setting will override this value.\n \n The desired pixel distance between ticks.\n ", - "Metadata": { - "Common.PropertyName": "TickDistance" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the minimum value of the axis.\n \n The minimum.\n ", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the maximum value of the axis.\n \n The maximum.\n ", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Object", - "Documentation": "\n \n Specifies the step of the axis.\n \n ", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.RadzenValueAxis", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1530574113, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenValueAxis.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "RadzenValueAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenValueAxis.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -267376915, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.RadzenValueAxis.ChildContent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "\n \n Gets or sets the child content.\n \n The child content.\n ", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.RadzenValueAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.RadzenValueAxis.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1950937885, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Appointment", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Appointment" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Top", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Top" - } - }, - { - "Kind": "Components.Component", - "Name": "Left", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Left" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Height", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Height" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "Radzen.Blazor.AppointmentData", - "Metadata": { - "Common.PropertyName": "Data" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Appointment" - } - }, - { - "HashCode": 201297696, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Appointment", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Appointment" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Top", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Top" - } - }, - { - "Kind": "Components.Component", - "Name": "Left", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Left" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Height", - "TypeName": "System.Double?", - "Metadata": { - "Common.PropertyName": "Height" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "Radzen.Blazor.AppointmentData", - "Metadata": { - "Common.PropertyName": "Data" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Appointment", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2342286, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.CategoryAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "CategoryAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxis" - } - }, - { - "HashCode": 1485914592, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.CategoryAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.CategoryAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxis", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1556918127, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.CategoryAxisTick", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "CategoryAxisTick" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxisTick" - } - }, - { - "HashCode": 1244362285, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.CategoryAxisTick", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.CategoryAxisTick" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxisTick", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 98154849, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.CategoryAxisTick.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "CategoryAxisTick" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxisTick.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 967239920, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.CategoryAxisTick.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.CategoryAxisTick" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxisTick.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -207469872, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.CategoryAxisTitle", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "CategoryAxisTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxisTitle" - } - }, - { - "HashCode": 755864088, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.CategoryAxisTitle", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.CategoryAxisTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.CategoryAxisTitle", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 57583070, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ChartTooltip", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChartTooltip" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Label", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Label" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ChartTooltip" - } - }, - { - "HashCode": 995740835, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ChartTooltip", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.ChartTooltip" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Label", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Label" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ChartTooltip", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -350997963, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.ChartTooltip.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "ChartTooltip" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.ChartTooltip.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 1255764681, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.ChartTooltip.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.ChartTooltip" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.ChartTooltip.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -927618502, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ClipPath", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ClipPath" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ClipPath" - } - }, - { - "HashCode": -1889498501, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ClipPath", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.ClipPath" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ClipPath", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -714677087, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.DaySlotEvents", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DaySlotEvents" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IList", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.DaySlotEvents" - } - }, - { - "HashCode": -1121812170, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.DaySlotEvents", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.DaySlotEvents" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IList", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.DaySlotEvents", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 496199829, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.DayView", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DayView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IList", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.DayView" - } - }, - { - "HashCode": 697761670, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.DayView", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.DayView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IList", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.DayView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1640022806, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.DialogContainer", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DialogContainer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Dialog", - "TypeName": "Radzen.Dialog", - "Metadata": { - "Common.PropertyName": "Dialog" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.DialogContainer" - } - }, - { - "HashCode": -1392396334, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.DialogContainer", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.DialogContainer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Dialog", - "TypeName": "Radzen.Dialog", - "Metadata": { - "Common.PropertyName": "Dialog" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.DialogContainer", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -579214155, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Draggable", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Draggable" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DragStart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "DragStart", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DragEnd", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "DragEnd", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Drag", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Drag", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Draggable" - } - }, - { - "HashCode": 527078932, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Draggable", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Draggable" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DragStart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "DragStart", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "DragEnd", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "DragEnd", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Drag", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Drag", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Draggable", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 196160750, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.Draggable.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Draggable" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.Draggable.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 67589206, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.Draggable.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.Draggable" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.Draggable.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -682829595, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorButton", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditorButton" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorButton" - } - }, - { - "HashCode": -157049136, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorButton", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.EditorButton" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Disabled", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Disabled" - } - }, - { - "Kind": "Components.Component", - "Name": "Selected", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "Selected" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorButton", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 226645156, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorColorPicker", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditorColorPicker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorColorPicker" - } - }, - { - "HashCode": -136747831, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorColorPicker", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.EditorColorPicker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "Icon", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Icon" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowHSV", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowHSV" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowRGBA", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowRGBA" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowColors", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowColors" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowButton", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowButton" - } - }, - { - "Kind": "Components.Component", - "Name": "HexText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "HexText" - } - }, - { - "Kind": "Components.Component", - "Name": "RedText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "RedText" - } - }, - { - "Kind": "Components.Component", - "Name": "GreenText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "GreenText" - } - }, - { - "Kind": "Components.Component", - "Name": "BlueText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "BlueText" - } - }, - { - "Kind": "Components.Component", - "Name": "AlphaText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "AlphaText" - } - }, - { - "Kind": "Components.Component", - "Name": "ButtonText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "ButtonText" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorColorPicker", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1091398318, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.EditorColorPicker.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "EditorColorPicker" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorColorPicker.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 203043678, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.EditorColorPicker.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.EditorColorPicker" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorColorPicker.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 205611217, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorDropDown", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditorDropDown" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PopupStyle", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "PopupStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDown" - } - }, - { - "HashCode": 33862398, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorDropDown", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.EditorDropDown" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Title", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Title" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "PopupStyle", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "PopupStyle" - } - }, - { - "Kind": "Components.Component", - "Name": "Placeholder", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Placeholder" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Change", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Change", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDown", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 554190651, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.EditorDropDown.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "EditorDropDown" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDown.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 625222004, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.EditorDropDown.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.EditorDropDown" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDown.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1506338170, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorDropDownItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditorDropDownItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDownItem" - } - }, - { - "HashCode": 780980004, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.EditorDropDownItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.EditorDropDownItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IDictionary", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for all child content expressions.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDownItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1644585453, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.EditorDropDownItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "EditorDropDownItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDownItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 767673407, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.EditorDropDownItem.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.EditorDropDownItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDownItem.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -589319977, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.GaugeBand", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GaugeBand" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "From", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "From" - } - }, - { - "Kind": "Components.Component", - "Name": "To", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "To" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Size" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.GaugeBand" - } - }, - { - "HashCode": -2126368184, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.GaugeBand", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.GaugeBand" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "From", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "From" - } - }, - { - "Kind": "Components.Component", - "Name": "To", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "To" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Size" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.GaugeBand", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 965648862, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.GaugePointer", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GaugePointer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Length", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Length" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.GaugePointer" - } - }, - { - "HashCode": 1880589121, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.GaugePointer", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.GaugePointer" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "Width", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Width" - } - }, - { - "Kind": "Components.Component", - "Name": "Length", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Length" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.GaugePointer", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 948411487, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.GaugeScale", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "GaugeScale" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLength", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "TickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorTickLength", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "MinorTickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLabelOffset", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "TickLabelOffset" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowFirstTick", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowFirstTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowLastTick", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowLastTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTickLabels", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowTickLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "TickPosition", - "TypeName": "Radzen.Blazor.GaugeTickPosition", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "TickPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorStep", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "MinorStep" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.GaugeScale" - } - }, - { - "HashCode": 1580063433, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.GaugeScale", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.GaugeScale" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StartAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLength", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "TickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorTickLength", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "MinorTickLength" - } - }, - { - "Kind": "Components.Component", - "Name": "TickLabelOffset", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "TickLabelOffset" - } - }, - { - "Kind": "Components.Component", - "Name": "EndAngle", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "EndAngle" - } - }, - { - "Kind": "Components.Component", - "Name": "Radius", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Radius" - } - }, - { - "Kind": "Components.Component", - "Name": "Center", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Center" - } - }, - { - "Kind": "Components.Component", - "Name": "Min", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Min" - } - }, - { - "Kind": "Components.Component", - "Name": "Max", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Max" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowFirstTick", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowFirstTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowLastTick", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowLastTick" - } - }, - { - "Kind": "Components.Component", - "Name": "ShowTickLabels", - "TypeName": "System.Boolean", - "Metadata": { - "Common.PropertyName": "ShowTickLabels" - } - }, - { - "Kind": "Components.Component", - "Name": "TickPosition", - "TypeName": "Radzen.Blazor.GaugeTickPosition", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "TickPosition" - } - }, - { - "Kind": "Components.Component", - "Name": "FormatString", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "FormatString" - } - }, - { - "Kind": "Components.Component", - "Name": "Formatter", - "TypeName": "System.Func", - "Metadata": { - "Common.PropertyName": "Formatter", - "Components.DelegateSignature": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Step", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Step" - } - }, - { - "Kind": "Components.Component", - "Name": "MinorStep", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "MinorStep" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.GaugeScale", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1414687052, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Hours", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Hours" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Start", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "Start" - } - }, - { - "Kind": "Components.Component", - "Name": "End", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "End" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Hours" - } - }, - { - "HashCode": -529439174, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Hours", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Hours" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Start", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "Start" - } - }, - { - "Kind": "Components.Component", - "Name": "End", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "End" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Hours", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1430317508, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Legend", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Legend" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Legend" - } - }, - { - "HashCode": -414817290, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Legend", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Legend" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Legend", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -491706912, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.LegendItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "LegendItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Color", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Color" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerType", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "MarkerType" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerSize", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "MarkerSize" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Index", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "Index" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.LegendItem" - } - }, - { - "HashCode": -611225156, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.LegendItem", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.LegendItem" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Color", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Color" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerType", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "MarkerType" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerSize", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "MarkerSize" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Index", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "Index" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.LegendItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 208818746, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Line", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Line" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "X1", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X1" - } - }, - { - "Kind": "Components.Component", - "Name": "X2", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X2" - } - }, - { - "Kind": "Components.Component", - "Name": "Y1", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y1" - } - }, - { - "Kind": "Components.Component", - "Name": "Y2", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y2" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Line" - } - }, - { - "HashCode": 1641195205, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Line", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Line" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "X1", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X1" - } - }, - { - "Kind": "Components.Component", - "Name": "X2", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X2" - } - }, - { - "Kind": "Components.Component", - "Name": "Y1", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y1" - } - }, - { - "Kind": "Components.Component", - "Name": "Y2", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y2" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Line", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1147710124, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Marker", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Marker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Marker" - } - }, - { - "HashCode": -114127488, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Marker", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Marker" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Type", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "Type" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Size" - } - }, - { - "Kind": "Components.Component", - "Name": "Click", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Click", - "Components.EventCallback": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Marker", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1853884866, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Markers", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Markers" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.Rendering.Markers component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Category", - "TypeName": "System.Func", - "Metadata": { - "Common.PropertyName": "Category", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Func", - "Metadata": { - "Common.PropertyName": "Value", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerType", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "MarkerType" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Size" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Markers", - "Components.GenericTyped": "True" - } - }, - { - "HashCode": -735252991, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Markers", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Markers" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TItem", - "TypeName": "System.Type", - "Documentation": "Specifies the type of the type parameter TItem for the Radzen.Blazor.Rendering.Markers component.", - "Metadata": { - "Common.PropertyName": "TItem", - "Components.TypeParameter": "True", - "Components.TypeParameterIsCascading": "False" - } - }, - { - "Kind": "Components.Component", - "Name": "Data", - "TypeName": "System.Collections.Generic.IEnumerable", - "Metadata": { - "Common.PropertyName": "Data", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Category", - "TypeName": "System.Func", - "Metadata": { - "Common.PropertyName": "Category", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Func", - "Metadata": { - "Common.PropertyName": "Value", - "Components.DelegateSignature": "True", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MarkerType", - "TypeName": "Radzen.Blazor.MarkerType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "MarkerType" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "Size", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Size" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Markers", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -962991803, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.MonthView", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "MonthView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxAppointmentsInSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MaxAppointmentsInSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "MoreText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "MoreText" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IEnumerable", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.MonthView" - } - }, - { - "HashCode": 29409187, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.MonthView", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.MonthView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "MaxAppointmentsInSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MaxAppointmentsInSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "MoreText", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "MoreText" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IEnumerable", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.MonthView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1282652348, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Path", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Path" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "D", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "D" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Path" - } - }, - { - "HashCode": 437599487, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Path", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Path" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "D", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "D" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "Fill", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Fill" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Path", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 991036948, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Popup", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Popup" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Open", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Open", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Close", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Close", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Popup" - } - }, - { - "HashCode": 141423605, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Popup", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Popup" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Open", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Open", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Close", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Metadata": { - "Common.PropertyName": "Close", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Attributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "Documentation": "\n \n Specifies additional custom attributes that will be rendered by the component.\n \n The attributes.\n ", - "Metadata": { - "Common.PropertyName": "Attributes" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseEnter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user hovers the component. Commonly used to display a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseEnter", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "MouseLeave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user moves the mouse out of the component. Commonly used to hide a tooltip via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "MouseLeave", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "ContextMenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "\n \n A callback that will be invoked when the user right-clicks the component. Commonly used to display a context menu via \n .\n \n ", - "Metadata": { - "Common.PropertyName": "ContextMenu", - "Components.EventCallback": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "\n \n Gets or sets the culture used to display localizable data (numbers, dates). Set by default to .\n \n ", - "Metadata": { - "Common.PropertyName": "Culture" - } - }, - { - "Kind": "Components.Component", - "Name": "Style", - "TypeName": "System.String", - "Documentation": "\n \n Gets or sets the inline CSS style.\n \n The style.\n ", - "Metadata": { - "Common.PropertyName": "Style" - } - }, - { - "Kind": "Components.Component", - "Name": "Visible", - "TypeName": "System.Boolean", - "Documentation": "\n \n Gets or sets a value indicating whether this is visible. Invisible components are not rendered.\n \n true if visible; otherwise, false.\n ", - "Metadata": { - "Common.PropertyName": "Visible" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Popup", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -2006071298, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.Popup.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Popup" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.Popup.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 306483230, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.Popup.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.Popup" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.Popup.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -993646029, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Text", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Text" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Position", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Position" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Text" - } - }, - { - "HashCode": 111271055, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Text", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Text" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Class", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Class" - } - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Value" - } - }, - { - "Kind": "Components.Component", - "Name": "Position", - "TypeName": "Radzen.Blazor.Point", - "Metadata": { - "Common.PropertyName": "Position" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Text", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -560289767, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Tick", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Tick" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Tick" - } - }, - { - "HashCode": 287437928, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.Tick", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.Tick" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.Tick", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1227168185, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.Tick.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Tick" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.Tick.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": 275711480, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.Tick.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.Tick" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.Tick.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 707447766, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ValueAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValueAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxis" - } - }, - { - "HashCode": 1220235360, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ValueAxis", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.ValueAxis" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxis", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1932347841, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ValueAxisTick", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValueAxisTick" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxisTick" - } - }, - { - "HashCode": 1514457610, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ValueAxisTick", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.ValueAxisTick" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Stroke", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Stroke" - } - }, - { - "Kind": "Components.Component", - "Name": "StrokeWidth", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "StrokeWidth" - } - }, - { - "Kind": "Components.Component", - "Name": "LineType", - "TypeName": "Radzen.Blazor.LineType", - "IsEnum": true, - "Metadata": { - "Common.PropertyName": "LineType" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxisTick", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1231470498, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.ValueAxisTick.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "ValueAxisTick" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxisTick.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "HashCode": -458545198, - "Kind": "Components.ChildContent", - "Name": "Radzen.Blazor.Rendering.ValueAxisTick.ChildContent", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Radzen.Blazor.Rendering.ValueAxisTick" - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxisTick.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -907770391, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ValueAxisTitle", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValueAxisTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxisTitle" - } - }, - { - "HashCode": 350437044, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.ValueAxisTitle", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.ValueAxisTitle" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "X", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "X" - } - }, - { - "Kind": "Components.Component", - "Name": "Y", - "TypeName": "System.Double", - "Metadata": { - "Common.PropertyName": "Y" - } - }, - { - "Kind": "Components.Component", - "Name": "Text", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "Text" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.ValueAxisTitle", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1409763793, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.WeekView", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "WeekView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IList", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.WeekView" - } - }, - { - "HashCode": 2051304544, - "Kind": "Components.Component", - "Name": "Radzen.Blazor.Rendering.WeekView", - "AssemblyName": "Radzen.Blazor", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.WeekView" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "StartDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "StartDate" - } - }, - { - "Kind": "Components.Component", - "Name": "EndDate", - "TypeName": "System.DateTime", - "Metadata": { - "Common.PropertyName": "EndDate" - } - }, - { - "Kind": "Components.Component", - "Name": "StartTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "StartTime" - } - }, - { - "Kind": "Components.Component", - "Name": "EndTime", - "TypeName": "System.TimeSpan", - "Metadata": { - "Common.PropertyName": "EndTime" - } - }, - { - "Kind": "Components.Component", - "Name": "TimeFormat", - "TypeName": "System.String", - "Metadata": { - "Common.PropertyName": "TimeFormat" - } - }, - { - "Kind": "Components.Component", - "Name": "MinutesPerSlot", - "TypeName": "System.Int32", - "Metadata": { - "Common.PropertyName": "MinutesPerSlot" - } - }, - { - "Kind": "Components.Component", - "Name": "Appointments", - "TypeName": "System.Collections.Generic.IList", - "Metadata": { - "Common.PropertyName": "Appointments" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Radzen.Blazor.Rendering.WeekView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -95648522, - "Kind": "Components.Component", - "Name": "SqliteWasmHelper.BackupLink", - "AssemblyName": "SqliteWasmHelper", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "BackupLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "DbContextType", - "TypeName": "System.Type", - "Metadata": { - "Common.PropertyName": "DbContextType" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "SqliteWasmHelper.BackupLink" - } - }, - { - "HashCode": 1092489635, - "Kind": "Components.Component", - "Name": "SqliteWasmHelper.BackupLink", - "AssemblyName": "SqliteWasmHelper", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "SqliteWasmHelper.BackupLink" - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "DbContextType", - "TypeName": "System.Type", - "Metadata": { - "Common.PropertyName": "DbContextType" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "SqliteWasmHelper.BackupLink", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1395891595, - "Kind": "Components.Component", - "Name": "SqliteWasmHelper._Imports", - "AssemblyName": "SqliteWasmHelper", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "_Imports" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "SqliteWasmHelper._Imports" - } - }, - { - "HashCode": -987118014, - "Kind": "Components.Component", - "Name": "SqliteWasmHelper._Imports", - "AssemblyName": "SqliteWasmHelper", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "SqliteWasmHelper._Imports" - } - ], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "SqliteWasmHelper._Imports", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1455458786, - "Kind": "Components.EventHandler", - "Name": "onfocus", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocus", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocus:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocus:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfocus", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfocus" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocus' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onfocus' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1219671159, - "Kind": "Components.EventHandler", - "Name": "onblur", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onblur", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onblur:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onblur:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onblur", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onblur" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onblur' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onblur' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1897957429, - "Kind": "Components.EventHandler", - "Name": "onfocusin", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocusin", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocusin:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocusin:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfocusin", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfocusin" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusin' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onfocusin' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1105024584, - "Kind": "Components.EventHandler", - "Name": "onfocusout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocusout", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocusout:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfocusout:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfocusout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfocusout" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onfocusout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 144773042, - "Kind": "Components.EventHandler", - "Name": "onmouseover", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseover", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseover:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseover:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseover", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseover" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseover' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseover' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 232256089, - "Kind": "Components.EventHandler", - "Name": "onmouseout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseout", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseout:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseout:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseout" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -2136013936, - "Kind": "Components.EventHandler", - "Name": "onmousemove", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousemove", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousemove:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousemove:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmousemove", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmousemove" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousemove' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmousemove' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -645926154, - "Kind": "Components.EventHandler", - "Name": "onmousedown", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousedown", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousedown:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousedown:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmousedown", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmousedown" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousedown' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmousedown' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -924363582, - "Kind": "Components.EventHandler", - "Name": "onmouseup", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseup", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseup:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseup:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseup", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseup" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseup' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseup' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1352353494, - "Kind": "Components.EventHandler", - "Name": "onclick", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onclick", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onclick:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onclick:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onclick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onclick" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onclick' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onclick' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1286136701, - "Kind": "Components.EventHandler", - "Name": "ondblclick", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondblclick", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondblclick:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondblclick:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondblclick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondblclick" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondblclick' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondblclick' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1704687914, - "Kind": "Components.EventHandler", - "Name": "onwheel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onwheel", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onwheel:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onwheel:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onwheel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onwheel" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwheel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onwheel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1151067226, - "Kind": "Components.EventHandler", - "Name": "onmousewheel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousewheel", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousewheel:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmousewheel:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmousewheel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmousewheel" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousewheel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmousewheel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -893040186, - "Kind": "Components.EventHandler", - "Name": "oncontextmenu", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncontextmenu", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncontextmenu:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncontextmenu:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncontextmenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncontextmenu" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncontextmenu' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oncontextmenu' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -647949697, - "Kind": "Components.EventHandler", - "Name": "ondrag", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondrag", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondrag:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondrag:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondrag", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondrag" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrag' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondrag' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 487104583, - "Kind": "Components.EventHandler", - "Name": "ondragend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragend", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragend:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragend:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragend" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -220400603, - "Kind": "Components.EventHandler", - "Name": "ondragenter", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragenter", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragenter:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragenter:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragenter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragenter" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragenter' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragenter' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1736805982, - "Kind": "Components.EventHandler", - "Name": "ondragleave", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragleave", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragleave:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragleave:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragleave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragleave" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragleave' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragleave' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 789953174, - "Kind": "Components.EventHandler", - "Name": "ondragover", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragover", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragover:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragover:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragover", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragover" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragover' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragover' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 2138233427, - "Kind": "Components.EventHandler", - "Name": "ondragstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragstart", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragstart:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondragstart:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragstart" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondragstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 687536228, - "Kind": "Components.EventHandler", - "Name": "ondrop", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondrop", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondrop:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondrop:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondrop", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondrop" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrop' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondrop' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 931158270, - "Kind": "Components.EventHandler", - "Name": "onkeydown", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeydown", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeydown:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeydown:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onkeydown", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onkeydown" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeydown' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onkeydown' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1628266960, - "Kind": "Components.EventHandler", - "Name": "onkeyup", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeyup", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeyup:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeyup:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onkeyup", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onkeyup" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeyup' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onkeyup' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1485912477, - "Kind": "Components.EventHandler", - "Name": "onkeypress", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeypress", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeypress:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onkeypress:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onkeypress", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onkeypress" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeypress' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onkeypress' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -111881939, - "Kind": "Components.EventHandler", - "Name": "onchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onchange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onchange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onchange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onchange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1404811942, - "Kind": "Components.EventHandler", - "Name": "oninput", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oninput", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oninput:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oninput:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oninput", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oninput" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninput' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oninput' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1854526549, - "Kind": "Components.EventHandler", - "Name": "oninvalid", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oninvalid", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oninvalid:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oninvalid:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oninvalid", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oninvalid" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninvalid' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oninvalid' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -550581929, - "Kind": "Components.EventHandler", - "Name": "onreset", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onreset", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onreset:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onreset:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onreset", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onreset" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreset' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onreset' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1004422511, - "Kind": "Components.EventHandler", - "Name": "onselect", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselect", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselect:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselect:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onselect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onselect" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselect' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onselect' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -2131390833, - "Kind": "Components.EventHandler", - "Name": "onselectstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselectstart", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselectstart:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselectstart:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onselectstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onselectstart" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onselectstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 975788213, - "Kind": "Components.EventHandler", - "Name": "onselectionchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselectionchange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselectionchange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onselectionchange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onselectionchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onselectionchange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectionchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onselectionchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1399186206, - "Kind": "Components.EventHandler", - "Name": "onsubmit", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onsubmit", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onsubmit:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onsubmit:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onsubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onsubmit" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsubmit' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onsubmit' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1542816632, - "Kind": "Components.EventHandler", - "Name": "onbeforecopy", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforecopy", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforecopy:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforecopy:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforecopy", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforecopy" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecopy' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecopy' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 627419292, - "Kind": "Components.EventHandler", - "Name": "onbeforecut", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforecut", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforecut:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforecut:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforecut", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforecut" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecut' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecut' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -834717405, - "Kind": "Components.EventHandler", - "Name": "onbeforepaste", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforepaste", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforepaste:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforepaste:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforepaste", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforepaste" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforepaste' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforepaste' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1612486350, - "Kind": "Components.EventHandler", - "Name": "oncopy", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncopy", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncopy:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncopy:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncopy", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncopy" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncopy' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oncopy' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -76234498, - "Kind": "Components.EventHandler", - "Name": "oncut", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncut", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncut:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncut:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncut", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncut" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncut' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oncut' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 974993167, - "Kind": "Components.EventHandler", - "Name": "onpaste", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpaste", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpaste:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpaste:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpaste", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpaste" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpaste' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpaste' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1828344384, - "Kind": "Components.EventHandler", - "Name": "ontouchcancel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchcancel", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchcancel:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchcancel:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchcancel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchcancel" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchcancel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchcancel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1983294622, - "Kind": "Components.EventHandler", - "Name": "ontouchend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchend", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchend:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchend:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchend" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 88501343, - "Kind": "Components.EventHandler", - "Name": "ontouchmove", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchmove", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchmove:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchmove:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchmove", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchmove" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchmove' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchmove' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1282226222, - "Kind": "Components.EventHandler", - "Name": "ontouchstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchstart", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchstart:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchstart:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchstart" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1178587775, - "Kind": "Components.EventHandler", - "Name": "ontouchenter", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchenter", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchenter:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchenter:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchenter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchenter" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchenter' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchenter' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 27509116, - "Kind": "Components.EventHandler", - "Name": "ontouchleave", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchleave", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchleave:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontouchleave:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchleave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchleave" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchleave' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchleave' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -314628499, - "Kind": "Components.EventHandler", - "Name": "ongotpointercapture", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ongotpointercapture", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ongotpointercapture:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ongotpointercapture:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ongotpointercapture", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ongotpointercapture" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ongotpointercapture' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ongotpointercapture' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1958635349, - "Kind": "Components.EventHandler", - "Name": "onlostpointercapture", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onlostpointercapture", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onlostpointercapture:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onlostpointercapture:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onlostpointercapture", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onlostpointercapture" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onlostpointercapture' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onlostpointercapture' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 253605707, - "Kind": "Components.EventHandler", - "Name": "onpointercancel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointercancel", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointercancel:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointercancel:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointercancel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointercancel" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointercancel' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointercancel' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1201190938, - "Kind": "Components.EventHandler", - "Name": "onpointerdown", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerdown", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerdown:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerdown:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerdown", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerdown" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerdown' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerdown' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -216342770, - "Kind": "Components.EventHandler", - "Name": "onpointerenter", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerenter", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerenter:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerenter:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerenter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerenter" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerenter' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerenter' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -885206806, - "Kind": "Components.EventHandler", - "Name": "onpointerleave", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerleave", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerleave:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerleave:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerleave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerleave" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerleave' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerleave' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1253825365, - "Kind": "Components.EventHandler", - "Name": "onpointermove", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointermove", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointermove:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointermove:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointermove", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointermove" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointermove' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointermove' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1015676737, - "Kind": "Components.EventHandler", - "Name": "onpointerout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerout", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerout:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerout:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerout" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 776887055, - "Kind": "Components.EventHandler", - "Name": "onpointerover", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerover", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerover:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerover:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerover", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerover" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerover' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerover' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1205839630, - "Kind": "Components.EventHandler", - "Name": "onpointerup", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerup", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerup:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerup:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerup", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerup" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerup' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerup' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -92313849, - "Kind": "Components.EventHandler", - "Name": "oncanplay", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncanplay", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncanplay:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncanplay:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncanplay", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncanplay" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplay' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oncanplay' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 230418742, - "Kind": "Components.EventHandler", - "Name": "oncanplaythrough", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncanplaythrough", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncanplaythrough:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncanplaythrough:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncanplaythrough", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncanplaythrough" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplaythrough' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oncanplaythrough' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -624291239, - "Kind": "Components.EventHandler", - "Name": "oncuechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncuechange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncuechange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@oncuechange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncuechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncuechange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncuechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@oncuechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1743702958, - "Kind": "Components.EventHandler", - "Name": "ondurationchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondurationchange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondurationchange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondurationchange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondurationchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondurationchange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondurationchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondurationchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -270228433, - "Kind": "Components.EventHandler", - "Name": "onemptied", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onemptied", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onemptied:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onemptied:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onemptied", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onemptied" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onemptied' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onemptied' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 278720586, - "Kind": "Components.EventHandler", - "Name": "onpause", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpause", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpause:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpause:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpause", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpause" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpause' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpause' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 2092562487, - "Kind": "Components.EventHandler", - "Name": "onplay", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onplay", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onplay:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onplay:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onplay", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onplay" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplay' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onplay' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1959126320, - "Kind": "Components.EventHandler", - "Name": "onplaying", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onplaying", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onplaying:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onplaying:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onplaying", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onplaying" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplaying' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onplaying' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 291175453, - "Kind": "Components.EventHandler", - "Name": "onratechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onratechange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onratechange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onratechange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onratechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onratechange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onratechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onratechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1064138054, - "Kind": "Components.EventHandler", - "Name": "onseeked", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onseeked", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onseeked:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onseeked:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onseeked", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onseeked" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeked' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onseeked' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -620385784, - "Kind": "Components.EventHandler", - "Name": "onseeking", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onseeking", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onseeking:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onseeking:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onseeking", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onseeking" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeking' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onseeking' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -2057545467, - "Kind": "Components.EventHandler", - "Name": "onstalled", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onstalled", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onstalled:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onstalled:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onstalled", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onstalled" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstalled' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onstalled' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -265956090, - "Kind": "Components.EventHandler", - "Name": "onstop", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onstop", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onstop:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onstop:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onstop", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onstop" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstop' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onstop' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -126992563, - "Kind": "Components.EventHandler", - "Name": "onsuspend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onsuspend", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onsuspend:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onsuspend:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onsuspend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onsuspend" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsuspend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onsuspend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1024427634, - "Kind": "Components.EventHandler", - "Name": "ontimeupdate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontimeupdate", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontimeupdate:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontimeupdate:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontimeupdate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontimeupdate" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeupdate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontimeupdate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -789450281, - "Kind": "Components.EventHandler", - "Name": "onvolumechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onvolumechange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onvolumechange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onvolumechange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onvolumechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onvolumechange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onvolumechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onvolumechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1881557604, - "Kind": "Components.EventHandler", - "Name": "onwaiting", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onwaiting", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onwaiting:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onwaiting:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onwaiting", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onwaiting" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwaiting' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onwaiting' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 436901285, - "Kind": "Components.EventHandler", - "Name": "onloadstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadstart", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadstart:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadstart:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadstart" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadstart' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadstart' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -550113822, - "Kind": "Components.EventHandler", - "Name": "ontimeout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontimeout", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontimeout:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontimeout:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontimeout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontimeout" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeout' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontimeout' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1293624112, - "Kind": "Components.EventHandler", - "Name": "onabort", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onabort", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onabort:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onabort:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onabort", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onabort" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onabort' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onabort' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 2062677949, - "Kind": "Components.EventHandler", - "Name": "onload", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onload", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onload:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onload:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onload", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onload" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onload' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onload' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 512232319, - "Kind": "Components.EventHandler", - "Name": "onloadend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadend", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadend:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadend:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadend" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadend' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadend' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1312758626, - "Kind": "Components.EventHandler", - "Name": "onprogress", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onprogress", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onprogress:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onprogress:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onprogress", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onprogress" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onprogress' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onprogress' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 780448549, - "Kind": "Components.EventHandler", - "Name": "onerror", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onerror", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onerror:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onerror:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onerror", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onerror" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onerror' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onerror' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ErrorEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1637700696, - "Kind": "Components.EventHandler", - "Name": "onactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onactivate", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onactivate:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onactivate:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onactivate" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 911151184, - "Kind": "Components.EventHandler", - "Name": "onbeforeactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforeactivate", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforeactivate:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforeactivate:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforeactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforeactivate" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforeactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforeactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -416220658, - "Kind": "Components.EventHandler", - "Name": "onbeforedeactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforedeactivate", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforedeactivate:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onbeforedeactivate:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforedeactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforedeactivate" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforedeactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforedeactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 869411420, - "Kind": "Components.EventHandler", - "Name": "ondeactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondeactivate", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondeactivate:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ondeactivate:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondeactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondeactivate" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondeactivate' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ondeactivate' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 563502130, - "Kind": "Components.EventHandler", - "Name": "onended", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onended", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onended:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onended:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onended", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onended" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onended' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onended' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1469830991, - "Kind": "Components.EventHandler", - "Name": "onfullscreenchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfullscreenchange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfullscreenchange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfullscreenchange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfullscreenchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfullscreenchange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -1458933722, - "Kind": "Components.EventHandler", - "Name": "onfullscreenerror", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfullscreenerror", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfullscreenerror:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onfullscreenerror:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfullscreenerror", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfullscreenerror" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenerror' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenerror' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -445532064, - "Kind": "Components.EventHandler", - "Name": "onloadeddata", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadeddata", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadeddata:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadeddata:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadeddata", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadeddata" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadeddata' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadeddata' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 1594651464, - "Kind": "Components.EventHandler", - "Name": "onloadedmetadata", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadedmetadata", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadedmetadata:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onloadedmetadata:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadedmetadata", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadedmetadata" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadedmetadata' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onloadedmetadata' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 483344873, - "Kind": "Components.EventHandler", - "Name": "onpointerlockchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerlockchange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerlockchange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerlockchange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerlockchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerlockchange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockchange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockchange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -529187560, - "Kind": "Components.EventHandler", - "Name": "onpointerlockerror", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerlockerror", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerlockerror:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onpointerlockerror:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerlockerror", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerlockerror" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockerror' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockerror' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": -700644812, - "Kind": "Components.EventHandler", - "Name": "onreadystatechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onreadystatechange", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onreadystatechange:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onreadystatechange:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onreadystatechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onreadystatechange" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreadystatechange' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onreadystatechange' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 187450178, - "Kind": "Components.EventHandler", - "Name": "onscroll", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onscroll", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onscroll:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onscroll:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onscroll", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onscroll" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onscroll' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onscroll' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 376412505, - "Kind": "Components.EventHandler", - "Name": "ontoggle", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontoggle' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontoggle", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontoggle:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ontoggle:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontoggle", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@ontoggle' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontoggle" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontoggle' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@ontoggle' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "HashCode": 596403723, - "Kind": "Components.EventHandler", - "Name": "onmouseenter", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseenter' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseenter", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseenter:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseenter:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseenter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmouseenter' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseenter" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseenter' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseenter' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Radzen.EventHandlers" - } - }, - { - "HashCode": 594935331, - "Kind": "Components.EventHandler", - "Name": "onmouseleave", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseleave' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseleave", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseleave:preventDefault", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - }, - { - "TagName": "*", - "Attributes": [ - { - "Name": "@onmouseleave:stopPropagation", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseleave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Sets the '@onmouseleave' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseleave" - }, - "BoundAttributeParameters": [ - { - "Name": "preventDefault", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseleave' event.", - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseleave' event in the capturing and bubbling phases.", - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Radzen.EventHandlers" - } - }, - { - "HashCode": 647124010, - "Kind": "Components.Splat", - "Name": "Attributes", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Merges a collection of attributes into the current element or component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@attributes", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Splat", - "Name": "@attributes", - "TypeName": "System.Object", - "Documentation": "Merges a collection of attributes into the current element or component.", - "Metadata": { - "Common.PropertyName": "Attributes", - "Common.DirectiveAttribute": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Splat", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Attributes" - } - }, - { - "HashCode": -171839904, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@bind-", - "NameComparison": 1, - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-...", - "TypeName": "System.Collections.Generic.Dictionary", - "IndexerNamePrefix": "@bind-", - "IndexerTypeName": "System.Object", - "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute.", - "Metadata": { - "Common.PropertyName": "Event" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.Fallback": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Bind" - } - }, - { - "HashCode": 1556219031, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": -320775153, - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "@bind-value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 813261350, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "checkbox", - "ValueComparison": 1 - }, - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_checked" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_checked" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-checked", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_checked" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "checked", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "checkbox", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 1116212483, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "text", - "ValueComparison": 1 - }, - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "text", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 2062022685, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "number", - "ValueComparison": 1 - }, - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "number", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 361547141, - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "number", - "ValueComparison": 1 - }, - { - "Name": "@bind-value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "number", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": -692971520, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "date", - "ValueComparison": 1 - }, - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-dd", - "Components.Bind.TypeAttribute": "date", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 1955262561, - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "date", - "ValueComparison": 1 - }, - { - "Name": "@bind-value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-dd", - "Components.Bind.TypeAttribute": "date", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 143572276, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "datetime-local", - "ValueComparison": 1 - }, - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", - "Components.Bind.TypeAttribute": "datetime-local", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 1374269653, - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "datetime-local", - "ValueComparison": 1 - }, - { - "Name": "@bind-value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", - "Components.Bind.TypeAttribute": "datetime-local", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": -866282786, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "month", - "ValueComparison": 1 - }, - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM", - "Components.Bind.TypeAttribute": "month", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": -2114664683, - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "month", - "ValueComparison": 1 - }, - { - "Name": "@bind-value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM", - "Components.Bind.TypeAttribute": "month", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": -220970568, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "time", - "ValueComparison": 1 - }, - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "HH:mm:ss", - "Components.Bind.TypeAttribute": "time", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": -91175305, - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "Attributes": [ - { - "Name": "type", - "Value": "time", - "ValueComparison": 1 - }, - { - "Name": "@bind-value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "HH:mm:ss", - "Components.Bind.TypeAttribute": "time", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 240592955, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "select", - "Attributes": [ - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": 2080411166, - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "textarea", - "Attributes": [ - { - "Name": "@bind", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Name": "format", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Name": "event", - "TypeName": "System.String", - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "Documentation": "Specifies the culture to use for conversions.", - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Metadata": { - "Common.PropertyName": "Format_value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "HashCode": -1693952621, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputCheckbox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" - } - }, - { - "HashCode": 478468030, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1790051922, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputDate", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate" - } - }, - { - "HashCode": -1793245286, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 768284713, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputNumber", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber" - } - }, - { - "HashCode": -521901218, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 342258539, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputRadioGroup", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" - } - }, - { - "HashCode": 637865609, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1597614192, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputSelect", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect" - } - }, - { - "HashCode": -1639394413, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1054247231, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputText", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" - } - }, - { - "HashCode": 1448409877, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputText", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 969514852, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputTextArea", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" - } - }, - { - "HashCode": 114297805, - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1975613231, - "Kind": "Components.Bind", - "Name": "Radzen.DataBoundFormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DataBoundFormComponent", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.DataBoundFormComponent" - } - }, - { - "HashCode": -1346037626, - "Kind": "Components.Bind", - "Name": "Radzen.DataBoundFormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.DataBoundFormComponent", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.DataBoundFormComponent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1784647165, - "Kind": "Components.Bind", - "Name": "Radzen.DropDownBase", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DropDownBase", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.DropDownBase" - } - }, - { - "HashCode": -30221281, - "Kind": "Components.Bind", - "Name": "Radzen.DropDownBase", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DropDownBase", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.DropDownBase" - } - }, - { - "HashCode": -2131613683, - "Kind": "Components.Bind", - "Name": "Radzen.DropDownBase", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.DropDownBase", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.DropDownBase", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2561778, - "Kind": "Components.Bind", - "Name": "Radzen.DropDownBase", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.DropDownBase", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.DropDownBase", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 892821957, - "Kind": "Components.Bind", - "Name": "Radzen.FormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "FormComponent", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.FormComponent" - } - }, - { - "HashCode": 806931042, - "Kind": "Components.Bind", - "Name": "Radzen.FormComponent", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.FormComponent", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.FormComponent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1227037355, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenAutoComplete", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenAutoComplete", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenAutoComplete" - } - }, - { - "HashCode": 296434210, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenAutoComplete", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenAutoComplete", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenAutoComplete", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1628672424, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenBody", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenBody", - "Attributes": [ - { - "Name": "@bind-Expanded", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Expanded", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Expanded" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Expanded", - "Components.Bind.ChangeAttribute": "ExpandedChanged", - "Common.TypeName": "Radzen.Blazor.RadzenBody" - } - }, - { - "HashCode": -1657356883, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenBody", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenBody", - "Attributes": [ - { - "Name": "@bind-Expanded", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Expanded", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Expanded" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Expanded", - "Components.Bind.ChangeAttribute": "ExpandedChanged", - "Common.TypeName": "Radzen.Blazor.RadzenBody", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -798530109, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenCheckBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCheckBox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBox" - } - }, - { - "HashCode": -1707488605, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenCheckBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCheckBox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1512759499, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenCheckBoxList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenCheckBoxList", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxList" - } - }, - { - "HashCode": -1527867281, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenCheckBoxList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenCheckBoxList", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenCheckBoxList", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1544096527, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenColorPicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenColorPicker", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenColorPicker" - } - }, - { - "HashCode": 1196589982, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenColorPicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenColorPicker", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenColorPicker", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 184134036, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDataGrid", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid" - } - }, - { - "HashCode": 1277038644, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDataGrid", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenDataGrid", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1214531846, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDatePicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDatePicker", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenDatePicker" - } - }, - { - "HashCode": 1923488012, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDatePicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDatePicker", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenDatePicker", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1411403618, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDown", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown" - } - }, - { - "HashCode": 1768823680, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDown", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown" - } - }, - { - "HashCode": -555620097, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDown", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1564123124, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDown", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenDropDown", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -190196952, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDownDataGrid", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid" - } - }, - { - "HashCode": -808661487, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenDropDownDataGrid", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid" - } - }, - { - "HashCode": -970109632, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDownDataGrid", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1540765434, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenDropDownDataGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenDropDownDataGrid", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenDropDownDataGrid", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1663010727, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenFileInput", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenFileInput", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenFileInput" - } - }, - { - "HashCode": 1476058466, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenFileInput", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenFileInput", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenFileInput", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 711778360, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenHtmlEditor", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenHtmlEditor", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditor" - } - }, - { - "HashCode": -1890152776, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenHtmlEditor", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenHtmlEditor", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenHtmlEditor", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1741221175, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenListBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenListBox", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.Blazor.RadzenListBox" - } - }, - { - "HashCode": -1300993173, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenListBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenListBox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenListBox" - } - }, - { - "HashCode": 800784777, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenListBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenListBox", - "Attributes": [ - { - "Name": "@bind-SelectedItem", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedItem", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'SelectedItem' property and a change event delegate to the 'SelectedItemChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedItem" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedItem", - "Components.Bind.ChangeAttribute": "SelectedItemChanged", - "Common.TypeName": "Radzen.Blazor.RadzenListBox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 255503479, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenListBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenListBox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenListBox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1847636900, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenMask", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenMask", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenMask" - } - }, - { - "HashCode": -1732313021, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenMask", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenMask", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenMask", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 279017784, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenNumeric", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenNumeric", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenNumeric" - } - }, - { - "HashCode": -1484679280, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenNumeric", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenNumeric", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenNumeric", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -697711356, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenPager", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'PageSize' property and a change event delegate to the 'PageSizeChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPager", - "Attributes": [ - { - "Name": "@bind-PageSize", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-PageSize", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'PageSize' property and a change event delegate to the 'PageSizeChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "PageSize" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "PageSize", - "Components.Bind.ChangeAttribute": "PageSizeChanged", - "Common.TypeName": "Radzen.Blazor.RadzenPager" - } - }, - { - "HashCode": -121025608, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenPager", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'PageSize' property and a change event delegate to the 'PageSizeChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPager", - "Attributes": [ - { - "Name": "@bind-PageSize", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-PageSize", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'PageSize' property and a change event delegate to the 'PageSizeChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "PageSize" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "PageSize", - "Components.Bind.ChangeAttribute": "PageSizeChanged", - "Common.TypeName": "Radzen.Blazor.RadzenPager", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1310476740, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenPanelMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPanelMenuItem", - "Attributes": [ - { - "Name": "@bind-Expanded", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Expanded", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Expanded" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Expanded", - "Components.Bind.ChangeAttribute": "ExpandedChanged", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem" - } - }, - { - "HashCode": -943286445, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenPanelMenuItem", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPanelMenuItem", - "Attributes": [ - { - "Name": "@bind-Expanded", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Expanded", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Expanded" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Expanded", - "Components.Bind.ChangeAttribute": "ExpandedChanged", - "Common.TypeName": "Radzen.Blazor.RadzenPanelMenuItem", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -368994767, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenPassword", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenPassword", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenPassword" - } - }, - { - "HashCode": -1357071936, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenPassword", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenPassword", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenPassword", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -566678110, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenProgressBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenProgressBar", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenProgressBar" - } - }, - { - "HashCode": 776610056, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenProgressBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenProgressBar", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenProgressBar", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2045226895, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenRadioButtonList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRadioButtonList", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonList" - } - }, - { - "HashCode": 286954268, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenRadioButtonList", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRadioButtonList", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenRadioButtonList", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 906833446, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenRating", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenRating", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenRating" - } - }, - { - "HashCode": -2079423023, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenRating", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenRating", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenRating", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 112436089, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSelectBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSelectBar", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBar" - } - }, - { - "HashCode": 6983996, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSelectBar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSelectBar", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenSelectBar", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 282842901, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSidebar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSidebar", - "Attributes": [ - { - "Name": "@bind-Expanded", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Expanded", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Expanded" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Expanded", - "Components.Bind.ChangeAttribute": "ExpandedChanged", - "Common.TypeName": "Radzen.Blazor.RadzenSidebar" - } - }, - { - "HashCode": 1115474284, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSidebar", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSidebar", - "Attributes": [ - { - "Name": "@bind-Expanded", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Expanded", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Expanded' property and a change event delegate to the 'ExpandedChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Expanded" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Expanded", - "Components.Bind.ChangeAttribute": "ExpandedChanged", - "Common.TypeName": "Radzen.Blazor.RadzenSidebar", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 1767527349, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSlider", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSlider", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenSlider" - } - }, - { - "HashCode": -1142796847, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSlider", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSlider", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenSlider", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 2067899857, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSteps", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSteps", - "Attributes": [ - { - "Name": "@bind-SelectedIndex", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedIndex", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedIndex" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedIndex", - "Components.Bind.ChangeAttribute": "SelectedIndexChanged", - "Common.TypeName": "Radzen.Blazor.RadzenSteps" - } - }, - { - "HashCode": -203059295, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSteps", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSteps", - "Attributes": [ - { - "Name": "@bind-SelectedIndex", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedIndex", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedIndex" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedIndex", - "Components.Bind.ChangeAttribute": "SelectedIndexChanged", - "Common.TypeName": "Radzen.Blazor.RadzenSteps", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 154383670, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSwitch", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenSwitch", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenSwitch" - } - }, - { - "HashCode": -466825267, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenSwitch", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenSwitch", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenSwitch", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -279008120, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTabs", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTabs", - "Attributes": [ - { - "Name": "@bind-SelectedIndex", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedIndex", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedIndex" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedIndex", - "Components.Bind.ChangeAttribute": "SelectedIndexChanged", - "Common.TypeName": "Radzen.Blazor.RadzenTabs" - } - }, - { - "HashCode": -738678183, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTabs", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTabs", - "Attributes": [ - { - "Name": "@bind-SelectedIndex", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-SelectedIndex", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'SelectedIndex' property and a change event delegate to the 'SelectedIndexChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "SelectedIndex" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "SelectedIndex", - "Components.Bind.ChangeAttribute": "SelectedIndexChanged", - "Common.TypeName": "Radzen.Blazor.RadzenTabs", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 477056022, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTextArea", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTextArea", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenTextArea" - } - }, - { - "HashCode": -1708477511, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTextArea", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTextArea", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenTextArea", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 42996629, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTextBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTextBox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenTextBox" - } - }, - { - "HashCode": 1203863416, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTextBox", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTextBox", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Radzen.Blazor.RadzenTextBox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -1390754459, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTree", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTree", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenTree" - } - }, - { - "HashCode": 756933113, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTree", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'CheckedValues' property and a change event delegate to the 'CheckedValuesChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenTree", - "Attributes": [ - { - "Name": "@bind-CheckedValues", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-CheckedValues", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "Binds the provided expression to the 'CheckedValues' property and a change event delegate to the 'CheckedValuesChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "CheckedValues" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "CheckedValues", - "Components.Bind.ChangeAttribute": "CheckedValuesChanged", - "Common.TypeName": "Radzen.Blazor.RadzenTree" - } - }, - { - "HashCode": -441700207, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTree", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTree", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenTree", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -128314005, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenTree", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'CheckedValues' property and a change event delegate to the 'CheckedValuesChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenTree", - "Attributes": [ - { - "Name": "@bind-CheckedValues", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-CheckedValues", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback>", - "Documentation": "Binds the provided expression to the 'CheckedValues' property and a change event delegate to the 'CheckedValuesChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "CheckedValues" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "CheckedValues", - "Components.Bind.ChangeAttribute": "CheckedValuesChanged", - "Common.TypeName": "Radzen.Blazor.RadzenTree", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 519789348, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RadzenGrid", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenGrid" - } - }, - { - "HashCode": -1048907945, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.RadzenGrid", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.RadzenGrid", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "System.Action", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.RadzenGrid", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": -260662357, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.Rendering.EditorColorPicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditorColorPicker", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorColorPicker" - } - }, - { - "HashCode": -2074481716, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.Rendering.EditorColorPicker", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.EditorColorPicker", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorColorPicker", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 345207297, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.Rendering.EditorDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditorDropDown", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDown" - } - }, - { - "HashCode": 759087591, - "Kind": "Components.Bind", - "Name": "Radzen.Blazor.Rendering.EditorDropDown", - "AssemblyName": "Radzen.Blazor", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Radzen.Blazor.Rendering.EditorDropDown", - "Attributes": [ - { - "Name": "@bind-Value", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Common.TypeName": "Radzen.Blazor.Rendering.EditorDropDown", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "HashCode": 187676159, - "Kind": "Components.Ref", - "Name": "Ref", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Populates the specified field or property with a reference to the element or component.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@ref", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Ref", - "Name": "@ref", - "TypeName": "System.Object", - "Documentation": "Populates the specified field or property with a reference to the element or component.", - "Metadata": { - "Common.PropertyName": "Ref", - "Common.DirectiveAttribute": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Ref", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Ref" - } - }, - { - "HashCode": 725478467, - "Kind": "Components.Key", - "Name": "Key", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "Attributes": [ - { - "Name": "@key", - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Key", - "Name": "@key", - "TypeName": "System.Object", - "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", - "Metadata": { - "Common.PropertyName": "Key", - "Common.DirectiveAttribute": "True" - } - } - ], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Key", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Key" - } - } - ], - "CSharpLanguageVersion": 1000 - }, - "RootNamespace": "Account_SQLite", - "Documents": [ - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/App.razor", - "TargetPath": "App.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Shared/NavMenu.razor", - "TargetPath": "Shared\\NavMenu.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/_Layout.razor", - "TargetPath": "Pages\\_Layout.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/_Host.razor", - "TargetPath": "Pages\\_Host.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Shared/MainLayout.razor", - "TargetPath": "Shared\\MainLayout.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/Index.razor", - "TargetPath": "Pages\\Index.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/_Imports.razor", - "TargetPath": "_Imports.razor", - "FileKind": "componentImport" - } - ], - "SerializationFormat": "0.2" -} \ No newline at end of file diff --git a/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite 2.dll b/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite 2.dll deleted file mode 100644 index 7e077e02..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite 2.dll and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite.dll b/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite.dll deleted file mode 100644 index 0375d1d8..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite.dll and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/refint/Account_SQLite.dll b/Account_SQLite/obj/Debug/net6.0/refint/Account_SQLite.dll deleted file mode 100644 index 0375d1d8..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/refint/Account_SQLite.dll and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css b/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css deleted file mode 100644 index 3f6f5ad9..00000000 --- a/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css +++ /dev/null @@ -1,81 +0,0 @@ -.page[b-jn0vslp9lp] { - position: relative; - display: flex; - flex-direction: column; -} - -main[b-jn0vslp9lp] { - flex: 1; -} - -.sidebar[b-jn0vslp9lp] { - background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); -} - -.top-row[b-jn0vslp9lp] { - background-color: #f7f7f7; - border-bottom: 1px solid #d6d5d5; - justify-content: flex-end; - height: 3.5rem; - display: flex; - align-items: center; -} - - .top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link { - white-space: nowrap; - margin-left: 1.5rem; - text-decoration: none; - } - - .top-row[b-jn0vslp9lp] a:hover, .top-row[b-jn0vslp9lp] .btn-link:hover { - text-decoration: underline; - } - - .top-row[b-jn0vslp9lp] a:first-child { - overflow: hidden; - text-overflow: ellipsis; - } - -@media (max-width: 640.98px) { - .top-row:not(.auth)[b-jn0vslp9lp] { - display: none; - } - - .top-row.auth[b-jn0vslp9lp] { - justify-content: space-between; - } - - .top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link { - margin-left: 0; - } -} - -@media (min-width: 641px) { - .page[b-jn0vslp9lp] { - flex-direction: row; - } - - .sidebar[b-jn0vslp9lp] { - width: 250px; - height: 100vh; - position: sticky; - top: 0; - } - - .top-row[b-jn0vslp9lp] { - position: sticky; - top: 0; - z-index: 1; - } - - .top-row.auth[b-jn0vslp9lp] a:first-child { - flex: 1; - text-align: right; - width: 0; - } - - .top-row[b-jn0vslp9lp], article[b-jn0vslp9lp] { - padding-left: 2rem !important; - padding-right: 1.5rem !important; - } -} \ No newline at end of file diff --git a/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css b/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css deleted file mode 100644 index dc73fcd9..00000000 --- a/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css +++ /dev/null @@ -1,62 +0,0 @@ -.navbar-toggler[b-hruea6gb89] { - background-color: rgba(255, 255, 255, 0.1); -} - -.top-row[b-hruea6gb89] { - height: 3.5rem; - background-color: rgba(0,0,0,0.4); -} - -.navbar-brand[b-hruea6gb89] { - font-size: 1.1rem; -} - -.oi[b-hruea6gb89] { - width: 2rem; - font-size: 1.1rem; - vertical-align: text-top; - top: -2px; -} - -.nav-item[b-hruea6gb89] { - font-size: 0.9rem; - padding-bottom: 0.5rem; -} - - .nav-item:first-of-type[b-hruea6gb89] { - padding-top: 1rem; - } - - .nav-item:last-of-type[b-hruea6gb89] { - padding-bottom: 1rem; - } - - .nav-item[b-hruea6gb89] a { - color: #d7d7d7; - border-radius: 4px; - height: 3rem; - display: flex; - align-items: center; - line-height: 3rem; - } - -.nav-item[b-hruea6gb89] a.active { - background-color: rgba(255,255,255,0.25); - color: white; -} - -.nav-item[b-hruea6gb89] a:hover { - background-color: rgba(255,255,255,0.1); - color: white; -} - -@media (min-width: 641px) { - .navbar-toggler[b-hruea6gb89] { - display: none; - } - - .collapse[b-hruea6gb89] { - /* Never collapse the sidebar for wide screens */ - display: block; - } -} \ No newline at end of file diff --git a/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css b/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css deleted file mode 100644 index 973ef9de..00000000 --- a/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css +++ /dev/null @@ -1,145 +0,0 @@ -/* /Shared/MainLayout.razor.rz.scp.css */ -.page[b-jn0vslp9lp] { - position: relative; - display: flex; - flex-direction: column; -} - -main[b-jn0vslp9lp] { - flex: 1; -} - -.sidebar[b-jn0vslp9lp] { - background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); -} - -.top-row[b-jn0vslp9lp] { - background-color: #f7f7f7; - border-bottom: 1px solid #d6d5d5; - justify-content: flex-end; - height: 3.5rem; - display: flex; - align-items: center; -} - - .top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link { - white-space: nowrap; - margin-left: 1.5rem; - text-decoration: none; - } - - .top-row[b-jn0vslp9lp] a:hover, .top-row[b-jn0vslp9lp] .btn-link:hover { - text-decoration: underline; - } - - .top-row[b-jn0vslp9lp] a:first-child { - overflow: hidden; - text-overflow: ellipsis; - } - -@media (max-width: 640.98px) { - .top-row:not(.auth)[b-jn0vslp9lp] { - display: none; - } - - .top-row.auth[b-jn0vslp9lp] { - justify-content: space-between; - } - - .top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link { - margin-left: 0; - } -} - -@media (min-width: 641px) { - .page[b-jn0vslp9lp] { - flex-direction: row; - } - - .sidebar[b-jn0vslp9lp] { - width: 250px; - height: 100vh; - position: sticky; - top: 0; - } - - .top-row[b-jn0vslp9lp] { - position: sticky; - top: 0; - z-index: 1; - } - - .top-row.auth[b-jn0vslp9lp] a:first-child { - flex: 1; - text-align: right; - width: 0; - } - - .top-row[b-jn0vslp9lp], article[b-jn0vslp9lp] { - padding-left: 2rem !important; - padding-right: 1.5rem !important; - } -} -/* /Shared/NavMenu.razor.rz.scp.css */ -.navbar-toggler[b-hruea6gb89] { - background-color: rgba(255, 255, 255, 0.1); -} - -.top-row[b-hruea6gb89] { - height: 3.5rem; - background-color: rgba(0,0,0,0.4); -} - -.navbar-brand[b-hruea6gb89] { - font-size: 1.1rem; -} - -.oi[b-hruea6gb89] { - width: 2rem; - font-size: 1.1rem; - vertical-align: text-top; - top: -2px; -} - -.nav-item[b-hruea6gb89] { - font-size: 0.9rem; - padding-bottom: 0.5rem; -} - - .nav-item:first-of-type[b-hruea6gb89] { - padding-top: 1rem; - } - - .nav-item:last-of-type[b-hruea6gb89] { - padding-bottom: 1rem; - } - - .nav-item[b-hruea6gb89] a { - color: #d7d7d7; - border-radius: 4px; - height: 3rem; - display: flex; - align-items: center; - line-height: 3rem; - } - -.nav-item[b-hruea6gb89] a.active { - background-color: rgba(255,255,255,0.25); - color: white; -} - -.nav-item[b-hruea6gb89] a:hover { - background-color: rgba(255,255,255,0.1); - color: white; -} - -@media (min-width: 641px) { - .navbar-toggler[b-hruea6gb89] { - display: none; - } - - .collapse[b-hruea6gb89] { - /* Never collapse the sidebar for wide screens */ - display: block; - } -} diff --git a/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css b/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css deleted file mode 100644 index 973ef9de..00000000 --- a/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css +++ /dev/null @@ -1,145 +0,0 @@ -/* /Shared/MainLayout.razor.rz.scp.css */ -.page[b-jn0vslp9lp] { - position: relative; - display: flex; - flex-direction: column; -} - -main[b-jn0vslp9lp] { - flex: 1; -} - -.sidebar[b-jn0vslp9lp] { - background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); -} - -.top-row[b-jn0vslp9lp] { - background-color: #f7f7f7; - border-bottom: 1px solid #d6d5d5; - justify-content: flex-end; - height: 3.5rem; - display: flex; - align-items: center; -} - - .top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link { - white-space: nowrap; - margin-left: 1.5rem; - text-decoration: none; - } - - .top-row[b-jn0vslp9lp] a:hover, .top-row[b-jn0vslp9lp] .btn-link:hover { - text-decoration: underline; - } - - .top-row[b-jn0vslp9lp] a:first-child { - overflow: hidden; - text-overflow: ellipsis; - } - -@media (max-width: 640.98px) { - .top-row:not(.auth)[b-jn0vslp9lp] { - display: none; - } - - .top-row.auth[b-jn0vslp9lp] { - justify-content: space-between; - } - - .top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link { - margin-left: 0; - } -} - -@media (min-width: 641px) { - .page[b-jn0vslp9lp] { - flex-direction: row; - } - - .sidebar[b-jn0vslp9lp] { - width: 250px; - height: 100vh; - position: sticky; - top: 0; - } - - .top-row[b-jn0vslp9lp] { - position: sticky; - top: 0; - z-index: 1; - } - - .top-row.auth[b-jn0vslp9lp] a:first-child { - flex: 1; - text-align: right; - width: 0; - } - - .top-row[b-jn0vslp9lp], article[b-jn0vslp9lp] { - padding-left: 2rem !important; - padding-right: 1.5rem !important; - } -} -/* /Shared/NavMenu.razor.rz.scp.css */ -.navbar-toggler[b-hruea6gb89] { - background-color: rgba(255, 255, 255, 0.1); -} - -.top-row[b-hruea6gb89] { - height: 3.5rem; - background-color: rgba(0,0,0,0.4); -} - -.navbar-brand[b-hruea6gb89] { - font-size: 1.1rem; -} - -.oi[b-hruea6gb89] { - width: 2rem; - font-size: 1.1rem; - vertical-align: text-top; - top: -2px; -} - -.nav-item[b-hruea6gb89] { - font-size: 0.9rem; - padding-bottom: 0.5rem; -} - - .nav-item:first-of-type[b-hruea6gb89] { - padding-top: 1rem; - } - - .nav-item:last-of-type[b-hruea6gb89] { - padding-bottom: 1rem; - } - - .nav-item[b-hruea6gb89] a { - color: #d7d7d7; - border-radius: 4px; - height: 3rem; - display: flex; - align-items: center; - line-height: 3rem; - } - -.nav-item[b-hruea6gb89] a.active { - background-color: rgba(255,255,255,0.25); - color: white; -} - -.nav-item[b-hruea6gb89] a:hover { - background-color: rgba(255,255,255,0.1); - color: white; -} - -@media (min-width: 641px) { - .navbar-toggler[b-hruea6gb89] { - display: none; - } - - .collapse[b-hruea6gb89] { - /* Never collapse the sidebar for wide screens */ - display: block; - } -} diff --git a/Account_SQLite/obj/Debug/net6.0/staticwebassets.build.json b/Account_SQLite/obj/Debug/net6.0/staticwebassets.build.json deleted file mode 100644 index 1dc3f11f..00000000 --- a/Account_SQLite/obj/Debug/net6.0/staticwebassets.build.json +++ /dev/null @@ -1,8112 +0,0 @@ -{ - "Version": 1, - "Hash": "wDT+2JUeNUNQZuMPDjZ9f9ZpBUGiRcnaQ1hRcod2i2o=", - "Source": "Account_SQLite", - "BasePath": "/", - "Mode": "Root", - "ManifestType": "Build", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [ - { - "Name": "Account_SQLite/wwwroot", - "Source": "Account_SQLite", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "Pattern": "**" - } - ], - "Assets": [ - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/dark-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/dark-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/dark-base.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/dark.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/dark.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/dark.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/default-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/default-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/default-base.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/default.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/default.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/default.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/humanistic-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/humanistic-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/humanistic-base.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/humanistic.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/humanistic.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/humanistic.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/software-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/software-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/software-base.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/software.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/software.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/software.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/standard-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/standard-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/standard-base.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/standard.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/standard.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/css/standard.css" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/MaterialIcons-Regular.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/MaterialIcons-Regular.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/MaterialIcons-Regular.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/roboto-v15-latin-300.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/roboto-v15-latin-300.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/roboto-v15-latin-300.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/roboto-v15-latin-700.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/roboto-v15-latin-700.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/roboto-v15-latin-700.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/roboto-v15-latin-regular.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/roboto-v15-latin-regular.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/roboto-v15-latin-regular.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Black.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Black.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Black.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-BlackIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-BlackIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-BlackIt.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Bold.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Bold.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Bold.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-BoldIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-BoldIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-BoldIt.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-ExtraLight.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-ExtraLight.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-ExtraLight.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-ExtraLightIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-ExtraLightIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-ExtraLightIt.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-It.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-It.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-It.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Light.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Light.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Light.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-LightIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-LightIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-LightIt.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Regular.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Regular.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Regular.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Semibold.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Semibold.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-Semibold.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-SemiboldIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-SemiboldIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/fonts/SourceSansPro-SemiboldIt.woff" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/Radzen.Blazor.js", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "Radzen.Blazor.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/Radzen.Blazor.js" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/contentFiles/any/net6.0/wwwroot/browserCache.js", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "browserCache.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/contentFiles/any/net6.0/wwwroot/browserCache.js" - }, - { - "Identity": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/browserCache.js", - "SourceId": "SqliteWasmHelper", - "SourceType": "Package", - "ContentRoot": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/", - "BasePath": "_content/SqliteWasmHelper", - "RelativePath": "browserCache.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/browserCache.js" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Account_SQLite.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj/Debug/net6.0/Account_SQLite.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Account_SQLite.pdb", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "symbol", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj/Debug/net6.0/Account_SQLite.pdb" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/blazor.boot.json", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "manifest", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj/Debug/net6.0/blazor.boot.json" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "boot", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly/6.0.4/build/net6.0/blazor.webassembly.js" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/dotnet..0qqpqpio55.js", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "native", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.js" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/dotnet.timezones.blat", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "native", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/dotnet.timezones.blat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/dotnet.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "native", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.wasm" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/e_sqlite3.a", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836/runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "native", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/icudt_CJK.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "native", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/icudt_EFIGS.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "native", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/icudt_no_CJK.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt.dat", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "native", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/icudt.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.authorization/6.0.4/lib/net6.0/Microsoft.AspNetCore.Authorization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components/6.0.4/lib/net6.0/Microsoft.AspNetCore.Components.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.forms/6.0.4/lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.web/6.0.4/lib/net6.0/Microsoft.AspNetCore.Components.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly/6.0.4/lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.metadata/6.0.4/lib/net6.0/Microsoft.AspNetCore.Metadata.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/Microsoft.CSharp.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Data.Sqlite.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.data.sqlite.core/6.0.4/lib/net6.0/Microsoft.Data.Sqlite.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.Abstractions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.abstractions/6.0.4/lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore/6.0.4/lib/net6.0/Microsoft.EntityFrameworkCore.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.Relational.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.relational/6.0.4/lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.Sqlite.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.sqlite.core/6.0.4/lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Caching.Abstractions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Caching.Memory.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.caching.memory/6.0.1/lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyModel.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencymodel/6.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.1/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop/6.0.4/lib/net6.0/Microsoft.JSInterop.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop.webassembly/6.0.4/lib/net6.0/Microsoft.JSInterop.WebAssembly.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/Microsoft.VisualBasic.Core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/Microsoft.VisualBasic.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/Microsoft.Win32.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/Microsoft.Win32.Registry.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/mscorlib.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/mscorlib.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/netstandard.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/netstandard.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Radzen.Blazor.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/lib/net5.0/Radzen.Blazor.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLite.Net.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlite-helper/1.3.0/lib/netstandard1.4/SQLite.Net.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLitePCLRaw.batteries_v2.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.0-pre20220318192836/lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLitePCLRaw.core.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitepclraw.core/2.1.0-pre20220318192836/lib/netstandard2.0/SQLitePCLRaw.core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLitePCLRaw.provider.e_sqlite3.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.0-pre20220318192836/lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SqliteWasmHelper.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/lib/net6.0/SqliteWasmHelper.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.AppContext.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.AppContext.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Buffers.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Buffers.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Collections.Concurrent.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Collections.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Collections.Immutable.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Collections.NonGeneric.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Collections.Specialized.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.Annotations.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.DataAnnotations.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.EventBasedAsync.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.TypeConverter.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Configuration.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Configuration.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Console.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Console.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Core.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Data.Common.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Data.DataSetExtensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Data.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Data.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Contracts.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Debug.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.DiagnosticSource.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.FileVersionInfo.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Process.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.StackTrace.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.TextWriterTraceListener.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Tools.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.TraceSource.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Tracing.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Drawing.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Drawing.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Drawing.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Dynamic.Runtime.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Formats.Asn1.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Globalization.Calendars.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Globalization.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Globalization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Globalization.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.Brotli.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.FileSystem.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.ZipFile.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.AccessControl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.DriveInfo.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.Watcher.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.IsolatedStorage.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.MemoryMappedFiles.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/system.io.pipelines/6.0.2/lib/net6.0/System.IO.Pipelines.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.Pipes.AccessControl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.Pipes.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.IO.UnmanagedMemoryStream.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Linq.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Dynamic.Core.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/system.linq.dynamic.core/1.2.12/lib/net5.0/System.Linq.Dynamic.Core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Linq.Expressions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Linq.Parallel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Linq.Queryable.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Memory.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Memory.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Http.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Http.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.HttpListener.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Mail.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.NameResolution.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.NetworkInformation.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Ping.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Quic.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Requests.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Security.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.ServicePoint.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.Sockets.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.WebClient.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.WebHeaderCollection.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.WebProxy.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.WebSockets.Client.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Net.WebSockets.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Numerics.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Numerics.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Numerics.Vectors.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ObjectModel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/System.Private.CoreLib.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Private.DataContractSerialization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Private.Uri.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Private.Xml.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Private.Xml.Linq.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.DispatchProxy.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.Emit.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.Emit.ILGeneration.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.Emit.Lightweight.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.Metadata.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Reflection.TypeExtensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Resources.Reader.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Resources.ResourceManager.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Resources.Writer.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.CompilerServices.VisualC.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Handles.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.InteropServices.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Intrinsics.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Loader.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Numerics.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Formatters.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Xml.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.AccessControl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Claims.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Algorithms.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Cng.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Csp.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Encoding.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.OpenSsl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.X509Certificates.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Principal.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.Principal.Windows.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Security.SecureString.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ServiceModel.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ServiceProcess.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Text.Encoding.CodePages.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Text.Encoding.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Text.Encoding.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Text.Encodings.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Text.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Text.RegularExpressions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Channels.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Overlapped.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.Dataflow.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.Parallel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Thread.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.ThreadPool.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Threading.Timer.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Transactions.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Transactions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Transactions.Local.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.ValueTuple.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Web.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Web.HttpUtility.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Windows.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Windows.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.Linq.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.ReaderWriter.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.Serialization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.XDocument.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.XmlDocument.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.XmlSerializer.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.XPath.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/System.Xml.XPath.XDocument.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/WindowsBase.dll", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "BlazorWebAssemblyResource", - "AssetTraitValue": "runtime", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/lib/net6.0/WindowsBase.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+JTVyhb1.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+Kre5Tpp.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+LRe9Tns.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+QY0PBsI.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+sQ5oVnS.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/+tcLfj0H.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0FKjlXJj.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0fOL2sdj.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/mscorlib.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0Iwipr4w.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0JQ0c28H.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0K+LzERo.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0mHQ+lYF.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.AppContext.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/0QiSef+M.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1l00Hi2C.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1vm4IFaG.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1WRZXFTn.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/1YNe1gPB.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2BVSVm+S.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2ge50QZE.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Configuration.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2oVtJt50.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt.dat.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2pQ1JqsF.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2XfazusX.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/2zEZXe0u.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/4lUgkp+U.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/4xtw6LPe.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/56fZcRR8.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5dCjNJ5b.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/netstandard.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5EpkVPhj.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5eY4GF5U.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.Relational.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5HhZz3K9.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5JyieZfh.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Numerics.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/5pGaLGBy.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/68cJW34q.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6eQHB3+4.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6g5IwAqq.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6GAA+LDT.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6MQ1jJcK.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/6za3LhEM.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/7RG3PMhI.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/7Yzj389P.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/8bQLqeih.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Caching.Memory.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/8jbtvLI5.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/91cuMT+c.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/A3Z5u4ys.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/aeiE8f7u.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/AG+zWk8B.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/b4km8OTJ.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/bL03ttyK.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/BLUafUvS.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Memory.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/bQDTZzZq.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/bThRWctG.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/c0YuPbll.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/c1AOAAWG.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/c6j+Y26l.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CE3HGrFj.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CGeqtl+O.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CGGDUrLS.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Dynamic.Core.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Dynamic.Core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/CzDJaXvP.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/D30ARJVX.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/dbqFKMmc.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/de5KTgXZ.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/df1c6WT5.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/DMHJGpTb.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/e3fzYNFK.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/E4MUYSbj.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/E64FvjlP.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/eDjy34wv.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/evzhjbZl.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/eWVBG67y.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/EycU5AZA.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Data.Sqlite.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Data.Sqlite.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/EYygXBXV.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/f0Eijqws.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/f620GeOq.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/FEErnO+2.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/FH0Yj4k3.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/FOVtCNm+.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/fPziUjLD.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/G+v4Gqyr.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/g4IGgIl0.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/G6RHxxA7.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLitePCLRaw.batteries_v2.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.batteries_v2.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/GA6UnUSo.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/gGwx65ye.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Console.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/ghYVXx0t.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/GiLT6S0T.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Drawing.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/gTncO+bt.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/gY7C+Pj0.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLitePCLRaw.core.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/h5nmla+E.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/hApAU2Ux.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/HH+np8ru.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/hsVedUCV.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Globalization.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Ht1gJnwo.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/HUmGKp8o.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Hx9AKOya.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/i9ugRC3H.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/dotnet.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/IIwZRqn8.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/IM4GHJDx.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/IRFTg+Zn.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/iSH8aA68.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/j++BdFv1.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/J4UVuU3X.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JB+CJuXL.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/dotnet..0qqpqpio55.js.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet..0qqpqpio55.js" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/jBbmVu0Y.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/jbYvZPux.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JBZLbhsR.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/jfMvQQ6O.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JjqaMvBJ.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.Sqlite.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JWwzygqN.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/JY9yV2o0.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/k+baeXzX.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/k2roKodh.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KfqDX+eU.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/kjMKg2YM.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/kpwabJeh.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KvLNa2Bc.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KWzBYWxz.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/kx7B1ihF.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/KXXhXkbu.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Data.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/l6oXNOY5.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/l6xNnSyK.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/LAErubWT.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/lf6EacQh.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Buffers.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/lJfRzgHZ.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/lKnsk7jv.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/LTEuWA3z.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/m1I7g+si.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/M6gJA7L2.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Transactions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/MG+l9gKt.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/mKCm41GD.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/MuWbHBuW.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/mYkuZEdi.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Windows.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/NksrmDDk.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/NSKpvYGD.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/NtPMok5n.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/O0n+vaCx.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/o7uAv0wC.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OcErHWFw.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/od2uW63o.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OHcrvftp.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OhuJiVbC.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OkhxxYtB.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OlSr4V7c.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/OYiTuEMW.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/p+xdbHnC.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Radzen.Blazor.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Radzen.Blazor.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/P9V4P+3u.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/peDw+Yy9.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Pf+Dj+oK.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/PPCPRXaZ.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/pWIEjruq.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.Abstractions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/PzgkgiCU.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/q+C86qWT.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/qHHiOcs6.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/QIoil28w.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/qKorz+QM.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/dotnet.timezones.blat.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Qv3EwTy+.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/RiHs74k4.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/rIzXv3eE.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/S4jcrGte.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Account_SQLite.pdb.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.pdb" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/ScGxZLHc.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/e_sqlite3.a.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/e_sqlite3.a" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/sh794WsF.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Sl0g++2k.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/sOFvdHMh.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/spxJVBGU.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Ss96Cozm.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/T6EYjrM3.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/TFiMoj8S.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tgrMqSNc.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tGWz2oWJ.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tLnY+z2a.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tmzMw3td.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyModel.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyModel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tNIMt8TM.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/ttWvaRvQ.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Core.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/tYeVKjgS.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/U1GjwWQV.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UDNB8RFz.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UgfmWOey.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UjjnPjhC.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Account_SQLite.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Account_SQLite.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UjV8g6Wb.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Uz49Tq2y.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/UZuk9v7S.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VBHSFBan.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VeOJi+Gj.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLitePCLRaw.provider.e_sqlite3.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VEpmbc+j.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vgE+rhU1.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vI1ipYqb.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SQLite.Net.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SQLite.Net.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VijnN3m+.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vpDjtL+6.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Collections.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VQvPAk3v.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vrvJMn09.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/SqliteWasmHelper.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/SqliteWasmHelper.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/VUurIt2N.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.EntityFrameworkCore.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.EntityFrameworkCore.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/vWSmlNx5.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/W0iuVMXb.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Linq.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/WcHq51f8.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/wFpQ4XsM.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Wq3tHjrU.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/wrRolEjk.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/wRuJDVjF.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/WZrCPLxf.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/x3WDy8sM.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/x3ZTCwCx.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/xdpXJry5.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/WindowsBase.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/XeLPKmXp.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/xFv7r9Ii.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/xmiwABxn.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Y4R2M7vg.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Y5yjli0O.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Y6HQNyKj.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yeh6ldoC.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yjo6GPoA.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/YLu1GWJ8.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/YMLNoDcs.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Web.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yMqHz40p.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/YOMdCEDS.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/yTICDYKU.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/build-gz/Zr4es2Pl.gz", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/", - "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/", - "BasePath": "/", - "RelativePath": "Account_SQLite.styles.css", - "AssetKind": "All", - "AssetMode": "CurrentProject", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "ScopedCss", - "AssetTraitValue": "ApplicationBundle", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css", - "SourceId": "Account_SQLite", - "SourceType": "Computed", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/", - "BasePath": "/", - "RelativePath": "Account_SQLite.bundle.scp.css", - "AssetKind": "All", - "AssetMode": "Reference", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "ScopedCss", - "AssetTraitValue": "ProjectBundle", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/app.css", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/app.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/app.css" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/bootstrap/bootstrap.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/bootstrap/bootstrap.min.css" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css.map", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/bootstrap/bootstrap.min.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/bootstrap/bootstrap.min.css.map" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/FONT-LICENSE", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/FONT-LICENSE", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/FONT-LICENSE" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.eot", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/font/fonts/open-iconic.eot", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.eot" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.otf", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/font/fonts/open-iconic.otf", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.otf" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.svg", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/font/fonts/open-iconic.svg", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.svg" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/font/fonts/open-iconic.ttf", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.ttf" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.woff", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/font/fonts/open-iconic.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.woff" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/ICON-LICENSE", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/ICON-LICENSE", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/ICON-LICENSE" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/README.md", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "css/open-iconic/README.md", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/css/open-iconic/README.md" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/favicon.ico", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "favicon.ico", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/favicon.ico" - }, - { - "Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/index.html", - "SourceId": "Account_SQLite", - "SourceType": "Discovered", - "ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/", - "BasePath": "/", - "RelativePath": "index.html", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot/index.html" - } - ] -} \ No newline at end of file diff --git a/Account_SQLite/obj/Debug/net6.0/staticwebassets.development.json b/Account_SQLite/obj/Debug/net6.0/staticwebassets.development.json deleted file mode 100644 index 00a7c748..00000000 --- a/Account_SQLite/obj/Debug/net6.0/staticwebassets.development.json +++ /dev/null @@ -1 +0,0 @@ -{"ContentRoots":["/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/","/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/","/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/staticwebassets/","/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/","/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/wwwroot/"],"Root":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"browserCache.js"},"Patterns":null},"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"SqliteWasmHelper":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"browserCache.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Radzen.Blazor":{"Children":{"css":{"Children":{"dark-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/dark-base.css"},"Patterns":null},"dark.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/dark.css"},"Patterns":null},"default-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/default-base.css"},"Patterns":null},"default.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/default.css"},"Patterns":null},"humanistic-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/humanistic-base.css"},"Patterns":null},"humanistic.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/humanistic.css"},"Patterns":null},"software-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/software-base.css"},"Patterns":null},"software.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/software.css"},"Patterns":null},"standard-base.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/standard-base.css"},"Patterns":null},"standard.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/standard.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"MaterialIcons-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/MaterialIcons-Regular.woff"},"Patterns":null},"roboto-v15-latin-300.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/roboto-v15-latin-300.woff"},"Patterns":null},"roboto-v15-latin-700.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/roboto-v15-latin-700.woff"},"Patterns":null},"roboto-v15-latin-regular.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/roboto-v15-latin-regular.woff"},"Patterns":null},"SourceSansPro-Black.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Black.woff"},"Patterns":null},"SourceSansPro-BlackIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-BlackIt.woff"},"Patterns":null},"SourceSansPro-Bold.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Bold.woff"},"Patterns":null},"SourceSansPro-BoldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-BoldIt.woff"},"Patterns":null},"SourceSansPro-ExtraLight.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-ExtraLight.woff"},"Patterns":null},"SourceSansPro-ExtraLightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-ExtraLightIt.woff"},"Patterns":null},"SourceSansPro-It.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-It.woff"},"Patterns":null},"SourceSansPro-Light.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Light.woff"},"Patterns":null},"SourceSansPro-LightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-LightIt.woff"},"Patterns":null},"SourceSansPro-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Regular.woff"},"Patterns":null},"SourceSansPro-Semibold.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-Semibold.woff"},"Patterns":null},"SourceSansPro-SemiboldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fonts/SourceSansPro-SemiboldIt.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"Radzen.Blazor.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Radzen.Blazor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Account_SQLite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"Account_SQLite.styles.css"},"Patterns":null},"_framework":{"Children":{"Microsoft.AspNetCore.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll"},"Patterns":null},"Microsoft.Data.Sqlite.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Data.Sqlite.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Abstractions.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.Relational.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Relational.dll"},"Patterns":null},"Microsoft.EntityFrameworkCore.Sqlite.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Sqlite.dll"},"Patterns":null},"Microsoft.Extensions.Caching.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Caching.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Memory.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.DependencyModel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyModel.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll"},"Patterns":null},"Microsoft.Extensions.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.dll"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Options.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Options.dll"},"Patterns":null},"Microsoft.Extensions.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll"},"Patterns":null},"Microsoft.JSInterop.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.dll"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll"},"Patterns":null},"Radzen.Blazor.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Radzen.Blazor.dll"},"Patterns":null},"SQLite.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLite.Net.dll"},"Patterns":null},"SQLitePCLRaw.batteries_v2.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.batteries_v2.dll"},"Patterns":null},"SQLitePCLRaw.core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.core.dll"},"Patterns":null},"SQLitePCLRaw.provider.e_sqlite3.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.provider.e_sqlite3.dll"},"Patterns":null},"SqliteWasmHelper.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SqliteWasmHelper.dll"},"Patterns":null},"System.IO.Pipelines.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipelines.dll"},"Patterns":null},"System.Linq.Dynamic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Dynamic.Core.dll"},"Patterns":null},"e_sqlite3.a":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/e_sqlite3.a"},"Patterns":null},"Microsoft.CSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.CSharp.dll"},"Patterns":null},"Microsoft.VisualBasic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll"},"Patterns":null},"Microsoft.VisualBasic.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.dll"},"Patterns":null},"Microsoft.Win32.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Primitives.dll"},"Patterns":null},"Microsoft.Win32.Registry.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Registry.dll"},"Patterns":null},"System.AppContext.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.AppContext.dll"},"Patterns":null},"System.Buffers.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Buffers.dll"},"Patterns":null},"System.Collections.Concurrent.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Concurrent.dll"},"Patterns":null},"System.Collections.Immutable.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Immutable.dll"},"Patterns":null},"System.Collections.NonGeneric.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.NonGeneric.dll"},"Patterns":null},"System.Collections.Specialized.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Specialized.dll"},"Patterns":null},"System.Collections.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.dll"},"Patterns":null},"System.ComponentModel.Annotations.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Annotations.dll"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll"},"Patterns":null},"System.ComponentModel.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Primitives.dll"},"Patterns":null},"System.ComponentModel.TypeConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll"},"Patterns":null},"System.ComponentModel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.dll"},"Patterns":null},"System.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Configuration.dll"},"Patterns":null},"System.Console.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Console.dll"},"Patterns":null},"System.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Core.dll"},"Patterns":null},"System.Data.Common.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.Common.dll"},"Patterns":null},"System.Data.DataSetExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.DataSetExtensions.dll"},"Patterns":null},"System.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.dll"},"Patterns":null},"System.Diagnostics.Contracts.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Contracts.dll"},"Patterns":null},"System.Diagnostics.Debug.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Debug.dll"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll"},"Patterns":null},"System.Diagnostics.Process.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Process.dll"},"Patterns":null},"System.Diagnostics.StackTrace.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.StackTrace.dll"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll"},"Patterns":null},"System.Diagnostics.Tools.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tools.dll"},"Patterns":null},"System.Diagnostics.TraceSource.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TraceSource.dll"},"Patterns":null},"System.Diagnostics.Tracing.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tracing.dll"},"Patterns":null},"System.Drawing.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.Primitives.dll"},"Patterns":null},"System.Drawing.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.dll"},"Patterns":null},"System.Dynamic.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Dynamic.Runtime.dll"},"Patterns":null},"System.Formats.Asn1.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Formats.Asn1.dll"},"Patterns":null},"System.Globalization.Calendars.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Calendars.dll"},"Patterns":null},"System.Globalization.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Extensions.dll"},"Patterns":null},"System.Globalization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.dll"},"Patterns":null},"System.IO.Compression.Brotli.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.Brotli.dll"},"Patterns":null},"System.IO.Compression.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.FileSystem.dll"},"Patterns":null},"System.IO.Compression.ZipFile.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.ZipFile.dll"},"Patterns":null},"System.IO.Compression.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.dll"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll"},"Patterns":null},"System.IO.FileSystem.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll"},"Patterns":null},"System.IO.FileSystem.Watcher.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll"},"Patterns":null},"System.IO.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.dll"},"Patterns":null},"System.IO.IsolatedStorage.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.IsolatedStorage.dll"},"Patterns":null},"System.IO.MemoryMappedFiles.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll"},"Patterns":null},"System.IO.Pipes.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll"},"Patterns":null},"System.IO.Pipes.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.dll"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll"},"Patterns":null},"System.IO.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.dll"},"Patterns":null},"System.Linq.Expressions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Expressions.dll"},"Patterns":null},"System.Linq.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Parallel.dll"},"Patterns":null},"System.Linq.Queryable.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Queryable.dll"},"Patterns":null},"System.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.dll"},"Patterns":null},"System.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Memory.dll"},"Patterns":null},"System.Net.Http.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.Json.dll"},"Patterns":null},"System.Net.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.dll"},"Patterns":null},"System.Net.HttpListener.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.HttpListener.dll"},"Patterns":null},"System.Net.Mail.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Mail.dll"},"Patterns":null},"System.Net.NameResolution.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NameResolution.dll"},"Patterns":null},"System.Net.NetworkInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NetworkInformation.dll"},"Patterns":null},"System.Net.Ping.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Ping.dll"},"Patterns":null},"System.Net.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Primitives.dll"},"Patterns":null},"System.Net.Quic.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Quic.dll"},"Patterns":null},"System.Net.Requests.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Requests.dll"},"Patterns":null},"System.Net.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Security.dll"},"Patterns":null},"System.Net.ServicePoint.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.ServicePoint.dll"},"Patterns":null},"System.Net.Sockets.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Sockets.dll"},"Patterns":null},"System.Net.WebClient.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebClient.dll"},"Patterns":null},"System.Net.WebHeaderCollection.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebHeaderCollection.dll"},"Patterns":null},"System.Net.WebProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebProxy.dll"},"Patterns":null},"System.Net.WebSockets.Client.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.Client.dll"},"Patterns":null},"System.Net.WebSockets.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.dll"},"Patterns":null},"System.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.dll"},"Patterns":null},"System.Numerics.Vectors.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.Vectors.dll"},"Patterns":null},"System.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.dll"},"Patterns":null},"System.ObjectModel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ObjectModel.dll"},"Patterns":null},"System.Private.DataContractSerialization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.DataContractSerialization.dll"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll"},"Patterns":null},"System.Private.Uri.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Uri.dll"},"Patterns":null},"System.Private.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.Linq.dll"},"Patterns":null},"System.Private.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.dll"},"Patterns":null},"System.Reflection.DispatchProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.DispatchProxy.dll"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll"},"Patterns":null},"System.Reflection.Emit.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.dll"},"Patterns":null},"System.Reflection.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Extensions.dll"},"Patterns":null},"System.Reflection.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Metadata.dll"},"Patterns":null},"System.Reflection.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Primitives.dll"},"Patterns":null},"System.Reflection.TypeExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.TypeExtensions.dll"},"Patterns":null},"System.Reflection.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.dll"},"Patterns":null},"System.Resources.Reader.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Reader.dll"},"Patterns":null},"System.Resources.ResourceManager.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.ResourceManager.dll"},"Patterns":null},"System.Resources.Writer.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Writer.dll"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll"},"Patterns":null},"System.Runtime.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Extensions.dll"},"Patterns":null},"System.Runtime.Handles.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Handles.dll"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll"},"Patterns":null},"System.Runtime.InteropServices.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.dll"},"Patterns":null},"System.Runtime.Intrinsics.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Intrinsics.dll"},"Patterns":null},"System.Runtime.Loader.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Loader.dll"},"Patterns":null},"System.Runtime.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Numerics.dll"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll"},"Patterns":null},"System.Runtime.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Json.dll"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll"},"Patterns":null},"System.Runtime.Serialization.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll"},"Patterns":null},"System.Runtime.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.dll"},"Patterns":null},"System.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.dll"},"Patterns":null},"System.Security.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.AccessControl.dll"},"Patterns":null},"System.Security.Claims.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Claims.dll"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll"},"Patterns":null},"System.Security.Cryptography.Cng.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Cng.dll"},"Patterns":null},"System.Security.Cryptography.Csp.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Csp.dll"},"Patterns":null},"System.Security.Cryptography.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll"},"Patterns":null},"System.Security.Cryptography.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll"},"Patterns":null},"System.Security.Principal.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.Windows.dll"},"Patterns":null},"System.Security.Principal.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.dll"},"Patterns":null},"System.Security.SecureString.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.SecureString.dll"},"Patterns":null},"System.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.dll"},"Patterns":null},"System.ServiceModel.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceModel.Web.dll"},"Patterns":null},"System.ServiceProcess.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceProcess.dll"},"Patterns":null},"System.Text.Encoding.CodePages.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.CodePages.dll"},"Patterns":null},"System.Text.Encoding.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.Extensions.dll"},"Patterns":null},"System.Text.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.dll"},"Patterns":null},"System.Text.Encodings.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encodings.Web.dll"},"Patterns":null},"System.Text.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Json.dll"},"Patterns":null},"System.Text.RegularExpressions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.RegularExpressions.dll"},"Patterns":null},"System.Threading.Channels.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Channels.dll"},"Patterns":null},"System.Threading.Overlapped.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Overlapped.dll"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll"},"Patterns":null},"System.Threading.Tasks.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll"},"Patterns":null},"System.Threading.Tasks.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll"},"Patterns":null},"System.Threading.Tasks.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.dll"},"Patterns":null},"System.Threading.Thread.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Thread.dll"},"Patterns":null},"System.Threading.ThreadPool.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.ThreadPool.dll"},"Patterns":null},"System.Threading.Timer.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Timer.dll"},"Patterns":null},"System.Threading.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.dll"},"Patterns":null},"System.Transactions.Local.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.Local.dll"},"Patterns":null},"System.Transactions.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.dll"},"Patterns":null},"System.ValueTuple.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ValueTuple.dll"},"Patterns":null},"System.Web.HttpUtility.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.HttpUtility.dll"},"Patterns":null},"System.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.dll"},"Patterns":null},"System.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Windows.dll"},"Patterns":null},"System.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Linq.dll"},"Patterns":null},"System.Xml.ReaderWriter.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.ReaderWriter.dll"},"Patterns":null},"System.Xml.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Serialization.dll"},"Patterns":null},"System.Xml.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XDocument.dll"},"Patterns":null},"System.Xml.XPath.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.XDocument.dll"},"Patterns":null},"System.Xml.XPath.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.dll"},"Patterns":null},"System.Xml.XmlDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlDocument.dll"},"Patterns":null},"System.Xml.XmlSerializer.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlSerializer.dll"},"Patterns":null},"System.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.dll"},"Patterns":null},"System.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.dll"},"Patterns":null},"WindowsBase.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/WindowsBase.dll"},"Patterns":null},"mscorlib.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/mscorlib.dll"},"Patterns":null},"netstandard.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/netstandard.dll"},"Patterns":null},"System.Private.CoreLib.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.CoreLib.dll"},"Patterns":null},"dotnet.timezones.blat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.timezones.blat"},"Patterns":null},"icudt.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt.dat"},"Patterns":null},"icudt_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_CJK.dat"},"Patterns":null},"icudt_EFIGS.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_EFIGS.dat"},"Patterns":null},"icudt_no_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_no_CJK.dat"},"Patterns":null},"dotnet.wasm":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.wasm"},"Patterns":null},"dotnet..0qqpqpio55.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet..0qqpqpio55.js"},"Patterns":null},"Account_SQLite.dll":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.dll"},"Patterns":null},"Account_SQLite.pdb":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.pdb"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll.gz"},"Patterns":null},"Microsoft.Data.Sqlite.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Data.Sqlite.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Abstractions.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.Relational.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Relational.dll.gz"},"Patterns":null},"Microsoft.EntityFrameworkCore.Sqlite.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.EntityFrameworkCore.Sqlite.dll.gz"},"Patterns":null},"Microsoft.Extensions.Caching.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Caching.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Caching.Memory.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.DependencyModel.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Options.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Options.dll.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll.gz"},"Patterns":null},"Microsoft.JSInterop.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.dll.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll.gz"},"Patterns":null},"Radzen.Blazor.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Radzen.Blazor.dll.gz"},"Patterns":null},"SQLite.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLite.Net.dll.gz"},"Patterns":null},"SQLitePCLRaw.batteries_v2.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.batteries_v2.dll.gz"},"Patterns":null},"SQLitePCLRaw.core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.core.dll.gz"},"Patterns":null},"SQLitePCLRaw.provider.e_sqlite3.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SQLitePCLRaw.provider.e_sqlite3.dll.gz"},"Patterns":null},"SqliteWasmHelper.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/SqliteWasmHelper.dll.gz"},"Patterns":null},"System.IO.Pipelines.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipelines.dll.gz"},"Patterns":null},"System.Linq.Dynamic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Dynamic.Core.dll.gz"},"Patterns":null},"e_sqlite3.a.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/e_sqlite3.a.gz"},"Patterns":null},"Microsoft.CSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.CSharp.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.VisualBasic.dll.gz"},"Patterns":null},"Microsoft.Win32.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Primitives.dll.gz"},"Patterns":null},"Microsoft.Win32.Registry.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Microsoft.Win32.Registry.dll.gz"},"Patterns":null},"System.AppContext.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.AppContext.dll.gz"},"Patterns":null},"System.Buffers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Buffers.dll.gz"},"Patterns":null},"System.Collections.Concurrent.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Concurrent.dll.gz"},"Patterns":null},"System.Collections.Immutable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Immutable.dll.gz"},"Patterns":null},"System.Collections.NonGeneric.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.NonGeneric.dll.gz"},"Patterns":null},"System.Collections.Specialized.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.Specialized.dll.gz"},"Patterns":null},"System.Collections.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Collections.dll.gz"},"Patterns":null},"System.ComponentModel.Annotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Annotations.dll.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll.gz"},"Patterns":null},"System.ComponentModel.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.Primitives.dll.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll.gz"},"Patterns":null},"System.ComponentModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ComponentModel.dll.gz"},"Patterns":null},"System.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Configuration.dll.gz"},"Patterns":null},"System.Console.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Console.dll.gz"},"Patterns":null},"System.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Core.dll.gz"},"Patterns":null},"System.Data.Common.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.Common.dll.gz"},"Patterns":null},"System.Data.DataSetExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.DataSetExtensions.dll.gz"},"Patterns":null},"System.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Data.dll.gz"},"Patterns":null},"System.Diagnostics.Contracts.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Contracts.dll.gz"},"Patterns":null},"System.Diagnostics.Debug.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Debug.dll.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll.gz"},"Patterns":null},"System.Diagnostics.Process.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Process.dll.gz"},"Patterns":null},"System.Diagnostics.StackTrace.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.StackTrace.dll.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll.gz"},"Patterns":null},"System.Diagnostics.Tools.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tools.dll.gz"},"Patterns":null},"System.Diagnostics.TraceSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.TraceSource.dll.gz"},"Patterns":null},"System.Diagnostics.Tracing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Diagnostics.Tracing.dll.gz"},"Patterns":null},"System.Drawing.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.Primitives.dll.gz"},"Patterns":null},"System.Drawing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Drawing.dll.gz"},"Patterns":null},"System.Dynamic.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Dynamic.Runtime.dll.gz"},"Patterns":null},"System.Formats.Asn1.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Formats.Asn1.dll.gz"},"Patterns":null},"System.Globalization.Calendars.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Calendars.dll.gz"},"Patterns":null},"System.Globalization.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.Extensions.dll.gz"},"Patterns":null},"System.Globalization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Globalization.dll.gz"},"Patterns":null},"System.IO.Compression.Brotli.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.Brotli.dll.gz"},"Patterns":null},"System.IO.Compression.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.FileSystem.dll.gz"},"Patterns":null},"System.IO.Compression.ZipFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.ZipFile.dll.gz"},"Patterns":null},"System.IO.Compression.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Compression.dll.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll.gz"},"Patterns":null},"System.IO.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.FileSystem.dll.gz"},"Patterns":null},"System.IO.IsolatedStorage.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.IsolatedStorage.dll.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll.gz"},"Patterns":null},"System.IO.Pipes.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.Pipes.dll.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll.gz"},"Patterns":null},"System.IO.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.IO.dll.gz"},"Patterns":null},"System.Linq.Expressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Expressions.dll.gz"},"Patterns":null},"System.Linq.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Parallel.dll.gz"},"Patterns":null},"System.Linq.Queryable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.Queryable.dll.gz"},"Patterns":null},"System.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Linq.dll.gz"},"Patterns":null},"System.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Memory.dll.gz"},"Patterns":null},"System.Net.Http.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.Json.dll.gz"},"Patterns":null},"System.Net.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Http.dll.gz"},"Patterns":null},"System.Net.HttpListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.HttpListener.dll.gz"},"Patterns":null},"System.Net.Mail.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Mail.dll.gz"},"Patterns":null},"System.Net.NameResolution.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NameResolution.dll.gz"},"Patterns":null},"System.Net.NetworkInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.NetworkInformation.dll.gz"},"Patterns":null},"System.Net.Ping.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Ping.dll.gz"},"Patterns":null},"System.Net.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Primitives.dll.gz"},"Patterns":null},"System.Net.Quic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Quic.dll.gz"},"Patterns":null},"System.Net.Requests.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Requests.dll.gz"},"Patterns":null},"System.Net.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Security.dll.gz"},"Patterns":null},"System.Net.ServicePoint.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.ServicePoint.dll.gz"},"Patterns":null},"System.Net.Sockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.Sockets.dll.gz"},"Patterns":null},"System.Net.WebClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebClient.dll.gz"},"Patterns":null},"System.Net.WebHeaderCollection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebHeaderCollection.dll.gz"},"Patterns":null},"System.Net.WebProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebProxy.dll.gz"},"Patterns":null},"System.Net.WebSockets.Client.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.Client.dll.gz"},"Patterns":null},"System.Net.WebSockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.WebSockets.dll.gz"},"Patterns":null},"System.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Net.dll.gz"},"Patterns":null},"System.Numerics.Vectors.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.Vectors.dll.gz"},"Patterns":null},"System.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Numerics.dll.gz"},"Patterns":null},"System.ObjectModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ObjectModel.dll.gz"},"Patterns":null},"System.Private.DataContractSerialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.DataContractSerialization.dll.gz"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz"},"Patterns":null},"System.Private.Uri.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Uri.dll.gz"},"Patterns":null},"System.Private.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.Linq.dll.gz"},"Patterns":null},"System.Private.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.Xml.dll.gz"},"Patterns":null},"System.Reflection.DispatchProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.DispatchProxy.dll.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll.gz"},"Patterns":null},"System.Reflection.Emit.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Emit.dll.gz"},"Patterns":null},"System.Reflection.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Extensions.dll.gz"},"Patterns":null},"System.Reflection.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Metadata.dll.gz"},"Patterns":null},"System.Reflection.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.Primitives.dll.gz"},"Patterns":null},"System.Reflection.TypeExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.TypeExtensions.dll.gz"},"Patterns":null},"System.Reflection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Reflection.dll.gz"},"Patterns":null},"System.Resources.Reader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Reader.dll.gz"},"Patterns":null},"System.Resources.ResourceManager.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.ResourceManager.dll.gz"},"Patterns":null},"System.Resources.Writer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Resources.Writer.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll.gz"},"Patterns":null},"System.Runtime.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Extensions.dll.gz"},"Patterns":null},"System.Runtime.Handles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Handles.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.InteropServices.dll.gz"},"Patterns":null},"System.Runtime.Intrinsics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Intrinsics.dll.gz"},"Patterns":null},"System.Runtime.Loader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Loader.dll.gz"},"Patterns":null},"System.Runtime.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Numerics.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Json.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll.gz"},"Patterns":null},"System.Runtime.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.Serialization.dll.gz"},"Patterns":null},"System.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Runtime.dll.gz"},"Patterns":null},"System.Security.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.AccessControl.dll.gz"},"Patterns":null},"System.Security.Claims.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Claims.dll.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Cng.dll.gz"},"Patterns":null},"System.Security.Cryptography.Csp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Csp.dll.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll.gz"},"Patterns":null},"System.Security.Principal.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.Windows.dll.gz"},"Patterns":null},"System.Security.Principal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.Principal.dll.gz"},"Patterns":null},"System.Security.SecureString.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.SecureString.dll.gz"},"Patterns":null},"System.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Security.dll.gz"},"Patterns":null},"System.ServiceModel.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceModel.Web.dll.gz"},"Patterns":null},"System.ServiceProcess.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ServiceProcess.dll.gz"},"Patterns":null},"System.Text.Encoding.CodePages.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.CodePages.dll.gz"},"Patterns":null},"System.Text.Encoding.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.Extensions.dll.gz"},"Patterns":null},"System.Text.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encoding.dll.gz"},"Patterns":null},"System.Text.Encodings.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Encodings.Web.dll.gz"},"Patterns":null},"System.Text.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.Json.dll.gz"},"Patterns":null},"System.Text.RegularExpressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Text.RegularExpressions.dll.gz"},"Patterns":null},"System.Threading.Channels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Channels.dll.gz"},"Patterns":null},"System.Threading.Overlapped.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Overlapped.dll.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll.gz"},"Patterns":null},"System.Threading.Tasks.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Tasks.dll.gz"},"Patterns":null},"System.Threading.Thread.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Thread.dll.gz"},"Patterns":null},"System.Threading.ThreadPool.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.ThreadPool.dll.gz"},"Patterns":null},"System.Threading.Timer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.Timer.dll.gz"},"Patterns":null},"System.Threading.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Threading.dll.gz"},"Patterns":null},"System.Transactions.Local.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.Local.dll.gz"},"Patterns":null},"System.Transactions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Transactions.dll.gz"},"Patterns":null},"System.ValueTuple.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.ValueTuple.dll.gz"},"Patterns":null},"System.Web.HttpUtility.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.HttpUtility.dll.gz"},"Patterns":null},"System.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Web.dll.gz"},"Patterns":null},"System.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Windows.dll.gz"},"Patterns":null},"System.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Linq.dll.gz"},"Patterns":null},"System.Xml.ReaderWriter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.ReaderWriter.dll.gz"},"Patterns":null},"System.Xml.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.Serialization.dll.gz"},"Patterns":null},"System.Xml.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XPath.dll.gz"},"Patterns":null},"System.Xml.XmlDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlDocument.dll.gz"},"Patterns":null},"System.Xml.XmlSerializer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.XmlSerializer.dll.gz"},"Patterns":null},"System.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Xml.dll.gz"},"Patterns":null},"System.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.dll.gz"},"Patterns":null},"WindowsBase.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/WindowsBase.dll.gz"},"Patterns":null},"mscorlib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/mscorlib.dll.gz"},"Patterns":null},"netstandard.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/netstandard.dll.gz"},"Patterns":null},"System.Private.CoreLib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/System.Private.CoreLib.dll.gz"},"Patterns":null},"dotnet.timezones.blat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.timezones.blat.gz"},"Patterns":null},"icudt.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt.dat.gz"},"Patterns":null},"icudt_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_CJK.dat.gz"},"Patterns":null},"icudt_EFIGS.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_EFIGS.dat.gz"},"Patterns":null},"icudt_no_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/icudt_no_CJK.dat.gz"},"Patterns":null},"dotnet.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet.wasm.gz"},"Patterns":null},"dotnet..0qqpqpio55.js.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/dotnet..0qqpqpio55.js.gz"},"Patterns":null},"Account_SQLite.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.dll.gz"},"Patterns":null},"Account_SQLite.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/Account_SQLite.pdb.gz"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/blazor.webassembly.js.gz"},"Patterns":null},"blazor.boot.json":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"_framework/blazor.boot.json"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/corebindings.o b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/corebindings.o deleted file mode 100644 index 7a593422..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/corebindings.o and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.js b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.js deleted file mode 100644 index 137042ed..00000000 --- a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.js +++ /dev/null @@ -1,10692 +0,0 @@ - - -// The Module object: Our interface to the outside world. We import -// and export values on it. There are various ways Module can be used: -// 1. Not defined. We create it here -// 2. A function parameter, function(Module) { ..generated code.. } -// 3. pre-run appended it, var Module = {}; ..generated code.. -// 4. External script tag defines var Module. -// We need to check if Module already exists (e.g. case 3 above). -// Substitution will be replaced with actual code on later stage of the build, -// this way Closure Compiler will not mangle it (e.g. case 4. above). -// Note that if you want to run closure, and also to use Module -// after the generated code, you will need to define var Module = {}; -// before the code. Then that object will be used in the code, and you -// can continue to use Module afterwards as well. -var Module = typeof Module !== 'undefined' ? Module : {}; - -// --pre-jses are emitted after the Module integration code, so that they can -// refer to Module (if they choose; they can also define Module) -// {{PRE_JSES}} - -// Sometimes an existing Module object exists with properties -// meant to overwrite the default module functionality. Here -// we collect those properties and reapply _after_ we configure -// the current environment's defaults to avoid having to be so -// defensive during initialization. -var moduleOverrides = {}; -var key; -for (key in Module) { - if (Module.hasOwnProperty(key)) { - moduleOverrides[key] = Module[key]; - } -} - -var arguments_ = []; -var thisProgram = './this.program'; -var quit_ = function(status, toThrow) { - throw toThrow; -}; - -// Determine the runtime environment we are in. You can customize this by -// setting the ENVIRONMENT setting at compile time (see settings.js). - -var ENVIRONMENT_IS_WEB = false; -var ENVIRONMENT_IS_WORKER = false; -var ENVIRONMENT_IS_NODE = false; -var ENVIRONMENT_IS_SHELL = false; -ENVIRONMENT_IS_WEB = typeof window === 'object'; -ENVIRONMENT_IS_WORKER = typeof importScripts === 'function'; -// N.b. Electron.js environment is simultaneously a NODE-environment, but -// also a web environment. -ENVIRONMENT_IS_NODE = typeof process === 'object' && typeof process.versions === 'object' && typeof process.versions.node === 'string'; -ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; - -// `/` should be present at the end if `scriptDirectory` is not empty -var scriptDirectory = ''; -function locateFile(path) { - if (Module['locateFile']) { - return Module['locateFile'](path, scriptDirectory); - } - return scriptDirectory + path; -} - -// Hooks that are implemented differently in different runtime environments. -var read_, - readAsync, - readBinary, - setWindowTitle; - -var nodeFS; -var nodePath; - -if (ENVIRONMENT_IS_NODE) { - if (ENVIRONMENT_IS_WORKER) { - scriptDirectory = require('path').dirname(scriptDirectory) + '/'; - } else { - scriptDirectory = __dirname + '/'; - } - -// include: node_shell_read.js - - -read_ = function shell_read(filename, binary) { - if (!nodeFS) nodeFS = require('fs'); - if (!nodePath) nodePath = require('path'); - filename = nodePath['normalize'](filename); - return nodeFS['readFileSync'](filename, binary ? null : 'utf8'); -}; - -readBinary = function readBinary(filename) { - var ret = read_(filename, true); - if (!ret.buffer) { - ret = new Uint8Array(ret); - } - assert(ret.buffer); - return ret; -}; - -// end include: node_shell_read.js - if (process['argv'].length > 1) { - thisProgram = process['argv'][1].replace(/\\/g, '/'); - } - - arguments_ = process['argv'].slice(2); - - if (typeof module !== 'undefined') { - module['exports'] = Module; - } - - process['on']('uncaughtException', function(ex) { - // suppress ExitStatus exceptions from showing an error - if (!(ex instanceof ExitStatus)) { - throw ex; - } - }); - - process['on']('unhandledRejection', abort); - - quit_ = function(status) { - process['exit'](status); - }; - - Module['inspect'] = function () { return '[Emscripten Module object]'; }; - -} else -if (ENVIRONMENT_IS_SHELL) { - - if (typeof read != 'undefined') { - read_ = function shell_read(f) { - return read(f); - }; - } - - readBinary = function readBinary(f) { - var data; - if (typeof readbuffer === 'function') { - return new Uint8Array(readbuffer(f)); - } - data = read(f, 'binary'); - assert(typeof data === 'object'); - return data; - }; - - if (typeof scriptArgs != 'undefined') { - arguments_ = scriptArgs; - } else if (typeof arguments != 'undefined') { - arguments_ = arguments; - } - - if (typeof quit === 'function') { - quit_ = function(status) { - quit(status); - }; - } - - if (typeof print !== 'undefined') { - // Prefer to use print/printErr where they exist, as they usually work better. - if (typeof console === 'undefined') console = /** @type{!Console} */({}); - console.log = /** @type{!function(this:Console, ...*): undefined} */ (print); - console.warn = console.error = /** @type{!function(this:Console, ...*): undefined} */ (typeof printErr !== 'undefined' ? printErr : print); - } - -} else - -// Note that this includes Node.js workers when relevant (pthreads is enabled). -// Node.js workers are detected as a combination of ENVIRONMENT_IS_WORKER and -// ENVIRONMENT_IS_NODE. -if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { - if (ENVIRONMENT_IS_WORKER) { // Check worker, not web, since window could be polyfilled - scriptDirectory = self.location.href; - } else if (typeof document !== 'undefined' && document.currentScript) { // web - scriptDirectory = document.currentScript.src; - } - // blob urls look like blob:http://site.com/etc/etc and we cannot infer anything from them. - // otherwise, slice off the final part of the url to find the script directory. - // if scriptDirectory does not contain a slash, lastIndexOf will return -1, - // and scriptDirectory will correctly be replaced with an empty string. - if (scriptDirectory.indexOf('blob:') !== 0) { - scriptDirectory = scriptDirectory.substr(0, scriptDirectory.lastIndexOf('/')+1); - } else { - scriptDirectory = ''; - } - - // Differentiate the Web Worker from the Node Worker case, as reading must - // be done differently. - { - -// include: web_or_worker_shell_read.js - - - read_ = function(url) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - xhr.send(null); - return xhr.responseText; - }; - - if (ENVIRONMENT_IS_WORKER) { - readBinary = function(url) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - xhr.responseType = 'arraybuffer'; - xhr.send(null); - return new Uint8Array(/** @type{!ArrayBuffer} */(xhr.response)); - }; - } - - readAsync = function(url, onload, onerror) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - xhr.responseType = 'arraybuffer'; - xhr.onload = function() { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - onload(xhr.response); - return; - } - onerror(); - }; - xhr.onerror = onerror; - xhr.send(null); - }; - -// end include: web_or_worker_shell_read.js - } - - setWindowTitle = function(title) { document.title = title }; -} else -{ -} - -// Set up the out() and err() hooks, which are how we can print to stdout or -// stderr, respectively. -var out = Module['print'] || console.log.bind(console); -var err = Module['printErr'] || console.warn.bind(console); - -// Merge back in the overrides -for (key in moduleOverrides) { - if (moduleOverrides.hasOwnProperty(key)) { - Module[key] = moduleOverrides[key]; - } -} -// Free the object hierarchy contained in the overrides, this lets the GC -// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array. -moduleOverrides = null; - -// Emit code to handle expected values on the Module object. This applies Module.x -// to the proper local x. This has two benefits: first, we only emit it if it is -// expected to arrive, and second, by using a local everywhere else that can be -// minified. - -if (Module['arguments']) arguments_ = Module['arguments']; - -if (Module['thisProgram']) thisProgram = Module['thisProgram']; - -if (Module['quit']) quit_ = Module['quit']; - -// perform assertions in shell.js after we set up out() and err(), as otherwise if an assertion fails it cannot print the message - - - - -var STACK_ALIGN = 16; - -function alignMemory(size, factor) { - if (!factor) factor = STACK_ALIGN; // stack alignment (16-byte) by default - return Math.ceil(size / factor) * factor; -} - -function getNativeTypeSize(type) { - switch (type) { - case 'i1': case 'i8': return 1; - case 'i16': return 2; - case 'i32': return 4; - case 'i64': return 8; - case 'float': return 4; - case 'double': return 8; - default: { - if (type[type.length-1] === '*') { - return 4; // A pointer - } else if (type[0] === 'i') { - var bits = Number(type.substr(1)); - assert(bits % 8 === 0, 'getNativeTypeSize invalid bits ' + bits + ', type ' + type); - return bits / 8; - } else { - return 0; - } - } - } -} - -function warnOnce(text) { - if (!warnOnce.shown) warnOnce.shown = {}; - if (!warnOnce.shown[text]) { - warnOnce.shown[text] = 1; - err(text); - } -} - -// include: runtime_functions.js - - -// Wraps a JS function as a wasm function with a given signature. -function convertJsFunctionToWasm(func, sig) { - - // If the type reflection proposal is available, use the new - // "WebAssembly.Function" constructor. - // Otherwise, construct a minimal wasm module importing the JS function and - // re-exporting it. - if (typeof WebAssembly.Function === "function") { - var typeNames = { - 'i': 'i32', - 'j': 'i64', - 'f': 'f32', - 'd': 'f64' - }; - var type = { - parameters: [], - results: sig[0] == 'v' ? [] : [typeNames[sig[0]]] - }; - for (var i = 1; i < sig.length; ++i) { - type.parameters.push(typeNames[sig[i]]); - } - return new WebAssembly.Function(type, func); - } - - // The module is static, with the exception of the type section, which is - // generated based on the signature passed in. - var typeSection = [ - 0x01, // id: section, - 0x00, // length: 0 (placeholder) - 0x01, // count: 1 - 0x60, // form: func - ]; - var sigRet = sig.slice(0, 1); - var sigParam = sig.slice(1); - var typeCodes = { - 'i': 0x7f, // i32 - 'j': 0x7e, // i64 - 'f': 0x7d, // f32 - 'd': 0x7c, // f64 - }; - - // Parameters, length + signatures - typeSection.push(sigParam.length); - for (var i = 0; i < sigParam.length; ++i) { - typeSection.push(typeCodes[sigParam[i]]); - } - - // Return values, length + signatures - // With no multi-return in MVP, either 0 (void) or 1 (anything else) - if (sigRet == 'v') { - typeSection.push(0x00); - } else { - typeSection = typeSection.concat([0x01, typeCodes[sigRet]]); - } - - // Write the overall length of the type section back into the section header - // (excepting the 2 bytes for the section id and length) - typeSection[1] = typeSection.length - 2; - - // Rest of the module is static - var bytes = new Uint8Array([ - 0x00, 0x61, 0x73, 0x6d, // magic ("\0asm") - 0x01, 0x00, 0x00, 0x00, // version: 1 - ].concat(typeSection, [ - 0x02, 0x07, // import section - // (import "e" "f" (func 0 (type 0))) - 0x01, 0x01, 0x65, 0x01, 0x66, 0x00, 0x00, - 0x07, 0x05, // export section - // (export "f" (func 0 (type 0))) - 0x01, 0x01, 0x66, 0x00, 0x00, - ])); - - // We can compile this wasm module synchronously because it is very small. - // This accepts an import (at "e.f"), that it reroutes to an export (at "f") - var module = new WebAssembly.Module(bytes); - var instance = new WebAssembly.Instance(module, { - 'e': { - 'f': func - } - }); - var wrappedFunc = instance.exports['f']; - return wrappedFunc; -} - -var freeTableIndexes = []; - -// Weak map of functions in the table to their indexes, created on first use. -var functionsInTableMap; - -function getEmptyTableSlot() { - // Reuse a free index if there is one, otherwise grow. - if (freeTableIndexes.length) { - return freeTableIndexes.pop(); - } - // Grow the table - try { - wasmTable.grow(1); - } catch (err) { - if (!(err instanceof RangeError)) { - throw err; - } - throw 'Unable to grow wasm table. Set ALLOW_TABLE_GROWTH.'; - } - return wasmTable.length - 1; -} - -// Add a wasm function to the table. -function addFunctionWasm(func, sig) { - // Check if the function is already in the table, to ensure each function - // gets a unique index. First, create the map if this is the first use. - if (!functionsInTableMap) { - functionsInTableMap = new WeakMap(); - for (var i = 0; i < wasmTable.length; i++) { - var item = wasmTable.get(i); - // Ignore null values. - if (item) { - functionsInTableMap.set(item, i); - } - } - } - if (functionsInTableMap.has(func)) { - return functionsInTableMap.get(func); - } - - // It's not in the table, add it now. - - var ret = getEmptyTableSlot(); - - // Set the new value. - try { - // Attempting to call this with JS function will cause of table.set() to fail - wasmTable.set(ret, func); - } catch (err) { - if (!(err instanceof TypeError)) { - throw err; - } - var wrapped = convertJsFunctionToWasm(func, sig); - wasmTable.set(ret, wrapped); - } - - functionsInTableMap.set(func, ret); - - return ret; -} - -function removeFunction(index) { - functionsInTableMap.delete(wasmTable.get(index)); - freeTableIndexes.push(index); -} - -// 'sig' parameter is required for the llvm backend but only when func is not -// already a WebAssembly function. -function addFunction(func, sig) { - - return addFunctionWasm(func, sig); -} - -// end include: runtime_functions.js -// include: runtime_debug.js - - -// end include: runtime_debug.js -var tempRet0 = 0; - -var setTempRet0 = function(value) { - tempRet0 = value; -}; - -var getTempRet0 = function() { - return tempRet0; -}; - - - -// === Preamble library stuff === - -// Documentation for the public APIs defined in this file must be updated in: -// site/source/docs/api_reference/preamble.js.rst -// A prebuilt local version of the documentation is available at: -// site/build/text/docs/api_reference/preamble.js.txt -// You can also build docs locally as HTML or other formats in site/ -// An online HTML version (which may be of a different version of Emscripten) -// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html - -var wasmBinary; -if (Module['wasmBinary']) wasmBinary = Module['wasmBinary']; -var noExitRuntime = Module['noExitRuntime'] || true; - -if (typeof WebAssembly !== 'object') { - abort('no native wasm support detected'); -} - -// include: runtime_safe_heap.js - - -// In MINIMAL_RUNTIME, setValue() and getValue() are only available when building with safe heap enabled, for heap safety checking. -// In traditional runtime, setValue() and getValue() are always available (although their use is highly discouraged due to perf penalties) - -/** @param {number} ptr - @param {number} value - @param {string} type - @param {number|boolean=} noSafe */ -function setValue(ptr, value, type, noSafe) { - type = type || 'i8'; - if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit - switch (type) { - case 'i1': HEAP8[((ptr)>>0)] = value; break; - case 'i8': HEAP8[((ptr)>>0)] = value; break; - case 'i16': HEAP16[((ptr)>>1)] = value; break; - case 'i32': HEAP32[((ptr)>>2)] = value; break; - case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)] = tempI64[0],HEAP32[(((ptr)+(4))>>2)] = tempI64[1]); break; - case 'float': HEAPF32[((ptr)>>2)] = value; break; - case 'double': HEAPF64[((ptr)>>3)] = value; break; - default: abort('invalid type for setValue: ' + type); - } -} - -/** @param {number} ptr - @param {string} type - @param {number|boolean=} noSafe */ -function getValue(ptr, type, noSafe) { - type = type || 'i8'; - if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit - switch (type) { - case 'i1': return HEAP8[((ptr)>>0)]; - case 'i8': return HEAP8[((ptr)>>0)]; - case 'i16': return HEAP16[((ptr)>>1)]; - case 'i32': return HEAP32[((ptr)>>2)]; - case 'i64': return HEAP32[((ptr)>>2)]; - case 'float': return HEAPF32[((ptr)>>2)]; - case 'double': return HEAPF64[((ptr)>>3)]; - default: abort('invalid type for getValue: ' + type); - } - return null; -} - -// end include: runtime_safe_heap.js -// Wasm globals - -var wasmMemory; - -//======================================== -// Runtime essentials -//======================================== - -// whether we are quitting the application. no code should run after this. -// set in exit() and abort() -var ABORT = false; - -// set by exit() and abort(). Passed to 'onExit' handler. -// NOTE: This is also used as the process return code code in shell environments -// but only when noExitRuntime is false. -var EXITSTATUS; - -/** @type {function(*, string=)} */ -function assert(condition, text) { - if (!condition) { - abort('Assertion failed: ' + text); - } -} - -// Returns the C function with a specified identifier (for C++, you need to do manual name mangling) -function getCFunc(ident) { - var func = Module['_' + ident]; // closure exported function - assert(func, 'Cannot call unknown function ' + ident + ', make sure it is exported'); - return func; -} - -// C calling interface. -/** @param {string|null=} returnType - @param {Array=} argTypes - @param {Arguments|Array=} args - @param {Object=} opts */ -function ccall(ident, returnType, argTypes, args, opts) { - // For fast lookup of conversion functions - var toC = { - 'string': function(str) { - var ret = 0; - if (str !== null && str !== undefined && str !== 0) { // null string - // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' - var len = (str.length << 2) + 1; - ret = stackAlloc(len); - stringToUTF8(str, ret, len); - } - return ret; - }, - 'array': function(arr) { - var ret = stackAlloc(arr.length); - writeArrayToMemory(arr, ret); - return ret; - } - }; - - function convertReturnValue(ret) { - if (returnType === 'string') return UTF8ToString(ret); - if (returnType === 'boolean') return Boolean(ret); - return ret; - } - - var func = getCFunc(ident); - var cArgs = []; - var stack = 0; - if (args) { - for (var i = 0; i < args.length; i++) { - var converter = toC[argTypes[i]]; - if (converter) { - if (stack === 0) stack = stackSave(); - cArgs[i] = converter(args[i]); - } else { - cArgs[i] = args[i]; - } - } - } - var ret = func.apply(null, cArgs); - - ret = convertReturnValue(ret); - if (stack !== 0) stackRestore(stack); - return ret; -} - -/** @param {string=} returnType - @param {Array=} argTypes - @param {Object=} opts */ -function cwrap(ident, returnType, argTypes, opts) { - argTypes = argTypes || []; - // When the function takes numbers and returns a number, we can just return - // the original function - var numericArgs = argTypes.every(function(type){ return type === 'number'}); - var numericRet = returnType !== 'string'; - if (numericRet && numericArgs && !opts) { - return getCFunc(ident); - } - return function() { - return ccall(ident, returnType, argTypes, arguments, opts); - } -} - -var ALLOC_NORMAL = 0; // Tries to use _malloc() -var ALLOC_STACK = 1; // Lives for the duration of the current function call - -// allocate(): This is for internal use. You can use it yourself as well, but the interface -// is a little tricky (see docs right below). The reason is that it is optimized -// for multiple syntaxes to save space in generated code. So you should -// normally not use allocate(), and instead allocate memory using _malloc(), -// initialize it with setValue(), and so forth. -// @slab: An array of data. -// @allocator: How to allocate memory, see ALLOC_* -/** @type {function((Uint8Array|Array), number)} */ -function allocate(slab, allocator) { - var ret; - - if (allocator == ALLOC_STACK) { - ret = stackAlloc(slab.length); - } else { - ret = _malloc(slab.length); - } - - if (slab.subarray || slab.slice) { - HEAPU8.set(/** @type {!Uint8Array} */(slab), ret); - } else { - HEAPU8.set(new Uint8Array(slab), ret); - } - return ret; -} - -// include: runtime_strings.js - - -// runtime_strings.js: Strings related runtime functions that are part of both MINIMAL_RUNTIME and regular runtime. - -// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns -// a copy of that string as a Javascript String object. - -var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined; - -/** - * @param {number} idx - * @param {number=} maxBytesToRead - * @return {string} - */ -function UTF8ArrayToString(heap, idx, maxBytesToRead) { - var endIdx = idx + maxBytesToRead; - var endPtr = idx; - // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. - // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. - // (As a tiny code save trick, compare endPtr against endIdx using a negation, so that undefined means Infinity) - while (heap[endPtr] && !(endPtr >= endIdx)) ++endPtr; - - if (endPtr - idx > 16 && heap.subarray && UTF8Decoder) { - return UTF8Decoder.decode(heap.subarray(idx, endPtr)); - } else { - var str = ''; - // If building with TextDecoder, we have already computed the string length above, so test loop end condition against that - while (idx < endPtr) { - // For UTF8 byte structure, see: - // http://en.wikipedia.org/wiki/UTF-8#Description - // https://www.ietf.org/rfc/rfc2279.txt - // https://tools.ietf.org/html/rfc3629 - var u0 = heap[idx++]; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - var u1 = heap[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - var u2 = heap[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (heap[idx++] & 63); - } - - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); - } - } - } - return str; -} - -// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the emscripten HEAP, returns a -// copy of that string as a Javascript String object. -// maxBytesToRead: an optional length that specifies the maximum number of bytes to read. You can omit -// this parameter to scan the string until the first \0 byte. If maxBytesToRead is -// passed, and the string at [ptr, ptr+maxBytesToReadr[ contains a null byte in the -// middle, then the string will cut short at that byte index (i.e. maxBytesToRead will -// not produce a string of exact length [ptr, ptr+maxBytesToRead[) -// N.B. mixing frequent uses of UTF8ToString() with and without maxBytesToRead may -// throw JS JIT optimizations off, so it is worth to consider consistently using one -// style or the other. -/** - * @param {number} ptr - * @param {number=} maxBytesToRead - * @return {string} - */ -function UTF8ToString(ptr, maxBytesToRead) { - return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : ''; -} - -// Copies the given Javascript String object 'str' to the given byte array at address 'outIdx', -// encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. -// Parameters: -// str: the Javascript string to copy. -// heap: the array to copy to. Each index in this array is assumed to be one 8-byte element. -// outIdx: The starting offset in the array to begin the copying. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. -// This count should include the null terminator, -// i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else. -// maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { - if (!(maxBytesToWrite > 0)) // Parameter maxBytesToWrite is not optional. Negative values, 0, null, undefined and false each don't write out any bytes. - return 0; - - var startIdx = outIdx; - var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator. - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629 - var u = str.charCodeAt(i); // possibly a lead surrogate - if (u >= 0xD800 && u <= 0xDFFF) { - var u1 = str.charCodeAt(++i); - u = 0x10000 + ((u & 0x3FF) << 10) | (u1 & 0x3FF); - } - if (u <= 0x7F) { - if (outIdx >= endIdx) break; - heap[outIdx++] = u; - } else if (u <= 0x7FF) { - if (outIdx + 1 >= endIdx) break; - heap[outIdx++] = 0xC0 | (u >> 6); - heap[outIdx++] = 0x80 | (u & 63); - } else if (u <= 0xFFFF) { - if (outIdx + 2 >= endIdx) break; - heap[outIdx++] = 0xE0 | (u >> 12); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - } else { - if (outIdx + 3 >= endIdx) break; - heap[outIdx++] = 0xF0 | (u >> 18); - heap[outIdx++] = 0x80 | ((u >> 12) & 63); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - } - } - // Null-terminate the pointer to the buffer. - heap[outIdx] = 0; - return outIdx - startIdx; -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP. -// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF8(str, outPtr, maxBytesToWrite) { - return stringToUTF8Array(str, HEAPU8,outPtr, maxBytesToWrite); -} - -// Returns the number of bytes the given Javascript string takes if encoded as a UTF8 byte array, EXCLUDING the null terminator byte. -function lengthBytesUTF8(str) { - var len = 0; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var u = str.charCodeAt(i); // possibly a lead surrogate - if (u >= 0xD800 && u <= 0xDFFF) u = 0x10000 + ((u & 0x3FF) << 10) | (str.charCodeAt(++i) & 0x3FF); - if (u <= 0x7F) ++len; - else if (u <= 0x7FF) len += 2; - else if (u <= 0xFFFF) len += 3; - else len += 4; - } - return len; -} - -// end include: runtime_strings.js -// include: runtime_strings_extra.js - - -// runtime_strings_extra.js: Strings related runtime functions that are available only in regular runtime. - -// Given a pointer 'ptr' to a null-terminated ASCII-encoded string in the emscripten HEAP, returns -// a copy of that string as a Javascript String object. - -function AsciiToString(ptr) { - var str = ''; - while (1) { - var ch = HEAPU8[((ptr++)>>0)]; - if (!ch) return str; - str += String.fromCharCode(ch); - } -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in ASCII form. The copy will require at most str.length+1 bytes of space in the HEAP. - -function stringToAscii(str, outPtr) { - return writeAsciiToMemory(str, outPtr, false); -} - -// Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns -// a copy of that string as a Javascript String object. - -var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; - -function UTF16ToString(ptr, maxBytesToRead) { - var endPtr = ptr; - // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself. - // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage. - var idx = endPtr >> 1; - var maxIdx = idx + maxBytesToRead / 2; - // If maxBytesToRead is not passed explicitly, it will be undefined, and this - // will always evaluate to true. This saves on code size. - while (!(idx >= maxIdx) && HEAPU16[idx]) ++idx; - endPtr = idx << 1; - - if (endPtr - ptr > 32 && UTF16Decoder) { - return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr)); - } else { - var str = ''; - - // If maxBytesToRead is not passed explicitly, it will be undefined, and the for-loop's condition - // will always evaluate to true. The loop is then terminated on the first null char. - for (var i = 0; !(i >= maxBytesToRead / 2); ++i) { - var codeUnit = HEAP16[(((ptr)+(i*2))>>1)]; - if (codeUnit == 0) break; - // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through. - str += String.fromCharCode(codeUnit); - } - - return str; - } -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP. -// Use the function lengthBytesUTF16() to compute the exact number of bytes (excluding null terminator) that this function will write. -// Parameters: -// str: the Javascript string to copy. -// outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null -// terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else. -// maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF16(str, outPtr, maxBytesToWrite) { - // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed. - if (maxBytesToWrite === undefined) { - maxBytesToWrite = 0x7FFFFFFF; - } - if (maxBytesToWrite < 2) return 0; - maxBytesToWrite -= 2; // Null terminator. - var startPtr = outPtr; - var numCharsToWrite = (maxBytesToWrite < str.length*2) ? (maxBytesToWrite / 2) : str.length; - for (var i = 0; i < numCharsToWrite; ++i) { - // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP. - var codeUnit = str.charCodeAt(i); // possibly a lead surrogate - HEAP16[((outPtr)>>1)] = codeUnit; - outPtr += 2; - } - // Null-terminate the pointer to the HEAP. - HEAP16[((outPtr)>>1)] = 0; - return outPtr - startPtr; -} - -// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. - -function lengthBytesUTF16(str) { - return str.length*2; -} - -function UTF32ToString(ptr, maxBytesToRead) { - var i = 0; - - var str = ''; - // If maxBytesToRead is not passed explicitly, it will be undefined, and this - // will always evaluate to true. This saves on code size. - while (!(i >= maxBytesToRead / 4)) { - var utf32 = HEAP32[(((ptr)+(i*4))>>2)]; - if (utf32 == 0) break; - ++i; - // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - if (utf32 >= 0x10000) { - var ch = utf32 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); - } else { - str += String.fromCharCode(utf32); - } - } - return str; -} - -// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', -// null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP. -// Use the function lengthBytesUTF32() to compute the exact number of bytes (excluding null terminator) that this function will write. -// Parameters: -// str: the Javascript string to copy. -// outPtr: Byte address in Emscripten HEAP where to write the string to. -// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null -// terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else. -// maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator. -// Returns the number of bytes written, EXCLUDING the null terminator. - -function stringToUTF32(str, outPtr, maxBytesToWrite) { - // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed. - if (maxBytesToWrite === undefined) { - maxBytesToWrite = 0x7FFFFFFF; - } - if (maxBytesToWrite < 4) return 0; - var startPtr = outPtr; - var endPtr = startPtr + maxBytesToWrite - 4; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var codeUnit = str.charCodeAt(i); // possibly a lead surrogate - if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) { - var trailSurrogate = str.charCodeAt(++i); - codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF); - } - HEAP32[((outPtr)>>2)] = codeUnit; - outPtr += 4; - if (outPtr + 4 > endPtr) break; - } - // Null-terminate the pointer to the HEAP. - HEAP32[((outPtr)>>2)] = 0; - return outPtr - startPtr; -} - -// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte. - -function lengthBytesUTF32(str) { - var len = 0; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var codeUnit = str.charCodeAt(i); - if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) ++i; // possibly a lead surrogate, so skip over the tail surrogate. - len += 4; - } - - return len; -} - -// Allocate heap space for a JS string, and write it there. -// It is the responsibility of the caller to free() that memory. -function allocateUTF8(str) { - var size = lengthBytesUTF8(str) + 1; - var ret = _malloc(size); - if (ret) stringToUTF8Array(str, HEAP8, ret, size); - return ret; -} - -// Allocate stack space for a JS string, and write it there. -function allocateUTF8OnStack(str) { - var size = lengthBytesUTF8(str) + 1; - var ret = stackAlloc(size); - stringToUTF8Array(str, HEAP8, ret, size); - return ret; -} - -// Deprecated: This function should not be called because it is unsafe and does not provide -// a maximum length limit of how many bytes it is allowed to write. Prefer calling the -// function stringToUTF8Array() instead, which takes in a maximum length that can be used -// to be secure from out of bounds writes. -/** @deprecated - @param {boolean=} dontAddNull */ -function writeStringToMemory(string, buffer, dontAddNull) { - warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!'); - - var /** @type {number} */ lastChar, /** @type {number} */ end; - if (dontAddNull) { - // stringToUTF8Array always appends null. If we don't want to do that, remember the - // character that existed at the location where the null will be placed, and restore - // that after the write (below). - end = buffer + lengthBytesUTF8(string); - lastChar = HEAP8[end]; - } - stringToUTF8(string, buffer, Infinity); - if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character. -} - -function writeArrayToMemory(array, buffer) { - HEAP8.set(array, buffer); -} - -/** @param {boolean=} dontAddNull */ -function writeAsciiToMemory(str, buffer, dontAddNull) { - for (var i = 0; i < str.length; ++i) { - HEAP8[((buffer++)>>0)] = str.charCodeAt(i); - } - // Null-terminate the pointer to the HEAP. - if (!dontAddNull) HEAP8[((buffer)>>0)] = 0; -} - -// end include: runtime_strings_extra.js -// Memory management - -function alignUp(x, multiple) { - if (x % multiple > 0) { - x += multiple - (x % multiple); - } - return x; -} - -var HEAP, -/** @type {ArrayBuffer} */ - buffer, -/** @type {Int8Array} */ - HEAP8, -/** @type {Uint8Array} */ - HEAPU8, -/** @type {Int16Array} */ - HEAP16, -/** @type {Uint16Array} */ - HEAPU16, -/** @type {Int32Array} */ - HEAP32, -/** @type {Uint32Array} */ - HEAPU32, -/** @type {Float32Array} */ - HEAPF32, -/** @type {Float64Array} */ - HEAPF64; - -function updateGlobalBufferAndViews(buf) { - buffer = buf; - Module['HEAP8'] = HEAP8 = new Int8Array(buf); - Module['HEAP16'] = HEAP16 = new Int16Array(buf); - Module['HEAP32'] = HEAP32 = new Int32Array(buf); - Module['HEAPU8'] = HEAPU8 = new Uint8Array(buf); - Module['HEAPU16'] = HEAPU16 = new Uint16Array(buf); - Module['HEAPU32'] = HEAPU32 = new Uint32Array(buf); - Module['HEAPF32'] = HEAPF32 = new Float32Array(buf); - Module['HEAPF64'] = HEAPF64 = new Float64Array(buf); -} - -var TOTAL_STACK = 5242880; - -var INITIAL_MEMORY = Module['INITIAL_MEMORY'] || 536870912; - -// include: runtime_init_table.js -// In regular non-RELOCATABLE mode the table is exported -// from the wasm module and this will be assigned once -// the exports are available. -var wasmTable; - -// end include: runtime_init_table.js -// include: runtime_stack_check.js - - -// end include: runtime_stack_check.js -// include: runtime_assertions.js - - -// end include: runtime_assertions.js -var __ATPRERUN__ = []; // functions called before the runtime is initialized -var __ATINIT__ = []; // functions called during startup -var __ATMAIN__ = []; // functions called when main() is to be run -var __ATEXIT__ = []; // functions called during shutdown -var __ATPOSTRUN__ = []; // functions called after the main() is called - -var runtimeInitialized = false; -var runtimeExited = false; - -function preRun() { - - if (Module['preRun']) { - if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; - while (Module['preRun'].length) { - addOnPreRun(Module['preRun'].shift()); - } - } - - callRuntimeCallbacks(__ATPRERUN__); -} - -function initRuntime() { - runtimeInitialized = true; - - if (!Module["noFSInit"] && !FS.init.initialized) FS.init(); -TTY.init(); -SOCKFS.root = FS.mount(SOCKFS, {}, null); - callRuntimeCallbacks(__ATINIT__); -} - -function exitRuntime() { - runtimeExited = true; -} - -function postRun() { - - if (Module['postRun']) { - if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; - while (Module['postRun'].length) { - addOnPostRun(Module['postRun'].shift()); - } - } - - callRuntimeCallbacks(__ATPOSTRUN__); -} - -function addOnPreRun(cb) { - __ATPRERUN__.unshift(cb); -} - -function addOnInit(cb) { - __ATINIT__.unshift(cb); -} - -function addOnPreMain(cb) { - __ATMAIN__.unshift(cb); -} - -function addOnExit(cb) { -} - -function addOnPostRun(cb) { - __ATPOSTRUN__.unshift(cb); -} - -// include: runtime_math.js - - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/fround - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/clz32 - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc - -// end include: runtime_math.js -// A counter of dependencies for calling run(). If we need to -// do asynchronous work before running, increment this and -// decrement it. Incrementing must happen in a place like -// Module.preRun (used by emcc to add file preloading). -// Note that you can add dependencies in preRun, even though -// it happens right before run - run will be postponed until -// the dependencies are met. -var runDependencies = 0; -var runDependencyWatcher = null; -var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled - -function getUniqueRunDependency(id) { - return id; -} - -function addRunDependency(id) { - runDependencies++; - - if (Module['monitorRunDependencies']) { - Module['monitorRunDependencies'](runDependencies); - } - -} - -function removeRunDependency(id) { - runDependencies--; - - if (Module['monitorRunDependencies']) { - Module['monitorRunDependencies'](runDependencies); - } - - if (runDependencies == 0) { - if (runDependencyWatcher !== null) { - clearInterval(runDependencyWatcher); - runDependencyWatcher = null; - } - if (dependenciesFulfilled) { - var callback = dependenciesFulfilled; - dependenciesFulfilled = null; - callback(); // can add another dependenciesFulfilled - } - } -} - -Module["preloadedImages"] = {}; // maps url to image data -Module["preloadedAudios"] = {}; // maps url to audio data - -/** @param {string|number=} what */ -function abort(what) { - if (Module['onAbort']) { - Module['onAbort'](what); - } - - what += ''; - err(what); - - ABORT = true; - EXITSTATUS = 1; - - what = 'abort(' + what + '). Build with -s ASSERTIONS=1 for more info.'; - - // Use a wasm runtime error, because a JS error might be seen as a foreign - // exception, which means we'd run destructors on it. We need the error to - // simply make the program stop. - var e = new WebAssembly.RuntimeError(what); - - // Throw the error whether or not MODULARIZE is set because abort is used - // in code paths apart from instantiation where an exception is expected - // to be thrown when abort is called. - throw e; -} - -// {{MEM_INITIALIZER}} - -// include: memoryprofiler.js - - -// end include: memoryprofiler.js -// include: URIUtils.js - - -// Prefix of data URIs emitted by SINGLE_FILE and related options. -var dataURIPrefix = 'data:application/octet-stream;base64,'; - -// Indicates whether filename is a base64 data URI. -function isDataURI(filename) { - // Prefix of data URIs emitted by SINGLE_FILE and related options. - return filename.startsWith(dataURIPrefix); -} - -// Indicates whether filename is delivered via file protocol (as opposed to http/https) -function isFileURI(filename) { - return filename.startsWith('file://'); -} - -// end include: URIUtils.js - var wasmBinaryFile = 'dotnet.wasm'; - if (!isDataURI(wasmBinaryFile)) { - wasmBinaryFile = locateFile(wasmBinaryFile); - } - -function getBinary(file) { - try { - if (file == wasmBinaryFile && wasmBinary) { - return new Uint8Array(wasmBinary); - } - if (readBinary) { - return readBinary(file); - } else { - throw "both async and sync fetching of the wasm failed"; - } - } - catch (err) { - abort(err); - } -} - -function getBinaryPromise() { - // If we don't have the binary yet, try to to load it asynchronously. - // Fetch has some additional restrictions over XHR, like it can't be used on a file:// url. - // See https://github.com/github/fetch/pull/92#issuecomment-140665932 - // Cordova or Electron apps are typically loaded from a file:// url. - // So use fetch if it is available and the url is not a file, otherwise fall back to XHR. - if (!wasmBinary && (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER)) { - if (typeof fetch === 'function' - && !isFileURI(wasmBinaryFile) - ) { - return fetch(wasmBinaryFile, { credentials: 'same-origin' }).then(function(response) { - if (!response['ok']) { - throw "failed to load wasm binary file at '" + wasmBinaryFile + "'"; - } - return response['arrayBuffer'](); - }).catch(function () { - return getBinary(wasmBinaryFile); - }); - } - else { - if (readAsync) { - // fetch is not available or url is file => try XHR (readAsync uses XHR internally) - return new Promise(function(resolve, reject) { - readAsync(wasmBinaryFile, function(response) { resolve(new Uint8Array(/** @type{!ArrayBuffer} */(response))) }, reject) - }); - } - } - } - - // Otherwise, getBinary should be able to get it synchronously - return Promise.resolve().then(function() { return getBinary(wasmBinaryFile); }); -} - -// Create the wasm instance. -// Receives the wasm imports, returns the exports. -function createWasm() { - // prepare imports - var info = { - 'env': asmLibraryArg, - 'wasi_snapshot_preview1': asmLibraryArg, - }; - // Load the wasm module and create an instance of using native support in the JS engine. - // handle a generated wasm instance, receiving its exports and - // performing other necessary setup - /** @param {WebAssembly.Module=} module*/ - function receiveInstance(instance, module) { - var exports = instance.exports; - - Module['asm'] = exports; - - wasmMemory = Module['asm']['memory']; - updateGlobalBufferAndViews(wasmMemory.buffer); - - wasmTable = Module['asm']['__indirect_function_table']; - - addOnInit(Module['asm']['__wasm_call_ctors']); - - removeRunDependency('wasm-instantiate'); - } - // we can't run yet (except in a pthread, where we have a custom sync instantiator) - addRunDependency('wasm-instantiate'); - - // Prefer streaming instantiation if available. - function receiveInstantiationResult(result) { - // 'result' is a ResultObject object which has both the module and instance. - // receiveInstance() will swap in the exports (to Module.asm) so they can be called - // TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193, the above line no longer optimizes out down to the following line. - // When the regression is fixed, can restore the above USE_PTHREADS-enabled path. - receiveInstance(result['instance']); - } - - function instantiateArrayBuffer(receiver) { - return getBinaryPromise().then(function(binary) { - var result = WebAssembly.instantiate(binary, info); - return result; - }).then(receiver, function(reason) { - err('failed to asynchronously prepare wasm: ' + reason); - - abort(reason); - }); - } - - function instantiateAsync() { - if (!wasmBinary && - typeof WebAssembly.instantiateStreaming === 'function' && - !isDataURI(wasmBinaryFile) && - // Don't use streaming for file:// delivered objects in a webview, fetch them synchronously. - !isFileURI(wasmBinaryFile) && - typeof fetch === 'function') { - return fetch(wasmBinaryFile, { credentials: 'same-origin' }).then(function (response) { - var result = WebAssembly.instantiateStreaming(response, info); - return result.then(receiveInstantiationResult, function(reason) { - // We expect the most common failure cause to be a bad MIME type for the binary, - // in which case falling back to ArrayBuffer instantiation should work. - err('wasm streaming compile failed: ' + reason); - err('falling back to ArrayBuffer instantiation'); - return instantiateArrayBuffer(receiveInstantiationResult); - }); - }); - } else { - return instantiateArrayBuffer(receiveInstantiationResult); - } - } - - // User shell pages can write their own Module.instantiateWasm = function(imports, successCallback) callback - // to manually instantiate the Wasm module themselves. This allows pages to run the instantiation parallel - // to any other async startup actions they are performing. - if (Module['instantiateWasm']) { - try { - var exports = Module['instantiateWasm'](info, receiveInstance); - return exports; - } catch(e) { - err('Module.instantiateWasm callback failed with error: ' + e); - return false; - } - } - - instantiateAsync(); - return {}; // no exports yet; we'll fill them in later -} - -// Globals used by JS i64 conversions (see makeSetValue) -var tempDouble; -var tempI64; - -// === Body === - -var ASM_CONSTS = { - 652180: function($0, $1) {var level = $0; var message = Module.UTF8ToString ($1); var namespace = "Debugger.Debug"; if (MONO["logging"] && MONO.logging["debugger"]) { MONO.logging.debugger (level, message); return; } console.debug("%s: %s", namespace, message);}, - 652420: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652482: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652544: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652606: function($0, $1, $2, $3) {MONO.mono_wasm_add_dbg_command_received ($0, $1, $2, $3);}, - 652668: function($0, $1) {MONO.mono_wasm_add_dbg_command_received (1, 0, $0, $1);}, - 652728: function($0, $1) {MONO.string_decoder.decode($0, $0 + $1, true);}, - 652779: function($0, $1, $2) {var js_str = MONO.string_decoder.copy ($0); try { var res = eval (js_str); setValue ($2, 0, "i32"); if (res === null || res === undefined) return 0; else res = res.toString (); } catch (e) { res = e.toString(); setValue ($2, 1, "i32"); if (res === null || res === undefined) res = "unknown exception"; var stack = e.stack; if (stack) { if (stack.startsWith(res)) res = stack; else res += "\n" + stack; } } var buff = Module._malloc((res.length + 1) * 2); stringToUTF16 (res, buff, (res.length + 1) * 2); setValue ($1, res.length, "i32"); return buff;}, - 653334: function($0, $1, $2, $3, $4) {var log_level = $0; var message = Module.UTF8ToString ($1); var isFatal = $2; var domain = Module.UTF8ToString ($3); var dataPtr = $4; if (MONO["logging"] && MONO.logging["trace"]) { MONO.logging.trace(domain, log_level, message, isFatal, dataPtr); return; } if (isFatal) console.trace (message); switch (Module.UTF8ToString ($0)) { case "critical": case "error": console.error (message); break; case "warning": console.warn (message); break; case "message": console.log (message); break; case "info": console.info (message); break; case "debug": console.debug (message); break; default: console.log (message); break; }} -}; -function compile_function(snippet_ptr,len,is_exception){ try { var data = MONO.string_decoder.decode (snippet_ptr, snippet_ptr + len); var wrapper = '(function () { ' + data + ' })'; var funcFactory = eval(wrapper); var func = funcFactory(); if (typeof func !== 'function') { throw new Error('Code must return an instance of a JavaScript function. ' + 'Please use `return` statement to return a function.'); } setValue (is_exception, 0, "i32"); return BINDING.js_to_mono_obj (func, true); } catch (e) { res = e.toString (); setValue (is_exception, 1, "i32"); if (res === null || res === undefined) res = "unknown exception"; return BINDING.js_to_mono_obj (res, true); } } - - - - - - function callRuntimeCallbacks(callbacks) { - while (callbacks.length > 0) { - var callback = callbacks.shift(); - if (typeof callback == 'function') { - callback(Module); // Pass the module as the first argument. - continue; - } - var func = callback.func; - if (typeof func === 'number') { - if (callback.arg === undefined) { - wasmTable.get(func)(); - } else { - wasmTable.get(func)(callback.arg); - } - } else { - func(callback.arg === undefined ? null : callback.arg); - } - } - } - - function demangle(func) { - return func; - } - - function demangleAll(text) { - var regex = - /\b_Z[\w\d_]+/g; - return text.replace(regex, - function(x) { - var y = demangle(x); - return x === y ? x : (y + ' [' + x + ']'); - }); - } - - function jsStackTrace() { - var error = new Error(); - if (!error.stack) { - // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown, - // so try that as a special-case. - try { - throw new Error(); - } catch(e) { - error = e; - } - if (!error.stack) { - return '(no stack trace available)'; - } - } - return error.stack.toString(); - } - - var runtimeKeepaliveCounter=0; - function keepRuntimeAlive() { - return noExitRuntime || runtimeKeepaliveCounter > 0; - } - - function stackTrace() { - var js = jsStackTrace(); - if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace'](); - return demangleAll(js); - } - - function ___assert_fail(condition, filename, line, func) { - abort('Assertion failed: ' + UTF8ToString(condition) + ', at: ' + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); - } - - var _emscripten_get_now;if (ENVIRONMENT_IS_NODE) { - _emscripten_get_now = function() { - var t = process['hrtime'](); - return t[0] * 1e3 + t[1] / 1e6; - }; - } else if (typeof dateNow !== 'undefined') { - _emscripten_get_now = dateNow; - } else _emscripten_get_now = function() { return performance.now(); } - ; - - var _emscripten_get_now_is_monotonic=true;; - - function setErrNo(value) { - HEAP32[((___errno_location())>>2)] = value; - return value; - } - function _clock_gettime(clk_id, tp) { - // int clock_gettime(clockid_t clk_id, struct timespec *tp); - var now; - if (clk_id === 0) { - now = Date.now(); - } else if ((clk_id === 1 || clk_id === 4) && _emscripten_get_now_is_monotonic) { - now = _emscripten_get_now(); - } else { - setErrNo(28); - return -1; - } - HEAP32[((tp)>>2)] = (now/1000)|0; // seconds - HEAP32[(((tp)+(4))>>2)] = ((now % 1000)*1000*1000)|0; // nanoseconds - return 0; - } - function ___clock_gettime(a0,a1 - ) { - return _clock_gettime(a0,a1); - } - - var ExceptionInfoAttrs={DESTRUCTOR_OFFSET:0,REFCOUNT_OFFSET:4,TYPE_OFFSET:8,CAUGHT_OFFSET:12,RETHROWN_OFFSET:13,SIZE:16}; - function ___cxa_allocate_exception(size) { - // Thrown object is prepended by exception metadata block - return _malloc(size + ExceptionInfoAttrs.SIZE) + ExceptionInfoAttrs.SIZE; - } - - function ExceptionInfo(excPtr) { - this.excPtr = excPtr; - this.ptr = excPtr - ExceptionInfoAttrs.SIZE; - - this.set_type = function(type) { - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.TYPE_OFFSET))>>2)] = type; - }; - - this.get_type = function() { - return HEAP32[(((this.ptr)+(ExceptionInfoAttrs.TYPE_OFFSET))>>2)]; - }; - - this.set_destructor = function(destructor) { - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.DESTRUCTOR_OFFSET))>>2)] = destructor; - }; - - this.get_destructor = function() { - return HEAP32[(((this.ptr)+(ExceptionInfoAttrs.DESTRUCTOR_OFFSET))>>2)]; - }; - - this.set_refcount = function(refcount) { - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)] = refcount; - }; - - this.set_caught = function (caught) { - caught = caught ? 1 : 0; - HEAP8[(((this.ptr)+(ExceptionInfoAttrs.CAUGHT_OFFSET))>>0)] = caught; - }; - - this.get_caught = function () { - return HEAP8[(((this.ptr)+(ExceptionInfoAttrs.CAUGHT_OFFSET))>>0)] != 0; - }; - - this.set_rethrown = function (rethrown) { - rethrown = rethrown ? 1 : 0; - HEAP8[(((this.ptr)+(ExceptionInfoAttrs.RETHROWN_OFFSET))>>0)] = rethrown; - }; - - this.get_rethrown = function () { - return HEAP8[(((this.ptr)+(ExceptionInfoAttrs.RETHROWN_OFFSET))>>0)] != 0; - }; - - // Initialize native structure fields. Should be called once after allocated. - this.init = function(type, destructor) { - this.set_type(type); - this.set_destructor(destructor); - this.set_refcount(0); - this.set_caught(false); - this.set_rethrown(false); - } - - this.add_ref = function() { - var value = HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)]; - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)] = value + 1; - }; - - // Returns true if last reference released. - this.release_ref = function() { - var prev = HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)]; - HEAP32[(((this.ptr)+(ExceptionInfoAttrs.REFCOUNT_OFFSET))>>2)] = prev - 1; - return prev === 1; - }; - } - function CatchInfo(ptr) { - - this.free = function() { - _free(this.ptr); - this.ptr = 0; - }; - - this.set_base_ptr = function(basePtr) { - HEAP32[((this.ptr)>>2)] = basePtr; - }; - - this.get_base_ptr = function() { - return HEAP32[((this.ptr)>>2)]; - }; - - this.set_adjusted_ptr = function(adjustedPtr) { - var ptrSize = 4; - HEAP32[(((this.ptr)+(ptrSize))>>2)] = adjustedPtr; - }; - - this.get_adjusted_ptr = function() { - var ptrSize = 4; - return HEAP32[(((this.ptr)+(ptrSize))>>2)]; - }; - - // Get pointer which is expected to be received by catch clause in C++ code. It may be adjusted - // when the pointer is casted to some of the exception object base classes (e.g. when virtual - // inheritance is used). When a pointer is thrown this method should return the thrown pointer - // itself. - this.get_exception_ptr = function() { - // Work around a fastcomp bug, this code is still included for some reason in a build without - // exceptions support. - var isPointer = ___cxa_is_pointer_type( - this.get_exception_info().get_type()); - if (isPointer) { - return HEAP32[((this.get_base_ptr())>>2)]; - } - var adjusted = this.get_adjusted_ptr(); - if (adjusted !== 0) return adjusted; - return this.get_base_ptr(); - }; - - this.get_exception_info = function() { - return new ExceptionInfo(this.get_base_ptr()); - }; - - if (ptr === undefined) { - this.ptr = _malloc(8); - this.set_adjusted_ptr(0); - } else { - this.ptr = ptr; - } - } - - var exceptionCaught= []; - - function exception_addRef(info) { - info.add_ref(); - } - - var uncaughtExceptionCount=0; - function ___cxa_begin_catch(ptr) { - var catchInfo = new CatchInfo(ptr); - var info = catchInfo.get_exception_info(); - if (!info.get_caught()) { - info.set_caught(true); - uncaughtExceptionCount--; - } - info.set_rethrown(false); - exceptionCaught.push(catchInfo); - exception_addRef(info); - return catchInfo.get_exception_ptr(); - } - - var exceptionLast=0; - - function ___cxa_free_exception(ptr) { - return _free(new ExceptionInfo(ptr).ptr); - } - function exception_decRef(info) { - // A rethrown exception can reach refcount 0; it must not be discarded - // Its next handler will clear the rethrown flag and addRef it, prior to - // final decRef and destruction here - if (info.release_ref() && !info.get_rethrown()) { - var destructor = info.get_destructor(); - if (destructor) { - // In Wasm, destructors return 'this' as in ARM - wasmTable.get(destructor)(info.excPtr); - } - ___cxa_free_exception(info.excPtr); - } - } - function ___cxa_end_catch() { - // Clear state flag. - _setThrew(0); - // Call destructor if one is registered then clear it. - var catchInfo = exceptionCaught.pop(); - - exception_decRef(catchInfo.get_exception_info()); - catchInfo.free(); - exceptionLast = 0; // XXX in decRef? - } - - function ___resumeException(catchInfoPtr) { - var catchInfo = new CatchInfo(catchInfoPtr); - var ptr = catchInfo.get_base_ptr(); - if (!exceptionLast) { exceptionLast = ptr; } - catchInfo.free(); - throw ptr; - } - function ___cxa_find_matching_catch_2() { - var thrown = exceptionLast; - if (!thrown) { - // just pass through the null ptr - setTempRet0(0); return ((0)|0); - } - var info = new ExceptionInfo(thrown); - var thrownType = info.get_type(); - var catchInfo = new CatchInfo(); - catchInfo.set_base_ptr(thrown); - if (!thrownType) { - // just pass through the thrown ptr - setTempRet0(0); return ((catchInfo.ptr)|0); - } - var typeArray = Array.prototype.slice.call(arguments); - - // can_catch receives a **, add indirection - var stackTop = stackSave(); - var exceptionThrowBuf = stackAlloc(4); - HEAP32[((exceptionThrowBuf)>>2)] = thrown; - // The different catch blocks are denoted by different types. - // Due to inheritance, those types may not precisely match the - // type of the thrown object. Find one which matches, and - // return the type of the catch block which should be called. - for (var i = 0; i < typeArray.length; i++) { - var caughtType = typeArray[i]; - if (caughtType === 0 || caughtType === thrownType) { - // Catch all clause matched or exactly the same type is caught - break; - } - if (___cxa_can_catch(caughtType, thrownType, exceptionThrowBuf)) { - var adjusted = HEAP32[((exceptionThrowBuf)>>2)]; - if (thrown !== adjusted) { - catchInfo.set_adjusted_ptr(adjusted); - } - setTempRet0(caughtType); return ((catchInfo.ptr)|0); - } - } - stackRestore(stackTop); - setTempRet0(thrownType); return ((catchInfo.ptr)|0); - } - - function ___cxa_find_matching_catch_3() { - var thrown = exceptionLast; - if (!thrown) { - // just pass through the null ptr - setTempRet0(0); return ((0)|0); - } - var info = new ExceptionInfo(thrown); - var thrownType = info.get_type(); - var catchInfo = new CatchInfo(); - catchInfo.set_base_ptr(thrown); - if (!thrownType) { - // just pass through the thrown ptr - setTempRet0(0); return ((catchInfo.ptr)|0); - } - var typeArray = Array.prototype.slice.call(arguments); - - // can_catch receives a **, add indirection - var stackTop = stackSave(); - var exceptionThrowBuf = stackAlloc(4); - HEAP32[((exceptionThrowBuf)>>2)] = thrown; - // The different catch blocks are denoted by different types. - // Due to inheritance, those types may not precisely match the - // type of the thrown object. Find one which matches, and - // return the type of the catch block which should be called. - for (var i = 0; i < typeArray.length; i++) { - var caughtType = typeArray[i]; - if (caughtType === 0 || caughtType === thrownType) { - // Catch all clause matched or exactly the same type is caught - break; - } - if (___cxa_can_catch(caughtType, thrownType, exceptionThrowBuf)) { - var adjusted = HEAP32[((exceptionThrowBuf)>>2)]; - if (thrown !== adjusted) { - catchInfo.set_adjusted_ptr(adjusted); - } - setTempRet0(caughtType); return ((catchInfo.ptr)|0); - } - } - stackRestore(stackTop); - setTempRet0(thrownType); return ((catchInfo.ptr)|0); - } - - - function ___cxa_rethrow() { - var catchInfo = exceptionCaught.pop(); - if (!catchInfo) { - abort('no exception to throw'); - } - var info = catchInfo.get_exception_info(); - var ptr = catchInfo.get_base_ptr(); - if (!info.get_rethrown()) { - // Only pop if the corresponding push was through rethrow_primary_exception - exceptionCaught.push(catchInfo); - info.set_rethrown(true); - info.set_caught(false); - uncaughtExceptionCount++; - } else { - catchInfo.free(); - } - exceptionLast = ptr; - throw ptr; - } - - function ___cxa_throw(ptr, type, destructor) { - var info = new ExceptionInfo(ptr); - // Initialize ExceptionInfo content after it was allocated in __cxa_allocate_exception. - info.init(type, destructor); - exceptionLast = ptr; - uncaughtExceptionCount++; - throw ptr; - } - - function _tzset() { - // TODO: Use (malleable) environment variables instead of system settings. - if (_tzset.called) return; - _tzset.called = true; - - var currentYear = new Date().getFullYear(); - var winter = new Date(currentYear, 0, 1); - var summer = new Date(currentYear, 6, 1); - var winterOffset = winter.getTimezoneOffset(); - var summerOffset = summer.getTimezoneOffset(); - - // Local standard timezone offset. Local standard time is not adjusted for daylight savings. - // This code uses the fact that getTimezoneOffset returns a greater value during Standard Time versus Daylight Saving Time (DST). - // Thus it determines the expected output during Standard Time, and it compares whether the output of the given date the same (Standard) or less (DST). - var stdTimezoneOffset = Math.max(winterOffset, summerOffset); - - // timezone is specified as seconds west of UTC ("The external variable - // `timezone` shall be set to the difference, in seconds, between - // Coordinated Universal Time (UTC) and local standard time."), the same - // as returned by stdTimezoneOffset. - // See http://pubs.opengroup.org/onlinepubs/009695399/functions/tzset.html - HEAP32[((__get_timezone())>>2)] = stdTimezoneOffset * 60; - - HEAP32[((__get_daylight())>>2)] = Number(winterOffset != summerOffset); - - function extractZone(date) { - var match = date.toTimeString().match(/\(([A-Za-z ]+)\)$/); - return match ? match[1] : "GMT"; - }; - var winterName = extractZone(winter); - var summerName = extractZone(summer); - var winterNamePtr = allocateUTF8(winterName); - var summerNamePtr = allocateUTF8(summerName); - if (summerOffset < winterOffset) { - // Northern hemisphere - HEAP32[((__get_tzname())>>2)] = winterNamePtr; - HEAP32[(((__get_tzname())+(4))>>2)] = summerNamePtr; - } else { - HEAP32[((__get_tzname())>>2)] = summerNamePtr; - HEAP32[(((__get_tzname())+(4))>>2)] = winterNamePtr; - } - } - function _localtime_r(time, tmPtr) { - _tzset(); - var date = new Date(HEAP32[((time)>>2)]*1000); - HEAP32[((tmPtr)>>2)] = date.getSeconds(); - HEAP32[(((tmPtr)+(4))>>2)] = date.getMinutes(); - HEAP32[(((tmPtr)+(8))>>2)] = date.getHours(); - HEAP32[(((tmPtr)+(12))>>2)] = date.getDate(); - HEAP32[(((tmPtr)+(16))>>2)] = date.getMonth(); - HEAP32[(((tmPtr)+(20))>>2)] = date.getFullYear()-1900; - HEAP32[(((tmPtr)+(24))>>2)] = date.getDay(); - - var start = new Date(date.getFullYear(), 0, 1); - var yday = ((date.getTime() - start.getTime()) / (1000 * 60 * 60 * 24))|0; - HEAP32[(((tmPtr)+(28))>>2)] = yday; - HEAP32[(((tmPtr)+(36))>>2)] = -(date.getTimezoneOffset() * 60); - - // Attention: DST is in December in South, and some regions don't have DST at all. - var summerOffset = new Date(date.getFullYear(), 6, 1).getTimezoneOffset(); - var winterOffset = start.getTimezoneOffset(); - var dst = (summerOffset != winterOffset && date.getTimezoneOffset() == Math.min(winterOffset, summerOffset))|0; - HEAP32[(((tmPtr)+(32))>>2)] = dst; - - var zonePtr = HEAP32[(((__get_tzname())+(dst ? 4 : 0))>>2)]; - HEAP32[(((tmPtr)+(40))>>2)] = zonePtr; - - return tmPtr; - } - function ___localtime_r(a0,a1 - ) { - return _localtime_r(a0,a1); - } - - - var PATH={splitPath:function(filename) { - var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - return splitPathRe.exec(filename).slice(1); - },normalizeArray:function(parts, allowAboveRoot) { - // if the path tries to go above the root, `up` ends up > 0 - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === '.') { - parts.splice(i, 1); - } else if (last === '..') { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - // if the path is allowed to go above the root, restore leading ..s - if (allowAboveRoot) { - for (; up; up--) { - parts.unshift('..'); - } - } - return parts; - },normalize:function(path) { - var isAbsolute = path.charAt(0) === '/', - trailingSlash = path.substr(-1) === '/'; - // Normalize the path - path = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), !isAbsolute).join('/'); - if (!path && !isAbsolute) { - path = '.'; - } - if (path && trailingSlash) { - path += '/'; - } - return (isAbsolute ? '/' : '') + path; - },dirname:function(path) { - var result = PATH.splitPath(path), - root = result[0], - dir = result[1]; - if (!root && !dir) { - // No dirname whatsoever - return '.'; - } - if (dir) { - // It has a dirname, strip trailing slash - dir = dir.substr(0, dir.length - 1); - } - return root + dir; - },basename:function(path) { - // EMSCRIPTEN return '/'' for '/', not an empty string - if (path === '/') return '/'; - path = PATH.normalize(path); - path = path.replace(/\/$/, ""); - var lastSlash = path.lastIndexOf('/'); - if (lastSlash === -1) return path; - return path.substr(lastSlash+1); - },extname:function(path) { - return PATH.splitPath(path)[3]; - },join:function() { - var paths = Array.prototype.slice.call(arguments, 0); - return PATH.normalize(paths.join('/')); - },join2:function(l, r) { - return PATH.normalize(l + '/' + r); - }}; - - function getRandomDevice() { - if (typeof crypto === 'object' && typeof crypto['getRandomValues'] === 'function') { - // for modern web browsers - var randomBuffer = new Uint8Array(1); - return function() { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; - } else - if (ENVIRONMENT_IS_NODE) { - // for nodejs with or without crypto support included - try { - var crypto_module = require('crypto'); - // nodejs has crypto support - return function() { return crypto_module['randomBytes'](1)[0]; }; - } catch (e) { - // nodejs doesn't have crypto support - } - } - // we couldn't find a proper implementation, as Math.random() is not suitable for /dev/random, see emscripten-core/emscripten/pull/7096 - return function() { abort("randomDevice"); }; - } - - var PATH_FS={resolve:function() { - var resolvedPath = '', - resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? arguments[i] : FS.cwd(); - // Skip empty and invalid entries - if (typeof path !== 'string') { - throw new TypeError('Arguments to path.resolve must be strings'); - } else if (!path) { - return ''; // an invalid portion invalidates the whole thing - } - resolvedPath = path + '/' + resolvedPath; - resolvedAbsolute = path.charAt(0) === '/'; - } - // At this point the path should be resolved to a full absolute path, but - // handle relative paths to be safe (might happen when process.cwd() fails) - resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter(function(p) { - return !!p; - }), !resolvedAbsolute).join('/'); - return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - },relative:function(from, to) { - from = PATH_FS.resolve(from).substr(1); - to = PATH_FS.resolve(to).substr(1); - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== '') break; - } - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== '') break; - } - if (start > end) return []; - return arr.slice(start, end - start + 1); - } - var fromParts = trim(from.split('/')); - var toParts = trim(to.split('/')); - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push('..'); - } - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - return outputParts.join('/'); - }}; - - var TTY={ttys:[],init:function () { - // https://github.com/emscripten-core/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // currently, FS.init does not distinguish if process.stdin is a file or TTY - // // device, it always assumes it's a TTY device. because of this, we're forcing - // // process.stdin to UTF8 encoding to at least make stdin reading compatible - // // with text files until FS.init can be refactored. - // process['stdin']['setEncoding']('utf8'); - // } - },shutdown:function() { - // https://github.com/emscripten-core/emscripten/pull/1555 - // if (ENVIRONMENT_IS_NODE) { - // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? - // // isaacs: because now it's reading from the stream, you've expressed interest in it, so that read() kicks off a _read() which creates a ReadReq operation - // // inolen: I thought read() in that case was a synchronous operation that just grabbed some amount of buffered data if it exists? - // // isaacs: it is. but it also triggers a _read() call, which calls readStart() on the handle - // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call - // process['stdin']['pause'](); - // } - },register:function(dev, ops) { - TTY.ttys[dev] = { input: [], output: [], ops: ops }; - FS.registerDevice(dev, TTY.stream_ops); - },stream_ops:{open:function(stream) { - var tty = TTY.ttys[stream.node.rdev]; - if (!tty) { - throw new FS.ErrnoError(43); - } - stream.tty = tty; - stream.seekable = false; - },close:function(stream) { - // flush any pending line data - stream.tty.ops.flush(stream.tty); - },flush:function(stream) { - stream.tty.ops.flush(stream.tty); - },read:function(stream, buffer, offset, length, pos /* ignored */) { - if (!stream.tty || !stream.tty.ops.get_char) { - throw new FS.ErrnoError(60); - } - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = stream.tty.ops.get_char(stream.tty); - } catch (e) { - throw new FS.ErrnoError(29); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(6); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - },write:function(stream, buffer, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.put_char) { - throw new FS.ErrnoError(60); - } - try { - for (var i = 0; i < length; i++) { - stream.tty.ops.put_char(stream.tty, buffer[offset+i]); - } - } catch (e) { - throw new FS.ErrnoError(29); - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - }},default_tty_ops:{get_char:function(tty) { - if (!tty.input.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = Buffer.alloc ? Buffer.alloc(BUFSIZE) : new Buffer(BUFSIZE); - var bytesRead = 0; - - try { - bytesRead = nodeFS.readSync(process.stdin.fd, buf, 0, BUFSIZE, null); - } catch(e) { - // Cross-platform differences: on Windows, reading EOF throws an exception, but on other OSes, - // reading EOF returns 0. Uniformize behavior by treating the EOF exception to return 0. - if (e.toString().includes('EOF')) bytesRead = 0; - else throw e; - } - - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } else { - result = null; - } - } else - if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else if (typeof readline == 'function') { - // Command line. - result = readline(); - if (result !== null) { - result += '\n'; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - },put_char:function(tty, val) { - if (val === null || val === 10) { - out(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. - } - },flush:function(tty) { - if (tty.output && tty.output.length > 0) { - out(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }},default_tty1_ops:{put_char:function(tty, val) { - if (val === null || val === 10) { - err(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) tty.output.push(val); - } - },flush:function(tty) { - if (tty.output && tty.output.length > 0) { - err(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - }}}; - - function mmapAlloc(size) { - var alignedSize = alignMemory(size, 65536); - var ptr = _malloc(alignedSize); - while (size < alignedSize) HEAP8[ptr + size++] = 0; - return ptr; - } - var MEMFS={ops_table:null,mount:function(mount) { - return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createNode:function(parent, name, mode, dev) { - if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { - // no supported - throw new FS.ErrnoError(63); - } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops - } - }; - } - var node = FS.createNode(parent, name, mode, dev); - if (FS.isDir(node.mode)) { - node.node_ops = MEMFS.ops_table.dir.node; - node.stream_ops = MEMFS.ops_table.dir.stream; - node.contents = {}; - } else if (FS.isFile(node.mode)) { - node.node_ops = MEMFS.ops_table.file.node; - node.stream_ops = MEMFS.ops_table.file.stream; - node.usedBytes = 0; // The actual number of bytes used in the typed array, as opposed to contents.length which gives the whole capacity. - // When the byte data of the file is populated, this will point to either a typed array, or a normal JS array. Typed arrays are preferred - // for performance, and used by default. However, typed arrays are not resizable like normal JS arrays are, so there is a small disk size - // penalty involved for appending file writes that continuously grow a file similar to std::vector capacity vs used -scheme. - node.contents = null; - } else if (FS.isLink(node.mode)) { - node.node_ops = MEMFS.ops_table.link.node; - node.stream_ops = MEMFS.ops_table.link.stream; - } else if (FS.isChrdev(node.mode)) { - node.node_ops = MEMFS.ops_table.chrdev.node; - node.stream_ops = MEMFS.ops_table.chrdev.stream; - } - node.timestamp = Date.now(); - // add the new node to the parent - if (parent) { - parent.contents[name] = node; - parent.timestamp = node.timestamp; - } - return node; - },getFileDataAsTypedArray:function(node) { - if (!node.contents) return new Uint8Array(0); - if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. - return new Uint8Array(node.contents); - },expandFileStorage:function(node, newCapacity) { - var prevCapacity = node.contents ? node.contents.length : 0; - if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. - // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. - // For small filesizes (<1MB), perform size*2 geometric increase, but for large sizes, do a much more conservative size*1.125 increase to - // avoid overshooting the allocation cap by a very large margin. - var CAPACITY_DOUBLING_MAX = 1024 * 1024; - newCapacity = Math.max(newCapacity, (prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2.0 : 1.125)) >>> 0); - if (prevCapacity != 0) newCapacity = Math.max(newCapacity, 256); // At minimum allocate 256b for each file when expanding. - var oldContents = node.contents; - node.contents = new Uint8Array(newCapacity); // Allocate new storage. - if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - },resizeFileStorage:function(node, newSize) { - if (node.usedBytes == newSize) return; - if (newSize == 0) { - node.contents = null; // Fully decommit when requesting a resize to zero. - node.usedBytes = 0; - } else { - var oldContents = node.contents; - node.contents = new Uint8Array(newSize); // Allocate new storage. - if (oldContents) { - node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); // Copy old data over to the new storage. - } - node.usedBytes = newSize; - } - },node_ops:{getattr:function(node) { - var attr = {}; - // device numbers reuse inode numbers. - attr.dev = FS.isChrdev(node.mode) ? node.id : 1; - attr.ino = node.id; - attr.mode = node.mode; - attr.nlink = 1; - attr.uid = 0; - attr.gid = 0; - attr.rdev = node.rdev; - if (FS.isDir(node.mode)) { - attr.size = 4096; - } else if (FS.isFile(node.mode)) { - attr.size = node.usedBytes; - } else if (FS.isLink(node.mode)) { - attr.size = node.link.length; - } else { - attr.size = 0; - } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); - // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), - // but this is not required by the standard. - attr.blksize = 4096; - attr.blocks = Math.ceil(attr.size / attr.blksize); - return attr; - },setattr:function(node, attr) { - if (attr.mode !== undefined) { - node.mode = attr.mode; - } - if (attr.timestamp !== undefined) { - node.timestamp = attr.timestamp; - } - if (attr.size !== undefined) { - MEMFS.resizeFileStorage(node, attr.size); - } - },lookup:function(parent, name) { - throw FS.genericErrors[44]; - },mknod:function(parent, name, mode, dev) { - return MEMFS.createNode(parent, name, mode, dev); - },rename:function(old_node, new_dir, new_name) { - // if we're overwriting a directory at new_name, make sure it's empty. - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { - for (var i in new_node.contents) { - throw new FS.ErrnoError(55); - } - } - } - // do the internal rewiring - delete old_node.parent.contents[old_node.name]; - old_node.parent.timestamp = Date.now() - old_node.name = new_name; - new_dir.contents[new_name] = old_node; - new_dir.timestamp = old_node.parent.timestamp; - old_node.parent = new_dir; - },unlink:function(parent, name) { - delete parent.contents[name]; - parent.timestamp = Date.now(); - },rmdir:function(parent, name) { - var node = FS.lookupNode(parent, name); - for (var i in node.contents) { - throw new FS.ErrnoError(55); - } - delete parent.contents[name]; - parent.timestamp = Date.now(); - },readdir:function(node) { - var entries = ['.', '..']; - for (var key in node.contents) { - if (!node.contents.hasOwnProperty(key)) { - continue; - } - entries.push(key); - } - return entries; - },symlink:function(parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); - node.link = oldpath; - return node; - },readlink:function(node) { - if (!FS.isLink(node.mode)) { - throw new FS.ErrnoError(28); - } - return node.link; - }},stream_ops:{read:function(stream, buffer, offset, length, position) { - var contents = stream.node.contents; - if (position >= stream.node.usedBytes) return 0; - var size = Math.min(stream.node.usedBytes - position, length); - if (size > 8 && contents.subarray) { // non-trivial, and typed array - buffer.set(contents.subarray(position, position + size), offset); - } else { - for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; - } - return size; - },write:function(stream, buffer, offset, length, position, canOwn) { - // If the buffer is located in main memory (HEAP), and if - // memory can grow, we can't hold on to references of the - // memory buffer, as they may get invalidated. That means we - // need to do copy its contents. - if (buffer.buffer === HEAP8.buffer) { - canOwn = false; - } - - if (!length) return 0; - var node = stream.node; - node.timestamp = Date.now(); - - if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? - if (canOwn) { - node.contents = buffer.subarray(offset, offset + length); - node.usedBytes = length; - return length; - } else if (node.usedBytes === 0 && position === 0) { // If this is a simple first write to an empty file, do a fast set since we don't need to care about old data. - node.contents = buffer.slice(offset, offset + length); - node.usedBytes = length; - return length; - } else if (position + length <= node.usedBytes) { // Writing to an already allocated and used subrange of the file? - node.contents.set(buffer.subarray(offset, offset + length), position); - return length; - } - } - - // Appending to an existing file and we need to reallocate, or source data did not come as a typed array. - MEMFS.expandFileStorage(node, position+length); - if (node.contents.subarray && buffer.subarray) { - // Use typed array write which is available. - node.contents.set(buffer.subarray(offset, offset + length), position); - } else { - for (var i = 0; i < length; i++) { - node.contents[position + i] = buffer[offset + i]; // Or fall back to manual write if not. - } - } - node.usedBytes = Math.max(node.usedBytes, position + length); - return length; - },llseek:function(stream, offset, whence) { - var position = offset; - if (whence === 1) { - position += stream.position; - } else if (whence === 2) { - if (FS.isFile(stream.node.mode)) { - position += stream.node.usedBytes; - } - } - if (position < 0) { - throw new FS.ErrnoError(28); - } - return position; - },allocate:function(stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - },mmap:function(stream, address, length, position, prot, flags) { - if (address !== 0) { - // We don't currently support location hints for the address of the mapping - throw new FS.ErrnoError(28); - } - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - var ptr; - var allocated; - var contents = stream.node.contents; - // Only make a new copy when MAP_PRIVATE is specified. - if (!(flags & 2) && contents.buffer === buffer) { - // We can't emulate MAP_SHARED when the file is not backed by the buffer - // we're mapping to (e.g. the HEAP buffer). - allocated = false; - ptr = contents.byteOffset; - } else { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < contents.length) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - allocated = true; - ptr = mmapAlloc(length); - if (!ptr) { - throw new FS.ErrnoError(48); - } - HEAP8.set(contents, ptr); - } - return { ptr: ptr, allocated: allocated }; - },msync:function(stream, buffer, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (mmapFlags & 2) { - // MAP_PRIVATE calls need not to be synced back to underlying fs - return 0; - } - - var bytesWritten = MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); - // should we check if bytesWritten and length are the same? - return 0; - }}}; - var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:function(path, opts) { - path = PATH_FS.resolve(FS.cwd(), path); - opts = opts || {}; - - if (!path) return { path: '', node: null }; - - var defaults = { - follow_mount: true, - recurse_count: 0 - }; - for (var key in defaults) { - if (opts[key] === undefined) { - opts[key] = defaults[key]; - } - } - - if (opts.recurse_count > 8) { // max recursive lookup of 8 - throw new FS.ErrnoError(32); - } - - // split the path - var parts = PATH.normalizeArray(path.split('/').filter(function(p) { - return !!p; - }), false); - - // start at the root - var current = FS.root; - var current_path = '/'; - - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } - - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); - - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current)) { - if (!islast || (islast && opts.follow_mount)) { - current = current.mounted.root; - } - } - - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH_FS.resolve(PATH.dirname(current_path), link); - - var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count }); - current = lookup.node; - - if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - throw new FS.ErrnoError(32); - } - } - } - } - - return { path: current_path, node: current }; - },getPath:function(node) { - var path; - while (true) { - if (FS.isRoot(node)) { - var mount = node.mount.mountpoint; - if (!path) return mount; - return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; - } - path = path ? node.name + '/' + path : node.name; - node = node.parent; - } - },hashName:function(parentid, name) { - var hash = 0; - - for (var i = 0; i < name.length; i++) { - hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; - } - return ((parentid + hash) >>> 0) % FS.nameTable.length; - },hashAddNode:function(node) { - var hash = FS.hashName(node.parent.id, node.name); - node.name_next = FS.nameTable[hash]; - FS.nameTable[hash] = node; - },hashRemoveNode:function(node) { - var hash = FS.hashName(node.parent.id, node.name); - if (FS.nameTable[hash] === node) { - FS.nameTable[hash] = node.name_next; - } else { - var current = FS.nameTable[hash]; - while (current) { - if (current.name_next === node) { - current.name_next = node.name_next; - break; - } - current = current.name_next; - } - } - },lookupNode:function(parent, name) { - var errCode = FS.mayLookup(parent); - if (errCode) { - throw new FS.ErrnoError(errCode, parent); - } - var hash = FS.hashName(parent.id, name); - for (var node = FS.nameTable[hash]; node; node = node.name_next) { - var nodeName = node.name; - if (node.parent.id === parent.id && nodeName === name) { - return node; - } - } - // if we failed to find it in the cache, call into the VFS - return FS.lookup(parent, name); - },createNode:function(parent, name, mode, rdev) { - var node = new FS.FSNode(parent, name, mode, rdev); - - FS.hashAddNode(node); - - return node; - },destroyNode:function(node) { - FS.hashRemoveNode(node); - },isRoot:function(node) { - return node === node.parent; - },isMountpoint:function(node) { - return !!node.mounted; - },isFile:function(mode) { - return (mode & 61440) === 32768; - },isDir:function(mode) { - return (mode & 61440) === 16384; - },isLink:function(mode) { - return (mode & 61440) === 40960; - },isChrdev:function(mode) { - return (mode & 61440) === 8192; - },isBlkdev:function(mode) { - return (mode & 61440) === 24576; - },isFIFO:function(mode) { - return (mode & 61440) === 4096; - },isSocket:function(mode) { - return (mode & 49152) === 49152; - },flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:function(str) { - var flags = FS.flagModes[str]; - if (typeof flags === 'undefined') { - throw new Error('Unknown file open mode: ' + str); - } - return flags; - },flagsToPermissionString:function(flag) { - var perms = ['r', 'w', 'rw'][flag & 3]; - if ((flag & 512)) { - perms += 'w'; - } - return perms; - },nodePermissions:function(node, perms) { - if (FS.ignorePermissions) { - return 0; - } - // return 0 if any user, group or owner bits are set. - if (perms.includes('r') && !(node.mode & 292)) { - return 2; - } else if (perms.includes('w') && !(node.mode & 146)) { - return 2; - } else if (perms.includes('x') && !(node.mode & 73)) { - return 2; - } - return 0; - },mayLookup:function(dir) { - var errCode = FS.nodePermissions(dir, 'x'); - if (errCode) return errCode; - if (!dir.node_ops.lookup) return 2; - return 0; - },mayCreate:function(dir, name) { - try { - var node = FS.lookupNode(dir, name); - return 20; - } catch (e) { - } - return FS.nodePermissions(dir, 'wx'); - },mayDelete:function(dir, name, isdir) { - var node; - try { - node = FS.lookupNode(dir, name); - } catch (e) { - return e.errno; - } - var errCode = FS.nodePermissions(dir, 'wx'); - if (errCode) { - return errCode; - } - if (isdir) { - if (!FS.isDir(node.mode)) { - return 54; - } - if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { - return 10; - } - } else { - if (FS.isDir(node.mode)) { - return 31; - } - } - return 0; - },mayOpen:function(node, flags) { - if (!node) { - return 44; - } - if (FS.isLink(node.mode)) { - return 32; - } else if (FS.isDir(node.mode)) { - if (FS.flagsToPermissionString(flags) !== 'r' || // opening for write - (flags & 512)) { // TODO: check for O_SEARCH? (== search for dir only) - return 31; - } - } - return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - },MAX_OPEN_FDS:4096,nextfd:function(fd_start, fd_end) { - fd_start = fd_start || 0; - fd_end = fd_end || FS.MAX_OPEN_FDS; - for (var fd = fd_start; fd <= fd_end; fd++) { - if (!FS.streams[fd]) { - return fd; - } - } - throw new FS.ErrnoError(33); - },getStream:function(fd) { - return FS.streams[fd]; - },createStream:function(stream, fd_start, fd_end) { - if (!FS.FSStream) { - FS.FSStream = /** @constructor */ function(){}; - FS.FSStream.prototype = { - object: { - get: function() { return this.node; }, - set: function(val) { this.node = val; } - }, - isRead: { - get: function() { return (this.flags & 2097155) !== 1; } - }, - isWrite: { - get: function() { return (this.flags & 2097155) !== 0; } - }, - isAppend: { - get: function() { return (this.flags & 1024); } - } - }; - } - // clone it, so we can return an instance of FSStream - var newStream = new FS.FSStream(); - for (var p in stream) { - newStream[p] = stream[p]; - } - stream = newStream; - var fd = FS.nextfd(fd_start, fd_end); - stream.fd = fd; - FS.streams[fd] = stream; - return stream; - },closeStream:function(fd) { - FS.streams[fd] = null; - },chrdev_stream_ops:{open:function(stream) { - var device = FS.getDevice(stream.node.rdev); - // override node's stream ops with the device's - stream.stream_ops = device.stream_ops; - // forward the open call - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - },llseek:function() { - throw new FS.ErrnoError(70); - }},major:function(dev) { - return ((dev) >> 8); - },minor:function(dev) { - return ((dev) & 0xff); - },makedev:function(ma, mi) { - return ((ma) << 8 | (mi)); - },registerDevice:function(dev, ops) { - FS.devices[dev] = { stream_ops: ops }; - },getDevice:function(dev) { - return FS.devices[dev]; - },getMounts:function(mount) { - var mounts = []; - var check = [mount]; - - while (check.length) { - var m = check.pop(); - - mounts.push(m); - - check.push.apply(check, m.mounts); - } - - return mounts; - },syncfs:function(populate, callback) { - if (typeof(populate) === 'function') { - callback = populate; - populate = false; - } - - FS.syncFSRequests++; - - if (FS.syncFSRequests > 1) { - err('warning: ' + FS.syncFSRequests + ' FS.syncfs operations in flight at once, probably just doing extra work'); - } - - var mounts = FS.getMounts(FS.root.mount); - var completed = 0; - - function doCallback(errCode) { - FS.syncFSRequests--; - return callback(errCode); - } - - function done(errCode) { - if (errCode) { - if (!done.errored) { - done.errored = true; - return doCallback(errCode); - } - return; - } - if (++completed >= mounts.length) { - doCallback(null); - } - }; - - // sync all mounts - mounts.forEach(function (mount) { - if (!mount.type.syncfs) { - return done(null); - } - mount.type.syncfs(mount, populate, done); - }); - },mount:function(type, opts, mountpoint) { - var root = mountpoint === '/'; - var pseudo = !mountpoint; - var node; - - if (root && FS.root) { - throw new FS.ErrnoError(10); - } else if (!root && !pseudo) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - mountpoint = lookup.path; // use the absolute path - node = lookup.node; - - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - - if (!FS.isDir(node.mode)) { - throw new FS.ErrnoError(54); - } - } - - var mount = { - type: type, - opts: opts, - mountpoint: mountpoint, - mounts: [] - }; - - // create a root node for the fs - var mountRoot = type.mount(mount); - mountRoot.mount = mount; - mount.root = mountRoot; - - if (root) { - FS.root = mountRoot; - } else if (node) { - // set as a mountpoint - node.mounted = mount; - - // add the new mount to the current mount's children - if (node.mount) { - node.mount.mounts.push(mount); - } - } - - return mountRoot; - },unmount:function (mountpoint) { - var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); - - if (!FS.isMountpoint(lookup.node)) { - throw new FS.ErrnoError(28); - } - - // destroy the nodes for this mount, and all its child mounts - var node = lookup.node; - var mount = node.mounted; - var mounts = FS.getMounts(mount); - - Object.keys(FS.nameTable).forEach(function (hash) { - var current = FS.nameTable[hash]; - - while (current) { - var next = current.name_next; - - if (mounts.includes(current.mount)) { - FS.destroyNode(current); - } - - current = next; - } - }); - - // no longer a mountpoint - node.mounted = null; - - // remove this mount from the child mounts - var idx = node.mount.mounts.indexOf(mount); - node.mount.mounts.splice(idx, 1); - },lookup:function(parent, name) { - return parent.node_ops.lookup(parent, name); - },mknod:function(path, mode, dev) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - if (!name || name === '.' || name === '..') { - throw new FS.ErrnoError(28); - } - var errCode = FS.mayCreate(parent, name); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.mknod) { - throw new FS.ErrnoError(63); - } - return parent.node_ops.mknod(parent, name, mode, dev); - },create:function(path, mode) { - mode = mode !== undefined ? mode : 438 /* 0666 */; - mode &= 4095; - mode |= 32768; - return FS.mknod(path, mode, 0); - },mkdir:function(path, mode) { - mode = mode !== undefined ? mode : 511 /* 0777 */; - mode &= 511 | 512; - mode |= 16384; - return FS.mknod(path, mode, 0); - },mkdirTree:function(path, mode) { - var dirs = path.split('/'); - var d = ''; - for (var i = 0; i < dirs.length; ++i) { - if (!dirs[i]) continue; - d += '/' + dirs[i]; - try { - FS.mkdir(d, mode); - } catch(e) { - if (e.errno != 20) throw e; - } - } - },mkdev:function(path, mode, dev) { - if (typeof(dev) === 'undefined') { - dev = mode; - mode = 438 /* 0666 */; - } - mode |= 8192; - return FS.mknod(path, mode, dev); - },symlink:function(oldpath, newpath) { - if (!PATH_FS.resolve(oldpath)) { - throw new FS.ErrnoError(44); - } - var lookup = FS.lookupPath(newpath, { parent: true }); - var parent = lookup.node; - if (!parent) { - throw new FS.ErrnoError(44); - } - var newname = PATH.basename(newpath); - var errCode = FS.mayCreate(parent, newname); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.symlink) { - throw new FS.ErrnoError(63); - } - return parent.node_ops.symlink(parent, newname, oldpath); - },rename:function(old_path, new_path) { - var old_dirname = PATH.dirname(old_path); - var new_dirname = PATH.dirname(new_path); - var old_name = PATH.basename(old_path); - var new_name = PATH.basename(new_path); - // parents must exist - var lookup, old_dir, new_dir; - - // let the errors from non existant directories percolate up - lookup = FS.lookupPath(old_path, { parent: true }); - old_dir = lookup.node; - lookup = FS.lookupPath(new_path, { parent: true }); - new_dir = lookup.node; - - if (!old_dir || !new_dir) throw new FS.ErrnoError(44); - // need to be part of the same mount - if (old_dir.mount !== new_dir.mount) { - throw new FS.ErrnoError(75); - } - // source must exist - var old_node = FS.lookupNode(old_dir, old_name); - // old path should not be an ancestor of the new path - var relative = PATH_FS.relative(old_path, new_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(28); - } - // new path should not be an ancestor of the old path - relative = PATH_FS.relative(new_path, old_dirname); - if (relative.charAt(0) !== '.') { - throw new FS.ErrnoError(55); - } - // see if the new path already exists - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - // not fatal - } - // early out if nothing needs to change - if (old_node === new_node) { - return; - } - // we'll need to delete the old entry - var isdir = FS.isDir(old_node.mode); - var errCode = FS.mayDelete(old_dir, old_name, isdir); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - // need delete permissions if we'll be overwriting. - // need create permissions if new doesn't already exist. - errCode = new_node ? - FS.mayDelete(new_dir, new_name, isdir) : - FS.mayCreate(new_dir, new_name); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!old_dir.node_ops.rename) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(old_node) || (new_node && FS.isMountpoint(new_node))) { - throw new FS.ErrnoError(10); - } - // if we are going to change the parent, check write permissions - if (new_dir !== old_dir) { - errCode = FS.nodePermissions(old_dir, 'w'); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - } - try { - if (FS.trackingDelegate['willMovePath']) { - FS.trackingDelegate['willMovePath'](old_path, new_path); - } - } catch(e) { - err("FS.trackingDelegate['willMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - // remove the node from the lookup hash - FS.hashRemoveNode(old_node); - // do the underlying fs rename - try { - old_dir.node_ops.rename(old_node, new_dir, new_name); - } catch (e) { - throw e; - } finally { - // add the node back to the hash (in case node_ops.rename - // changed its name) - FS.hashAddNode(old_node); - } - try { - if (FS.trackingDelegate['onMovePath']) FS.trackingDelegate['onMovePath'](old_path, new_path); - } catch(e) { - err("FS.trackingDelegate['onMovePath']('"+old_path+"', '"+new_path+"') threw an exception: " + e.message); - } - },rmdir:function(path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var errCode = FS.mayDelete(parent, name, true); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.rmdir) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - err("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.rmdir(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - err("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readdir:function(path) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(54); - } - return node.node_ops.readdir(node); - },unlink:function(path) { - var lookup = FS.lookupPath(path, { parent: true }); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var errCode = FS.mayDelete(parent, name, false); - if (errCode) { - // According to POSIX, we should map EISDIR to EPERM, but - // we instead do what Linux does (and we must, as we use - // the musl linux libc). - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.unlink) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - try { - if (FS.trackingDelegate['willDeletePath']) { - FS.trackingDelegate['willDeletePath'](path); - } - } catch(e) { - err("FS.trackingDelegate['willDeletePath']('"+path+"') threw an exception: " + e.message); - } - parent.node_ops.unlink(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate['onDeletePath']) FS.trackingDelegate['onDeletePath'](path); - } catch(e) { - err("FS.trackingDelegate['onDeletePath']('"+path+"') threw an exception: " + e.message); - } - },readlink:function(path) { - var lookup = FS.lookupPath(path); - var link = lookup.node; - if (!link) { - throw new FS.ErrnoError(44); - } - if (!link.node_ops.readlink) { - throw new FS.ErrnoError(28); - } - return PATH_FS.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - },stat:function(path, dontFollow) { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(44); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(63); - } - return node.node_ops.getattr(node); - },lstat:function(path) { - return FS.stat(path, true); - },chmod:function(path, mode, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, { - mode: (mode & 4095) | (node.mode & ~4095), - timestamp: Date.now() - }); - },lchmod:function(path, mode) { - FS.chmod(path, mode, true); - },fchmod:function(fd, mode) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chmod(stream.node, mode); - },chown:function(path, uid, gid, dontFollow) { - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, { - timestamp: Date.now() - // we ignore the uid / gid for now - }); - },lchown:function(path, uid, gid) { - FS.chown(path, uid, gid, true); - },fchown:function(fd, uid, gid) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chown(stream.node, uid, gid); - },truncate:function(path, len) { - if (len < 0) { - throw new FS.ErrnoError(28); - } - var node; - if (typeof path === 'string') { - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - if (FS.isDir(node.mode)) { - throw new FS.ErrnoError(31); - } - if (!FS.isFile(node.mode)) { - throw new FS.ErrnoError(28); - } - var errCode = FS.nodePermissions(node, 'w'); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - node.node_ops.setattr(node, { - size: len, - timestamp: Date.now() - }); - },ftruncate:function(fd, len) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(28); - } - FS.truncate(stream.node, len); - },utime:function(path, atime, mtime) { - var lookup = FS.lookupPath(path, { follow: true }); - var node = lookup.node; - node.node_ops.setattr(node, { - timestamp: Math.max(atime, mtime) - }); - },open:function(path, flags, mode, fd_start, fd_end) { - if (path === "") { - throw new FS.ErrnoError(44); - } - flags = typeof flags === 'string' ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode === 'undefined' ? 438 /* 0666 */ : mode; - if ((flags & 64)) { - mode = (mode & 4095) | 32768; - } else { - mode = 0; - } - var node; - if (typeof path === 'object') { - node = path; - } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072) - }); - node = lookup.node; - } catch (e) { - // ignore - } - } - // perhaps we need to create the node - var created = false; - if ((flags & 64)) { - if (node) { - // if O_CREAT and O_EXCL are set, error out if the node already exists - if ((flags & 128)) { - throw new FS.ErrnoError(20); - } - } else { - // node doesn't exist, try to create it - node = FS.mknod(path, mode, 0); - created = true; - } - } - if (!node) { - throw new FS.ErrnoError(44); - } - // can't truncate a device - if (FS.isChrdev(node.mode)) { - flags &= ~512; - } - // if asked only for a directory, then this must be one - if ((flags & 65536) && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(54); - } - // check permissions, if this is not a file we just created now (it is ok to - // create and write to a file with read-only permissions; it is read-only - // for later use) - if (!created) { - var errCode = FS.mayOpen(node, flags); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - } - // do truncation if necessary - if ((flags & 512)) { - FS.truncate(node, 0); - } - // we've already handled these, don't pass down to the underlying vfs - flags &= ~(128 | 512 | 131072); - - // register the stream with the filesystem - var stream = FS.createStream({ - node: node, - path: FS.getPath(node), // we want the absolute path to the node - flags: flags, - seekable: true, - position: 0, - stream_ops: node.stream_ops, - // used by the file family libc calls (fopen, fwrite, ferror, etc.) - ungotten: [], - error: false - }, fd_start, fd_end); - // call the new stream's open function - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - if (Module['logReadFiles'] && !(flags & 1)) { - if (!FS.readFiles) FS.readFiles = {}; - if (!(path in FS.readFiles)) { - FS.readFiles[path] = 1; - err("FS.trackingDelegate error on read file: " + path); - } - } - try { - if (FS.trackingDelegate['onOpenFile']) { - var trackingFlags = 0; - if ((flags & 2097155) !== 1) { - trackingFlags |= FS.tracking.openFlags.READ; - } - if ((flags & 2097155) !== 0) { - trackingFlags |= FS.tracking.openFlags.WRITE; - } - FS.trackingDelegate['onOpenFile'](path, trackingFlags); - } - } catch(e) { - err("FS.trackingDelegate['onOpenFile']('"+path+"', flags) threw an exception: " + e.message); - } - return stream; - },close:function(stream) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (stream.getdents) stream.getdents = null; // free readdir state - try { - if (stream.stream_ops.close) { - stream.stream_ops.close(stream); - } - } catch (e) { - throw e; - } finally { - FS.closeStream(stream.fd); - } - stream.fd = null; - },isClosed:function(stream) { - return stream.fd === null; - },llseek:function(stream, offset, whence) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (!stream.seekable || !stream.stream_ops.llseek) { - throw new FS.ErrnoError(70); - } - if (whence != 0 && whence != 1 && whence != 2) { - throw new FS.ErrnoError(28); - } - stream.position = stream.stream_ops.llseek(stream, offset, whence); - stream.ungotten = []; - return stream.position; - },read:function(stream, buffer, offset, length, position) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(28); - } - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(8); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(31); - } - if (!stream.stream_ops.read) { - throw new FS.ErrnoError(28); - } - var seeking = typeof position !== 'undefined'; - if (!seeking) { - position = stream.position; - } else if (!stream.seekable) { - throw new FS.ErrnoError(70); - } - var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); - if (!seeking) stream.position += bytesRead; - return bytesRead; - },write:function(stream, buffer, offset, length, position, canOwn) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(28); - } - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(8); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(31); - } - if (!stream.stream_ops.write) { - throw new FS.ErrnoError(28); - } - if (stream.seekable && stream.flags & 1024) { - // seek to the end before writing in append mode - FS.llseek(stream, 0, 2); - } - var seeking = typeof position !== 'undefined'; - if (!seeking) { - position = stream.position; - } else if (!stream.seekable) { - throw new FS.ErrnoError(70); - } - var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); - if (!seeking) stream.position += bytesWritten; - try { - if (stream.path && FS.trackingDelegate['onWriteToFile']) FS.trackingDelegate['onWriteToFile'](stream.path); - } catch(e) { - err("FS.trackingDelegate['onWriteToFile']('"+stream.path+"') threw an exception: " + e.message); - } - return bytesWritten; - },allocate:function(stream, offset, length) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(28); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(8); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(138); - } - stream.stream_ops.allocate(stream, offset, length); - },mmap:function(stream, address, length, position, prot, flags) { - // User requests writing to file (prot & PROT_WRITE != 0). - // Checking if we have permissions to write to the file unless - // MAP_PRIVATE flag is set. According to POSIX spec it is possible - // to write to file opened in read-only mode with MAP_PRIVATE flag, - // as all modifications will be visible only in the memory of - // the current process. - if ((prot & 2) !== 0 - && (flags & 2) === 0 - && (stream.flags & 2097155) !== 2) { - throw new FS.ErrnoError(2); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(2); - } - if (!stream.stream_ops.mmap) { - throw new FS.ErrnoError(43); - } - return stream.stream_ops.mmap(stream, address, length, position, prot, flags); - },msync:function(stream, buffer, offset, length, mmapFlags) { - if (!stream || !stream.stream_ops.msync) { - return 0; - } - return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - },munmap:function(stream) { - return 0; - },ioctl:function(stream, cmd, arg) { - if (!stream.stream_ops.ioctl) { - throw new FS.ErrnoError(59); - } - return stream.stream_ops.ioctl(stream, cmd, arg); - },readFile:function(path, opts) { - opts = opts || {}; - opts.flags = opts.flags || 0; - opts.encoding = opts.encoding || 'binary'; - if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var ret; - var stream = FS.open(path, opts.flags); - var stat = FS.stat(path); - var length = stat.size; - var buf = new Uint8Array(length); - FS.read(stream, buf, 0, length, 0); - if (opts.encoding === 'utf8') { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === 'binary') { - ret = buf; - } - FS.close(stream); - return ret; - },writeFile:function(path, data, opts) { - opts = opts || {}; - opts.flags = opts.flags || 577; - var stream = FS.open(path, opts.flags, opts.mode); - if (typeof data === 'string') { - var buf = new Uint8Array(lengthBytesUTF8(data)+1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, undefined, opts.canOwn); - } else if (ArrayBuffer.isView(data)) { - FS.write(stream, data, 0, data.byteLength, undefined, opts.canOwn); - } else { - throw new Error('Unsupported data type'); - } - FS.close(stream); - },cwd:function() { - return FS.currentPath; - },chdir:function(path) { - var lookup = FS.lookupPath(path, { follow: true }); - if (lookup.node === null) { - throw new FS.ErrnoError(44); - } - if (!FS.isDir(lookup.node.mode)) { - throw new FS.ErrnoError(54); - } - var errCode = FS.nodePermissions(lookup.node, 'x'); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - FS.currentPath = lookup.path; - },createDefaultDirectories:function() { - FS.mkdir('/tmp'); - FS.mkdir('/home'); - FS.mkdir('/home/web_user'); - },createDefaultDevices:function() { - // create /dev - FS.mkdir('/dev'); - // setup /dev/null - FS.registerDevice(FS.makedev(1, 3), { - read: function() { return 0; }, - write: function(stream, buffer, offset, length, pos) { return length; } - }); - FS.mkdev('/dev/null', FS.makedev(1, 3)); - // setup /dev/tty and /dev/tty1 - // stderr needs to print output using err() rather than out() - // so we register a second tty just for it. - TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); - TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); - FS.mkdev('/dev/tty', FS.makedev(5, 0)); - FS.mkdev('/dev/tty1', FS.makedev(6, 0)); - // setup /dev/[u]random - var random_device = getRandomDevice(); - FS.createDevice('/dev', 'random', random_device); - FS.createDevice('/dev', 'urandom', random_device); - // we're not going to emulate the actual shm device, - // just create the tmp dirs that reside in it commonly - FS.mkdir('/dev/shm'); - FS.mkdir('/dev/shm/tmp'); - },createSpecialDirectories:function() { - // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the - // name of the stream for fd 6 (see test_unistd_ttyname) - FS.mkdir('/proc'); - var proc_self = FS.mkdir('/proc/self'); - FS.mkdir('/proc/self/fd'); - FS.mount({ - mount: function() { - var node = FS.createNode(proc_self, 'fd', 16384 | 511 /* 0777 */, 73); - node.node_ops = { - lookup: function(parent, name) { - var fd = +name; - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(8); - var ret = { - parent: null, - mount: { mountpoint: 'fake' }, - node_ops: { readlink: function() { return stream.path } } - }; - ret.parent = ret; // make it look like a simple root node - return ret; - } - }; - return node; - } - }, {}, '/proc/self/fd'); - },createStandardStreams:function() { - // TODO deprecate the old functionality of a single - // input / output callback and that utilizes FS.createDevice - // and instead require a unique set of stream ops - - // by default, we symlink the standard streams to the - // default tty devices. however, if the standard streams - // have been overwritten we create a unique device for - // them instead. - if (Module['stdin']) { - FS.createDevice('/dev', 'stdin', Module['stdin']); - } else { - FS.symlink('/dev/tty', '/dev/stdin'); - } - if (Module['stdout']) { - FS.createDevice('/dev', 'stdout', null, Module['stdout']); - } else { - FS.symlink('/dev/tty', '/dev/stdout'); - } - if (Module['stderr']) { - FS.createDevice('/dev', 'stderr', null, Module['stderr']); - } else { - FS.symlink('/dev/tty1', '/dev/stderr'); - } - - // open default streams for the stdin, stdout and stderr devices - var stdin = FS.open('/dev/stdin', 0); - var stdout = FS.open('/dev/stdout', 1); - var stderr = FS.open('/dev/stderr', 1); - },ensureErrnoError:function() { - if (FS.ErrnoError) return; - FS.ErrnoError = /** @this{Object} */ function ErrnoError(errno, node) { - this.node = node; - this.setErrno = /** @this{Object} */ function(errno) { - this.errno = errno; - }; - this.setErrno(errno); - this.message = 'FS error'; - - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) - [44].forEach(function(code) { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ''; - }); - },staticInit:function() { - FS.ensureErrnoError(); - - FS.nameTable = new Array(4096); - - FS.mount(MEMFS, {}, '/'); - - FS.createDefaultDirectories(); - FS.createDefaultDevices(); - FS.createSpecialDirectories(); - - FS.filesystems = { - 'MEMFS': MEMFS, - }; - },init:function(input, output, error) { - FS.init.initialized = true; - - FS.ensureErrnoError(); - - // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - Module['stdin'] = input || Module['stdin']; - Module['stdout'] = output || Module['stdout']; - Module['stderr'] = error || Module['stderr']; - - FS.createStandardStreams(); - },quit:function() { - FS.init.initialized = false; - // force-flush all streams, so we get musl std streams printed out - var fflush = Module['_fflush']; - if (fflush) fflush(0); - // close all of our streams - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; - } - FS.close(stream); - } - },getMode:function(canRead, canWrite) { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - },findObject:function(path, dontResolveLastLink) { - var ret = FS.analyzePath(path, dontResolveLastLink); - if (ret.exists) { - return ret.object; - } else { - return null; - } - },analyzePath:function(path, dontResolveLastLink) { - // operate from within the context of the symlink's target - try { - var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - path = lookup.path; - } catch (e) { - } - var ret = { - isRoot: false, exists: false, error: 0, name: null, path: null, object: null, - parentExists: false, parentPath: null, parentObject: null - }; - try { - var lookup = FS.lookupPath(path, { parent: true }); - ret.parentExists = true; - ret.parentPath = lookup.path; - ret.parentObject = lookup.node; - ret.name = PATH.basename(path); - lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); - ret.exists = true; - ret.path = lookup.path; - ret.object = lookup.node; - ret.name = lookup.node.name; - ret.isRoot = lookup.path === '/'; - } catch (e) { - ret.error = e.errno; - }; - return ret; - },createPath:function(parent, path, canRead, canWrite) { - parent = typeof parent === 'string' ? parent : FS.getPath(parent); - var parts = path.split('/').reverse(); - while (parts.length) { - var part = parts.pop(); - if (!part) continue; - var current = PATH.join2(parent, part); - try { - FS.mkdir(current); - } catch (e) { - // ignore EEXIST - } - parent = current; - } - return current; - },createFile:function(parent, name, properties, canRead, canWrite) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.create(path, mode); - },createDataFile:function(parent, name, data, canRead, canWrite, canOwn) { - var path = name ? PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name) : parent; - var mode = FS.getMode(canRead, canWrite); - var node = FS.create(path, mode); - if (data) { - if (typeof data === 'string') { - var arr = new Array(data.length); - for (var i = 0, len = data.length; i < len; ++i) arr[i] = data.charCodeAt(i); - data = arr; - } - // make sure we can write to the file - FS.chmod(node, mode | 146); - var stream = FS.open(node, 577); - FS.write(stream, data, 0, data.length, 0, canOwn); - FS.close(stream); - FS.chmod(node, mode); - } - return node; - },createDevice:function(parent, name, input, output) { - var path = PATH.join2(typeof parent === 'string' ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) FS.createDevice.major = 64; - var dev = FS.makedev(FS.createDevice.major++, 0); - // Create a fake device that a set of stream ops to emulate - // the old behavior. - FS.registerDevice(dev, { - open: function(stream) { - stream.seekable = false; - }, - close: function(stream) { - // flush any pending line data - if (output && output.buffer && output.buffer.length) { - output(10); - } - }, - read: function(stream, buffer, offset, length, pos /* ignored */) { - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = input(); - } catch (e) { - throw new FS.ErrnoError(29); - } - if (result === undefined && bytesRead === 0) { - throw new FS.ErrnoError(6); - } - if (result === null || result === undefined) break; - bytesRead++; - buffer[offset+i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer, offset, length, pos) { - for (var i = 0; i < length; i++) { - try { - output(buffer[offset+i]); - } catch (e) { - throw new FS.ErrnoError(29); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }); - return FS.mkdev(path, mode, dev); - },forceLoadFile:function(obj) { - if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; - if (typeof XMLHttpRequest !== 'undefined') { - throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else if (read_) { - // Command-line. - try { - // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as - // read() will try to parse UTF8. - obj.contents = intArrayFromString(read_(obj.url), true); - obj.usedBytes = obj.contents.length; - } catch (e) { - throw new FS.ErrnoError(29); - } - } else { - throw new Error('Cannot load without read() or XMLHttpRequest.'); - } - },createLazyFile:function(parent, name, url, canRead, canWrite) { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. - /** @constructor */ - function LazyUint8Array() { - this.lengthKnown = false; - this.chunks = []; // Loaded chunks. Index is the chunk number - } - LazyUint8Array.prototype.get = /** @this{Object} */ function LazyUint8Array_get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; - } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - }; - LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { - this.getter = getter; - }; - LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { - // Find length - var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var usesGzip = (header = xhr.getResponseHeader("Content-Encoding")) && header === "gzip"; - - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (function(from, to) { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - - // Some hints to the browser that we want binary data. - if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); - } - - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(/** @type{Array} */(xhr.response || [])); - } else { - return intArrayFromString(xhr.responseText || '', true); - } - }); - var lazyArray = this; - lazyArray.setDataGetter(function(chunkNum) { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") { - lazyArray.chunks[chunkNum] = doXHR(start, end); - } - if (typeof(lazyArray.chunks[chunkNum]) === "undefined") throw new Error("doXHR failed!"); - return lazyArray.chunks[chunkNum]; - }); - - if (usesGzip || !datalength) { - // if the server uses gzip or doesn't supply the length, we have to download the whole file to get the (uncompressed) length - chunkSize = datalength = 1; // this will force getter(0)/doXHR do download the whole file - datalength = this.getter(0).length; - chunkSize = datalength; - out("LazyFiles on gzip forces download of the whole file when length is accessed"); - } - - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - }; - if (typeof XMLHttpRequest !== 'undefined') { - if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; - var lazyArray = new LazyUint8Array(); - Object.defineProperties(lazyArray, { - length: { - get: /** @this{Object} */ function() { - if (!this.lengthKnown) { - this.cacheLength(); - } - return this._length; - } - }, - chunkSize: { - get: /** @this{Object} */ function() { - if (!this.lengthKnown) { - this.cacheLength(); - } - return this._chunkSize; - } - } - }); - - var properties = { isDevice: false, contents: lazyArray }; - } else { - var properties = { isDevice: false, url: url }; - } - - var node = FS.createFile(parent, name, properties, canRead, canWrite); - // This is a total hack, but I want to get this lazy file code out of the - // core of MEMFS. If we want to keep this lazy file concept I feel it should - // be its own thin LAZYFS proxying calls to MEMFS. - if (properties.contents) { - node.contents = properties.contents; - } else if (properties.url) { - node.contents = null; - node.url = properties.url; - } - // Add a function that defers querying the file size until it is asked the first time. - Object.defineProperties(node, { - usedBytes: { - get: /** @this {FSNode} */ function() { return this.contents.length; } - } - }); - // override each stream op with one that tries to force load the lazy file first - var stream_ops = {}; - var keys = Object.keys(node.stream_ops); - keys.forEach(function(key) { - var fn = node.stream_ops[key]; - stream_ops[key] = function forceLoadLazyFile() { - FS.forceLoadFile(node); - return fn.apply(null, arguments); - }; - }); - // use a custom read function - stream_ops.read = function stream_ops_read(stream, buffer, offset, length, position) { - FS.forceLoadFile(node); - var contents = stream.node.contents; - if (position >= contents.length) - return 0; - var size = Math.min(contents.length - position, length); - if (contents.slice) { // normal array - for (var i = 0; i < size; i++) { - buffer[offset + i] = contents[position + i]; - } - } else { - for (var i = 0; i < size; i++) { // LazyUint8Array from sync binary XHR - buffer[offset + i] = contents.get(position + i); - } - } - return size; - }; - node.stream_ops = stream_ops; - return node; - },createPreloadedFile:function(parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) { - Browser.init(); // XXX perhaps this method should move onto Browser? - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH_FS.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - if (preFinish) preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - if (onload) onload(); - removeRunDependency(dep); - } - var handled = false; - Module['preloadPlugins'].forEach(function(plugin) { - if (handled) return; - if (plugin['canHandle'](fullname)) { - plugin['handle'](byteArray, fullname, finish, function() { - if (onerror) onerror(); - removeRunDependency(dep); - }); - handled = true; - } - }); - if (!handled) finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - Browser.asyncLoad(url, function(byteArray) { - processData(byteArray); - }, onerror); - } else { - processData(url); - } - },indexedDB:function() { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - },DB_NAME:function() { - return 'EM_FS_' + window.location.pathname; - },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:function(paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { - out('creating db'); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = function putRequest_onsuccess() { ok++; if (ok + fail == total) finish() }; - putRequest.onerror = function putRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - },loadFilesFromDB:function(paths, onload, onerror) { - onload = onload || function(){}; - onerror = onerror || function(){}; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; // no database to load from - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); - } catch(e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) onload(); else onerror(); - } - paths.forEach(function(path) { - var getRequest = files.get(path); - getRequest.onsuccess = function getRequest_onsuccess() { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) finish(); - }; - getRequest.onerror = function getRequest_onerror() { fail++; if (ok + fail == total) finish() }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - }}; - var SYSCALLS={mappings:{},DEFAULT_POLLMASK:5,umask:511,calculateAt:function(dirfd, path, allowEmpty) { - if (path[0] === '/') { - return path; - } - // relative path - var dir; - if (dirfd === -100) { - dir = FS.cwd(); - } else { - var dirstream = FS.getStream(dirfd); - if (!dirstream) throw new FS.ErrnoError(8); - dir = dirstream.path; - } - if (path.length == 0) { - if (!allowEmpty) { - throw new FS.ErrnoError(44);; - } - return dir; - } - return PATH.join2(dir, path); - },doStat:function(func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - // an error occurred while trying to look up the path; we should just report ENOTDIR - return -54; - } - throw e; - } - HEAP32[((buf)>>2)] = stat.dev; - HEAP32[(((buf)+(4))>>2)] = 0; - HEAP32[(((buf)+(8))>>2)] = stat.ino; - HEAP32[(((buf)+(12))>>2)] = stat.mode; - HEAP32[(((buf)+(16))>>2)] = stat.nlink; - HEAP32[(((buf)+(20))>>2)] = stat.uid; - HEAP32[(((buf)+(24))>>2)] = stat.gid; - HEAP32[(((buf)+(28))>>2)] = stat.rdev; - HEAP32[(((buf)+(32))>>2)] = 0; - (tempI64 = [stat.size>>>0,(tempDouble=stat.size,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(40))>>2)] = tempI64[0],HEAP32[(((buf)+(44))>>2)] = tempI64[1]); - HEAP32[(((buf)+(48))>>2)] = 4096; - HEAP32[(((buf)+(52))>>2)] = stat.blocks; - HEAP32[(((buf)+(56))>>2)] = (stat.atime.getTime() / 1000)|0; - HEAP32[(((buf)+(60))>>2)] = 0; - HEAP32[(((buf)+(64))>>2)] = (stat.mtime.getTime() / 1000)|0; - HEAP32[(((buf)+(68))>>2)] = 0; - HEAP32[(((buf)+(72))>>2)] = (stat.ctime.getTime() / 1000)|0; - HEAP32[(((buf)+(76))>>2)] = 0; - (tempI64 = [stat.ino>>>0,(tempDouble=stat.ino,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(80))>>2)] = tempI64[0],HEAP32[(((buf)+(84))>>2)] = tempI64[1]); - return 0; - },doMsync:function(addr, stream, len, flags, offset) { - var buffer = HEAPU8.slice(addr, addr + len); - FS.msync(stream, buffer, offset, len, flags); - },doMkdir:function(path, mode) { - // remove a trailing slash, if one - /a/b/ has basename of '', but - // we want to create b in the context of this function - path = PATH.normalize(path); - if (path[path.length-1] === '/') path = path.substr(0, path.length-1); - FS.mkdir(path, mode, 0); - return 0; - },doMknod:function(path, mode, dev) { - // we don't want this in the JS API as it uses mknod to create all nodes. - switch (mode & 61440) { - case 32768: - case 8192: - case 24576: - case 4096: - case 49152: - break; - default: return -28; - } - FS.mknod(path, mode, dev); - return 0; - },doReadlink:function(path, buf, bufsize) { - if (bufsize <= 0) return -28; - var ret = FS.readlink(path); - - var len = Math.min(bufsize, lengthBytesUTF8(ret)); - var endChar = HEAP8[buf+len]; - stringToUTF8(ret, buf, bufsize+1); - // readlink is one of the rare functions that write out a C string, but does never append a null to the output buffer(!) - // stringToUTF8() always appends a null byte, so restore the character under the null byte after the write. - HEAP8[buf+len] = endChar; - - return len; - },doAccess:function(path, amode) { - if (amode & ~7) { - // need a valid mode - return -28; - } - var node; - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - if (!node) { - return -44; - } - var perms = ''; - if (amode & 4) perms += 'r'; - if (amode & 2) perms += 'w'; - if (amode & 1) perms += 'x'; - if (perms /* otherwise, they've just passed F_OK */ && FS.nodePermissions(node, perms)) { - return -2; - } - return 0; - },doDup:function(path, flags, suggestFD) { - var suggest = FS.getStream(suggestFD); - if (suggest) FS.close(suggest); - return FS.open(path, flags, 0, suggestFD, suggestFD).fd; - },doReadv:function(stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.read(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - if (curr < len) break; // nothing more to read - } - return ret; - },doWritev:function(stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[(((iov)+(i*8))>>2)]; - var len = HEAP32[(((iov)+(i*8 + 4))>>2)]; - var curr = FS.write(stream, HEAP8,ptr, len, offset); - if (curr < 0) return -1; - ret += curr; - } - return ret; - },varargs:undefined,get:function() { - SYSCALLS.varargs += 4; - var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; - return ret; - },getStr:function(ptr) { - var ret = UTF8ToString(ptr); - return ret; - },getStreamFromFD:function(fd) { - var stream = FS.getStream(fd); - if (!stream) throw new FS.ErrnoError(8); - return stream; - },get64:function(low, high) { - return low; - }}; - function ___sys_access(path, amode) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doAccess(path, amode); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_chdir(path) {try { - - path = SYSCALLS.getStr(path); - FS.chdir(path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_chmod(path, mode) {try { - - path = SYSCALLS.getStr(path); - FS.chmod(path, mode); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_chown32(path, owner, group) {try { - - path = SYSCALLS.getStr(path); - FS.chown(path, owner, group); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - var ERRNO_CODES={EPERM:63,ENOENT:44,ESRCH:71,EINTR:27,EIO:29,ENXIO:60,E2BIG:1,ENOEXEC:45,EBADF:8,ECHILD:12,EAGAIN:6,EWOULDBLOCK:6,ENOMEM:48,EACCES:2,EFAULT:21,ENOTBLK:105,EBUSY:10,EEXIST:20,EXDEV:75,ENODEV:43,ENOTDIR:54,EISDIR:31,EINVAL:28,ENFILE:41,EMFILE:33,ENOTTY:59,ETXTBSY:74,EFBIG:22,ENOSPC:51,ESPIPE:70,EROFS:69,EMLINK:34,EPIPE:64,EDOM:18,ERANGE:68,ENOMSG:49,EIDRM:24,ECHRNG:106,EL2NSYNC:156,EL3HLT:107,EL3RST:108,ELNRNG:109,EUNATCH:110,ENOCSI:111,EL2HLT:112,EDEADLK:16,ENOLCK:46,EBADE:113,EBADR:114,EXFULL:115,ENOANO:104,EBADRQC:103,EBADSLT:102,EDEADLOCK:16,EBFONT:101,ENOSTR:100,ENODATA:116,ETIME:117,ENOSR:118,ENONET:119,ENOPKG:120,EREMOTE:121,ENOLINK:47,EADV:122,ESRMNT:123,ECOMM:124,EPROTO:65,EMULTIHOP:36,EDOTDOT:125,EBADMSG:9,ENOTUNIQ:126,EBADFD:127,EREMCHG:128,ELIBACC:129,ELIBBAD:130,ELIBSCN:131,ELIBMAX:132,ELIBEXEC:133,ENOSYS:52,ENOTEMPTY:55,ENAMETOOLONG:37,ELOOP:32,EOPNOTSUPP:138,EPFNOSUPPORT:139,ECONNRESET:15,ENOBUFS:42,EAFNOSUPPORT:5,EPROTOTYPE:67,ENOTSOCK:57,ENOPROTOOPT:50,ESHUTDOWN:140,ECONNREFUSED:14,EADDRINUSE:3,ECONNABORTED:13,ENETUNREACH:40,ENETDOWN:38,ETIMEDOUT:73,EHOSTDOWN:142,EHOSTUNREACH:23,EINPROGRESS:26,EALREADY:7,EDESTADDRREQ:17,EMSGSIZE:35,EPROTONOSUPPORT:66,ESOCKTNOSUPPORT:137,EADDRNOTAVAIL:4,ENETRESET:39,EISCONN:30,ENOTCONN:53,ETOOMANYREFS:141,EUSERS:136,EDQUOT:19,ESTALE:72,ENOTSUP:138,ENOMEDIUM:148,EILSEQ:25,EOVERFLOW:61,ECANCELED:11,ENOTRECOVERABLE:56,EOWNERDEAD:62,ESTRPIPE:135}; - var SOCKFS={mount:function(mount) { - // If Module['websocket'] has already been defined (e.g. for configuring - // the subprotocol/url) use that, if not initialise it to a new object. - Module['websocket'] = (Module['websocket'] && - ('object' === typeof Module['websocket'])) ? Module['websocket'] : {}; - - // Add the Event registration mechanism to the exported websocket configuration - // object so we can register network callbacks from native JavaScript too. - // For more documentation see system/include/emscripten/emscripten.h - Module['websocket']._callbacks = {}; - Module['websocket']['on'] = /** @this{Object} */ function(event, callback) { - if ('function' === typeof callback) { - this._callbacks[event] = callback; - } - return this; - }; - - Module['websocket'].emit = /** @this{Object} */ function(event, param) { - if ('function' === typeof this._callbacks[event]) { - this._callbacks[event].call(this, param); - } - }; - - // If debug is enabled register simple default logging callbacks for each Event. - - return FS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); - },createSocket:function(family, type, protocol) { - type &= ~526336; // Some applications may pass it; it makes no sense for a single process. - var streaming = type == 1; - if (protocol) { - assert(streaming == (protocol == 6)); // if SOCK_STREAM, must be tcp - } - - // create our internal socket structure - var sock = { - family: family, - type: type, - protocol: protocol, - server: null, - error: null, // Used in getsockopt for SOL_SOCKET/SO_ERROR test - peers: {}, - pending: [], - recv_queue: [], - sock_ops: SOCKFS.websocket_sock_ops - }; - - // create the filesystem node to store the socket structure - var name = SOCKFS.nextname(); - var node = FS.createNode(SOCKFS.root, name, 49152, 0); - node.sock = sock; - - // and the wrapping stream that enables library functions such - // as read and write to indirectly interact with the socket - var stream = FS.createStream({ - path: name, - node: node, - flags: 2, - seekable: false, - stream_ops: SOCKFS.stream_ops - }); - - // map the new stream to the socket structure (sockets have a 1:1 - // relationship with a stream) - sock.stream = stream; - - return sock; - },getSocket:function(fd) { - var stream = FS.getStream(fd); - if (!stream || !FS.isSocket(stream.node.mode)) { - return null; - } - return stream.node.sock; - },stream_ops:{poll:function(stream) { - var sock = stream.node.sock; - return sock.sock_ops.poll(sock); - },ioctl:function(stream, request, varargs) { - var sock = stream.node.sock; - return sock.sock_ops.ioctl(sock, request, varargs); - },read:function(stream, buffer, offset, length, position /* ignored */) { - var sock = stream.node.sock; - var msg = sock.sock_ops.recvmsg(sock, length); - if (!msg) { - // socket is closed - return 0; - } - buffer.set(msg.buffer, offset); - return msg.buffer.length; - },write:function(stream, buffer, offset, length, position /* ignored */) { - var sock = stream.node.sock; - return sock.sock_ops.sendmsg(sock, buffer, offset, length); - },close:function(stream) { - var sock = stream.node.sock; - sock.sock_ops.close(sock); - }},nextname:function() { - if (!SOCKFS.nextname.current) { - SOCKFS.nextname.current = 0; - } - return 'socket[' + (SOCKFS.nextname.current++) + ']'; - },websocket_sock_ops:{createPeer:function(sock, addr, port) { - var ws; - - if (typeof addr === 'object') { - ws = addr; - addr = null; - port = null; - } - - if (ws) { - // for sockets that've already connected (e.g. we're the server) - // we can inspect the _socket property for the address - if (ws._socket) { - addr = ws._socket.remoteAddress; - port = ws._socket.remotePort; - } - // if we're just now initializing a connection to the remote, - // inspect the url property - else { - var result = /ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url); - if (!result) { - throw new Error('WebSocket URL must be in the format ws(s)://address:port'); - } - addr = result[1]; - port = parseInt(result[2], 10); - } - } else { - // create the actual websocket object and connect - try { - // runtimeConfig gets set to true if WebSocket runtime configuration is available. - var runtimeConfig = (Module['websocket'] && ('object' === typeof Module['websocket'])); - - // The default value is 'ws://' the replace is needed because the compiler replaces '//' comments with '#' - // comments without checking context, so we'd end up with ws:#, the replace swaps the '#' for '//' again. - var url = 'ws:#'.replace('#', '//'); - - if (runtimeConfig) { - if ('string' === typeof Module['websocket']['url']) { - url = Module['websocket']['url']; // Fetch runtime WebSocket URL config. - } - } - - if (url === 'ws://' || url === 'wss://') { // Is the supplied URL config just a prefix, if so complete it. - var parts = addr.split('/'); - url = url + parts[0] + ":" + port + "/" + parts.slice(1).join('/'); - } - - // Make the WebSocket subprotocol (Sec-WebSocket-Protocol) default to binary if no configuration is set. - var subProtocols = 'binary'; // The default value is 'binary' - - if (runtimeConfig) { - if ('string' === typeof Module['websocket']['subprotocol']) { - subProtocols = Module['websocket']['subprotocol']; // Fetch runtime WebSocket subprotocol config. - } - } - - // The default WebSocket options - var opts = undefined; - - if (subProtocols !== 'null') { - // The regex trims the string (removes spaces at the beginning and end, then splits the string by - // , into an Array. Whitespace removal is important for Websockify and ws. - subProtocols = subProtocols.replace(/^ +| +$/g,"").split(/ *, */); - - // The node ws library API for specifying optional subprotocol is slightly different than the browser's. - opts = ENVIRONMENT_IS_NODE ? {'protocol': subProtocols.toString()} : subProtocols; - } - - // some webservers (azure) does not support subprotocol header - if (runtimeConfig && null === Module['websocket']['subprotocol']) { - subProtocols = 'null'; - opts = undefined; - } - - // If node we use the ws library. - var WebSocketConstructor; - if (ENVIRONMENT_IS_NODE) { - WebSocketConstructor = /** @type{(typeof WebSocket)} */(require('ws')); - } else - { - WebSocketConstructor = WebSocket; - } - ws = new WebSocketConstructor(url, opts); - ws.binaryType = 'arraybuffer'; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EHOSTUNREACH); - } - } - - var peer = { - addr: addr, - port: port, - socket: ws, - dgram_send_queue: [] - }; - - SOCKFS.websocket_sock_ops.addPeer(sock, peer); - SOCKFS.websocket_sock_ops.handlePeerEvents(sock, peer); - - // if this is a bound dgram socket, send the port number first to allow - // us to override the ephemeral port reported to us by remotePort on the - // remote end. - if (sock.type === 2 && typeof sock.sport !== 'undefined') { - peer.dgram_send_queue.push(new Uint8Array([ - 255, 255, 255, 255, - 'p'.charCodeAt(0), 'o'.charCodeAt(0), 'r'.charCodeAt(0), 't'.charCodeAt(0), - ((sock.sport & 0xff00) >> 8) , (sock.sport & 0xff) - ])); - } - - return peer; - },getPeer:function(sock, addr, port) { - return sock.peers[addr + ':' + port]; - },addPeer:function(sock, peer) { - sock.peers[peer.addr + ':' + peer.port] = peer; - },removePeer:function(sock, peer) { - delete sock.peers[peer.addr + ':' + peer.port]; - },handlePeerEvents:function(sock, peer) { - var first = true; - - var handleOpen = function () { - - Module['websocket'].emit('open', sock.stream.fd); - - try { - var queued = peer.dgram_send_queue.shift(); - while (queued) { - peer.socket.send(queued); - queued = peer.dgram_send_queue.shift(); - } - } catch (e) { - // not much we can do here in the way of proper error handling as we've already - // lied and said this data was sent. shut it down. - peer.socket.close(); - } - }; - - function handleMessage(data) { - if (typeof data === 'string') { - var encoder = new TextEncoder(); // should be utf-8 - data = encoder.encode(data); // make a typed array from the string - } else { - assert(data.byteLength !== undefined); // must receive an ArrayBuffer - if (data.byteLength == 0) { - // An empty ArrayBuffer will emit a pseudo disconnect event - // as recv/recvmsg will return zero which indicates that a socket - // has performed a shutdown although the connection has not been disconnected yet. - return; - } else { - data = new Uint8Array(data); // make a typed array view on the array buffer - } - } - - // if this is the port message, override the peer's port with it - var wasfirst = first; - first = false; - if (wasfirst && - data.length === 10 && - data[0] === 255 && data[1] === 255 && data[2] === 255 && data[3] === 255 && - data[4] === 'p'.charCodeAt(0) && data[5] === 'o'.charCodeAt(0) && data[6] === 'r'.charCodeAt(0) && data[7] === 't'.charCodeAt(0)) { - // update the peer's port and it's key in the peer map - var newport = ((data[8] << 8) | data[9]); - SOCKFS.websocket_sock_ops.removePeer(sock, peer); - peer.port = newport; - SOCKFS.websocket_sock_ops.addPeer(sock, peer); - return; - } - - sock.recv_queue.push({ addr: peer.addr, port: peer.port, data: data }); - Module['websocket'].emit('message', sock.stream.fd); - }; - - if (ENVIRONMENT_IS_NODE) { - peer.socket.on('open', handleOpen); - peer.socket.on('message', function(data, flags) { - if (!flags.binary) { - return; - } - handleMessage((new Uint8Array(data)).buffer); // copy from node Buffer -> ArrayBuffer - }); - peer.socket.on('close', function() { - Module['websocket'].emit('close', sock.stream.fd); - }); - peer.socket.on('error', function(error) { - // Although the ws library may pass errors that may be more descriptive than - // ECONNREFUSED they are not necessarily the expected error code e.g. - // ENOTFOUND on getaddrinfo seems to be node.js specific, so using ECONNREFUSED - // is still probably the most useful thing to do. - sock.error = ERRNO_CODES.ECONNREFUSED; // Used in getsockopt for SOL_SOCKET/SO_ERROR test. - Module['websocket'].emit('error', [sock.stream.fd, sock.error, 'ECONNREFUSED: Connection refused']); - // don't throw - }); - } else { - peer.socket.onopen = handleOpen; - peer.socket.onclose = function() { - Module['websocket'].emit('close', sock.stream.fd); - }; - peer.socket.onmessage = function peer_socket_onmessage(event) { - handleMessage(event.data); - }; - peer.socket.onerror = function(error) { - // The WebSocket spec only allows a 'simple event' to be thrown on error, - // so we only really know as much as ECONNREFUSED. - sock.error = ERRNO_CODES.ECONNREFUSED; // Used in getsockopt for SOL_SOCKET/SO_ERROR test. - Module['websocket'].emit('error', [sock.stream.fd, sock.error, 'ECONNREFUSED: Connection refused']); - }; - } - },poll:function(sock) { - if (sock.type === 1 && sock.server) { - // listen sockets should only say they're available for reading - // if there are pending clients. - return sock.pending.length ? (64 | 1) : 0; - } - - var mask = 0; - var dest = sock.type === 1 ? // we only care about the socket state for connection-based sockets - SOCKFS.websocket_sock_ops.getPeer(sock, sock.daddr, sock.dport) : - null; - - if (sock.recv_queue.length || - !dest || // connection-less sockets are always ready to read - (dest && dest.socket.readyState === dest.socket.CLOSING) || - (dest && dest.socket.readyState === dest.socket.CLOSED)) { // let recv return 0 once closed - mask |= (64 | 1); - } - - if (!dest || // connection-less sockets are always ready to write - (dest && dest.socket.readyState === dest.socket.OPEN)) { - mask |= 4; - } - - if ((dest && dest.socket.readyState === dest.socket.CLOSING) || - (dest && dest.socket.readyState === dest.socket.CLOSED)) { - mask |= 16; - } - - return mask; - },ioctl:function(sock, request, arg) { - switch (request) { - case 21531: - var bytes = 0; - if (sock.recv_queue.length) { - bytes = sock.recv_queue[0].data.length; - } - HEAP32[((arg)>>2)] = bytes; - return 0; - default: - return ERRNO_CODES.EINVAL; - } - },close:function(sock) { - // if we've spawned a listen server, close it - if (sock.server) { - try { - sock.server.close(); - } catch (e) { - } - sock.server = null; - } - // close any peer connections - var peers = Object.keys(sock.peers); - for (var i = 0; i < peers.length; i++) { - var peer = sock.peers[peers[i]]; - try { - peer.socket.close(); - } catch (e) { - } - SOCKFS.websocket_sock_ops.removePeer(sock, peer); - } - return 0; - },bind:function(sock, addr, port) { - if (typeof sock.saddr !== 'undefined' || typeof sock.sport !== 'undefined') { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); // already bound - } - sock.saddr = addr; - sock.sport = port; - // in order to emulate dgram sockets, we need to launch a listen server when - // binding on a connection-less socket - // note: this is only required on the server side - if (sock.type === 2) { - // close the existing server if it exists - if (sock.server) { - sock.server.close(); - sock.server = null; - } - // swallow error operation not supported error that occurs when binding in the - // browser where this isn't supported - try { - sock.sock_ops.listen(sock, 0); - } catch (e) { - if (!(e instanceof FS.ErrnoError)) throw e; - if (e.errno !== ERRNO_CODES.EOPNOTSUPP) throw e; - } - } - },connect:function(sock, addr, port) { - if (sock.server) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - - // TODO autobind - // if (!sock.addr && sock.type == 2) { - // } - - // early out if we're already connected / in the middle of connecting - if (typeof sock.daddr !== 'undefined' && typeof sock.dport !== 'undefined') { - var dest = SOCKFS.websocket_sock_ops.getPeer(sock, sock.daddr, sock.dport); - if (dest) { - if (dest.socket.readyState === dest.socket.CONNECTING) { - throw new FS.ErrnoError(ERRNO_CODES.EALREADY); - } else { - throw new FS.ErrnoError(ERRNO_CODES.EISCONN); - } - } - } - - // add the socket to our peer list and set our - // destination address / port to match - var peer = SOCKFS.websocket_sock_ops.createPeer(sock, addr, port); - sock.daddr = peer.addr; - sock.dport = peer.port; - - // always "fail" in non-blocking mode - throw new FS.ErrnoError(ERRNO_CODES.EINPROGRESS); - },listen:function(sock, backlog) { - if (!ENVIRONMENT_IS_NODE) { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - } - if (sock.server) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); // already listening - } - var WebSocketServer = require('ws').Server; - var host = sock.saddr; - sock.server = new WebSocketServer({ - host: host, - port: sock.sport - // TODO support backlog - }); - Module['websocket'].emit('listen', sock.stream.fd); // Send Event with listen fd. - - sock.server.on('connection', function(ws) { - if (sock.type === 1) { - var newsock = SOCKFS.createSocket(sock.family, sock.type, sock.protocol); - - // create a peer on the new socket - var peer = SOCKFS.websocket_sock_ops.createPeer(newsock, ws); - newsock.daddr = peer.addr; - newsock.dport = peer.port; - - // push to queue for accept to pick up - sock.pending.push(newsock); - Module['websocket'].emit('connection', newsock.stream.fd); - } else { - // create a peer on the listen socket so calling sendto - // with the listen socket and an address will resolve - // to the correct client - SOCKFS.websocket_sock_ops.createPeer(sock, ws); - Module['websocket'].emit('connection', sock.stream.fd); - } - }); - sock.server.on('closed', function() { - Module['websocket'].emit('close', sock.stream.fd); - sock.server = null; - }); - sock.server.on('error', function(error) { - // Although the ws library may pass errors that may be more descriptive than - // ECONNREFUSED they are not necessarily the expected error code e.g. - // ENOTFOUND on getaddrinfo seems to be node.js specific, so using EHOSTUNREACH - // is still probably the most useful thing to do. This error shouldn't - // occur in a well written app as errors should get trapped in the compiled - // app's own getaddrinfo call. - sock.error = ERRNO_CODES.EHOSTUNREACH; // Used in getsockopt for SOL_SOCKET/SO_ERROR test. - Module['websocket'].emit('error', [sock.stream.fd, sock.error, 'EHOSTUNREACH: Host is unreachable']); - // don't throw - }); - },accept:function(listensock) { - if (!listensock.server) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - var newsock = listensock.pending.shift(); - newsock.stream.flags = listensock.stream.flags; - return newsock; - },getname:function(sock, peer) { - var addr, port; - if (peer) { - if (sock.daddr === undefined || sock.dport === undefined) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } - addr = sock.daddr; - port = sock.dport; - } else { - // TODO saddr and sport will be set for bind()'d UDP sockets, but what - // should we be returning for TCP sockets that've been connect()'d? - addr = sock.saddr || 0; - port = sock.sport || 0; - } - return { addr: addr, port: port }; - },sendmsg:function(sock, buffer, offset, length, addr, port) { - if (sock.type === 2) { - // connection-less sockets will honor the message address, - // and otherwise fall back to the bound destination address - if (addr === undefined || port === undefined) { - addr = sock.daddr; - port = sock.dport; - } - // if there was no address to fall back to, error out - if (addr === undefined || port === undefined) { - throw new FS.ErrnoError(ERRNO_CODES.EDESTADDRREQ); - } - } else { - // connection-based sockets will only use the bound - addr = sock.daddr; - port = sock.dport; - } - - // find the peer for the destination address - var dest = SOCKFS.websocket_sock_ops.getPeer(sock, addr, port); - - // early out if not connected with a connection-based socket - if (sock.type === 1) { - if (!dest || dest.socket.readyState === dest.socket.CLOSING || dest.socket.readyState === dest.socket.CLOSED) { - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } else if (dest.socket.readyState === dest.socket.CONNECTING) { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - } - - // create a copy of the incoming data to send, as the WebSocket API - // doesn't work entirely with an ArrayBufferView, it'll just send - // the entire underlying buffer - if (ArrayBuffer.isView(buffer)) { - offset += buffer.byteOffset; - buffer = buffer.buffer; - } - - var data; - data = buffer.slice(offset, offset + length); - - // if we're emulating a connection-less dgram socket and don't have - // a cached connection, queue the buffer to send upon connect and - // lie, saying the data was sent now. - if (sock.type === 2) { - if (!dest || dest.socket.readyState !== dest.socket.OPEN) { - // if we're not connected, open a new connection - if (!dest || dest.socket.readyState === dest.socket.CLOSING || dest.socket.readyState === dest.socket.CLOSED) { - dest = SOCKFS.websocket_sock_ops.createPeer(sock, addr, port); - } - dest.dgram_send_queue.push(data); - return length; - } - } - - try { - // send the actual data - dest.socket.send(data); - return length; - } catch (e) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - },recvmsg:function(sock, length) { - // http://pubs.opengroup.org/onlinepubs/7908799/xns/recvmsg.html - if (sock.type === 1 && sock.server) { - // tcp servers should not be recv()'ing on the listen socket - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } - - var queued = sock.recv_queue.shift(); - if (!queued) { - if (sock.type === 1) { - var dest = SOCKFS.websocket_sock_ops.getPeer(sock, sock.daddr, sock.dport); - - if (!dest) { - // if we have a destination address but are not connected, error out - throw new FS.ErrnoError(ERRNO_CODES.ENOTCONN); - } - else if (dest.socket.readyState === dest.socket.CLOSING || dest.socket.readyState === dest.socket.CLOSED) { - // return null if the socket has closed - return null; - } - else { - // else, our socket is in a valid state but truly has nothing available - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - } else { - throw new FS.ErrnoError(ERRNO_CODES.EAGAIN); - } - } - - // queued.data will be an ArrayBuffer if it's unadulterated, but if it's - // requeued TCP data it'll be an ArrayBufferView - var queuedLength = queued.data.byteLength || queued.data.length; - var queuedOffset = queued.data.byteOffset || 0; - var queuedBuffer = queued.data.buffer || queued.data; - var bytesRead = Math.min(length, queuedLength); - var res = { - buffer: new Uint8Array(queuedBuffer, queuedOffset, bytesRead), - addr: queued.addr, - port: queued.port - }; - - // push back any unread data for TCP connections - if (sock.type === 1 && bytesRead < queuedLength) { - var bytesRemaining = queuedLength - bytesRead; - queued.data = new Uint8Array(queuedBuffer, queuedOffset + bytesRead, bytesRemaining); - sock.recv_queue.unshift(queued); - } - - return res; - }}}; - function getSocketFromFD(fd) { - var socket = SOCKFS.getSocket(fd); - if (!socket) throw new FS.ErrnoError(8); - return socket; - } - - var Sockets={BUFFER_SIZE:10240,MAX_BUFFER_SIZE:10485760,nextFd:1,fds:{},nextport:1,maxport:65535,peer:null,connections:{},portmap:{},localAddr:4261412874,addrPool:[33554442,50331658,67108874,83886090,100663306,117440522,134217738,150994954,167772170,184549386,201326602,218103818,234881034]}; - - function inetNtop4(addr) { - return (addr & 0xff) + '.' + ((addr >> 8) & 0xff) + '.' + ((addr >> 16) & 0xff) + '.' + ((addr >> 24) & 0xff) - } - - function inetNtop6(ints) { - // ref: http://www.ietf.org/rfc/rfc2373.txt - section 2.5.4 - // Format for IPv4 compatible and mapped 128-bit IPv6 Addresses - // 128-bits are split into eight 16-bit words - // stored in network byte order (big-endian) - // | 80 bits | 16 | 32 bits | - // +-----------------------------------------------------------------+ - // | 10 bytes | 2 | 4 bytes | - // +--------------------------------------+--------------------------+ - // + 5 words | 1 | 2 words | - // +--------------------------------------+--------------------------+ - // |0000..............................0000|0000| IPv4 ADDRESS | (compatible) - // +--------------------------------------+----+---------------------+ - // |0000..............................0000|FFFF| IPv4 ADDRESS | (mapped) - // +--------------------------------------+----+---------------------+ - var str = ""; - var word = 0; - var longest = 0; - var lastzero = 0; - var zstart = 0; - var len = 0; - var i = 0; - var parts = [ - ints[0] & 0xffff, - (ints[0] >> 16), - ints[1] & 0xffff, - (ints[1] >> 16), - ints[2] & 0xffff, - (ints[2] >> 16), - ints[3] & 0xffff, - (ints[3] >> 16) - ]; - - // Handle IPv4-compatible, IPv4-mapped, loopback and any/unspecified addresses - - var hasipv4 = true; - var v4part = ""; - // check if the 10 high-order bytes are all zeros (first 5 words) - for (i = 0; i < 5; i++) { - if (parts[i] !== 0) { hasipv4 = false; break; } - } - - if (hasipv4) { - // low-order 32-bits store an IPv4 address (bytes 13 to 16) (last 2 words) - v4part = inetNtop4(parts[6] | (parts[7] << 16)); - // IPv4-mapped IPv6 address if 16-bit value (bytes 11 and 12) == 0xFFFF (6th word) - if (parts[5] === -1) { - str = "::ffff:"; - str += v4part; - return str; - } - // IPv4-compatible IPv6 address if 16-bit value (bytes 11 and 12) == 0x0000 (6th word) - if (parts[5] === 0) { - str = "::"; - //special case IPv6 addresses - if (v4part === "0.0.0.0") v4part = ""; // any/unspecified address - if (v4part === "0.0.0.1") v4part = "1";// loopback address - str += v4part; - return str; - } - } - - // Handle all other IPv6 addresses - - // first run to find the longest contiguous zero words - for (word = 0; word < 8; word++) { - if (parts[word] === 0) { - if (word - lastzero > 1) { - len = 0; - } - lastzero = word; - len++; - } - if (len > longest) { - longest = len; - zstart = word - longest + 1; - } - } - - for (word = 0; word < 8; word++) { - if (longest > 1) { - // compress contiguous zeros - to produce "::" - if (parts[word] === 0 && word >= zstart && word < (zstart + longest) ) { - if (word === zstart) { - str += ":"; - if (zstart === 0) str += ":"; //leading zeros case - } - continue; - } - } - // converts 16-bit words from big-endian to little-endian before converting to hex string - str += Number(_ntohs(parts[word] & 0xffff)).toString(16); - str += word < 7 ? ":" : ""; - } - return str; - } - function readSockaddr(sa, salen) { - // family / port offsets are common to both sockaddr_in and sockaddr_in6 - var family = HEAP16[((sa)>>1)]; - var port = _ntohs(HEAPU16[(((sa)+(2))>>1)]); - var addr; - - switch (family) { - case 2: - if (salen !== 16) { - return { errno: 28 }; - } - addr = HEAP32[(((sa)+(4))>>2)]; - addr = inetNtop4(addr); - break; - case 10: - if (salen !== 28) { - return { errno: 28 }; - } - addr = [ - HEAP32[(((sa)+(8))>>2)], - HEAP32[(((sa)+(12))>>2)], - HEAP32[(((sa)+(16))>>2)], - HEAP32[(((sa)+(20))>>2)] - ]; - addr = inetNtop6(addr); - break; - default: - return { errno: 5 }; - } - - return { family: family, addr: addr, port: port }; - } - function getSocketAddress(addrp, addrlen, allowNull) { - if (allowNull && addrp === 0) return null; - var info = readSockaddr(addrp, addrlen); - if (info.errno) throw new FS.ErrnoError(info.errno); - info.addr = DNS.lookup_addr(info.addr) || info.addr; - return info; - } - function ___sys_connect(fd, addr, addrlen) {try { - - var sock = getSocketFromFD(fd); - var info = getSocketAddress(addr, addrlen); - sock.sock_ops.connect(sock, info.addr, info.port); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fadvise64_64(fd, offset, len, advice) { - return 0; // your advice is important to us (but we can't use it) - } - - function ___sys_fchmod(fd, mode) {try { - - FS.fchmod(fd, mode); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fchown32(fd, owner, group) {try { - - FS.fchown(fd, owner, group); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fcntl64(fd, cmd, varargs) {SYSCALLS.varargs = varargs; - try { - - var stream = SYSCALLS.getStreamFromFD(fd); - switch (cmd) { - case 0: { - var arg = SYSCALLS.get(); - if (arg < 0) { - return -28; - } - var newStream; - newStream = FS.open(stream.path, stream.flags, 0, arg); - return newStream.fd; - } - case 1: - case 2: - return 0; // FD_CLOEXEC makes no sense for a single process. - case 3: - return stream.flags; - case 4: { - var arg = SYSCALLS.get(); - stream.flags |= arg; - return 0; - } - case 12: - /* case 12: Currently in musl F_GETLK64 has same value as F_GETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ { - - var arg = SYSCALLS.get(); - var offset = 0; - // We're always unlocked. - HEAP16[(((arg)+(offset))>>1)] = 2; - return 0; - } - case 13: - case 14: - /* case 13: Currently in musl F_SETLK64 has same value as F_SETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ - /* case 14: Currently in musl F_SETLKW64 has same value as F_SETLKW, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ - - - return 0; // Pretend that the locking is successful. - case 16: - case 8: - return -28; // These are for sockets. We don't have them fully implemented yet. - case 9: - // musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fnctl() returns that, and we set errno ourselves. - setErrNo(28); - return -1; - default: { - return -28; - } - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fstat64(fd, buf) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - return SYSCALLS.doStat(FS.stat, stream.path, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_fstatfs64(fd, size, buf) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - return ___sys_statfs64(0, size, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_ftruncate64(fd, zero, low, high) {try { - - var length = SYSCALLS.get64(low, high); - FS.ftruncate(fd, length); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_getcwd(buf, size) {try { - - if (size === 0) return -28; - var cwd = FS.cwd(); - var cwdLengthInBytes = lengthBytesUTF8(cwd); - if (size < cwdLengthInBytes + 1) return -68; - stringToUTF8(cwd, buf, size); - return buf; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_getdents64(fd, dirp, count) {try { - - var stream = SYSCALLS.getStreamFromFD(fd) - if (!stream.getdents) { - stream.getdents = FS.readdir(stream.path); - } - - var struct_size = 280; - var pos = 0; - var off = FS.llseek(stream, 0, 1); - - var idx = Math.floor(off / struct_size); - - while (idx < stream.getdents.length && pos + struct_size <= count) { - var id; - var type; - var name = stream.getdents[idx]; - if (name[0] === '.') { - id = 1; - type = 4; // DT_DIR - } else { - var child = FS.lookupNode(stream.node, name); - id = child.id; - type = FS.isChrdev(child.mode) ? 2 : // DT_CHR, character device. - FS.isDir(child.mode) ? 4 : // DT_DIR, directory. - FS.isLink(child.mode) ? 10 : // DT_LNK, symbolic link. - 8; // DT_REG, regular file. - } - (tempI64 = [id>>>0,(tempDouble=id,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((dirp + pos)>>2)] = tempI64[0],HEAP32[(((dirp + pos)+(4))>>2)] = tempI64[1]); - (tempI64 = [(idx + 1) * struct_size>>>0,(tempDouble=(idx + 1) * struct_size,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((dirp + pos)+(8))>>2)] = tempI64[0],HEAP32[(((dirp + pos)+(12))>>2)] = tempI64[1]); - HEAP16[(((dirp + pos)+(16))>>1)] = 280; - HEAP8[(((dirp + pos)+(18))>>0)] = type; - stringToUTF8(name, dirp + pos + 19, 256); - pos += struct_size; - idx += 1; - } - FS.llseek(stream, idx * struct_size, 0); - return pos; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_getegid32() { - return 0; - } - function ___sys_geteuid32( - ) { - return ___sys_getegid32(); - } - - function ___sys_getpid() { - return 42; - } - - function ___sys_getrusage(who, usage) {try { - - _memset(usage, 0, 136); - HEAP32[((usage)>>2)] = 1; // fake some values - HEAP32[(((usage)+(4))>>2)] = 2; - HEAP32[(((usage)+(8))>>2)] = 3; - HEAP32[(((usage)+(12))>>2)] = 4; - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_ioctl(fd, op, varargs) {SYSCALLS.varargs = varargs; - try { - - var stream = SYSCALLS.getStreamFromFD(fd); - switch (op) { - case 21509: - case 21505: { - if (!stream.tty) return -59; - return 0; - } - case 21510: - case 21511: - case 21512: - case 21506: - case 21507: - case 21508: { - if (!stream.tty) return -59; - return 0; // no-op, not actually adjusting terminal settings - } - case 21519: { - if (!stream.tty) return -59; - var argp = SYSCALLS.get(); - HEAP32[((argp)>>2)] = 0; - return 0; - } - case 21520: { - if (!stream.tty) return -59; - return -28; // not supported - } - case 21531: { - var argp = SYSCALLS.get(); - return FS.ioctl(stream, op, argp); - } - case 21523: { - // TODO: in theory we should write to the winsize struct that gets - // passed in, but for now musl doesn't read anything on it - if (!stream.tty) return -59; - return 0; - } - case 21524: { - // TODO: technically, this ioctl call should change the window size. - // but, since emscripten doesn't have any concept of a terminal window - // yet, we'll just silently throw it away as we do TIOCGWINSZ - if (!stream.tty) return -59; - return 0; - } - default: abort('bad ioctl syscall ' + op); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_link(oldpath, newpath) { - return -34; // no hardlinks for us - } - - function ___sys_lstat64(path, buf) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doStat(FS.lstat, path, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_madvise1(addr, length, advice) { - return 0; // advice is welcome, but ignored - } - - function ___sys_mkdir(path, mode) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doMkdir(path, mode); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function syscallMmap2(addr, len, prot, flags, fd, off) { - off <<= 12; // undo pgoffset - var ptr; - var allocated = false; - - // addr argument must be page aligned if MAP_FIXED flag is set. - if ((flags & 16) !== 0 && (addr % 65536) !== 0) { - return -28; - } - - // MAP_ANONYMOUS (aka MAP_ANON) isn't actually defined by POSIX spec, - // but it is widely used way to allocate memory pages on Linux, BSD and Mac. - // In this case fd argument is ignored. - if ((flags & 32) !== 0) { - ptr = _memalign(65536, len); - if (!ptr) return -48; - _memset(ptr, 0, len); - allocated = true; - } else { - var info = FS.getStream(fd); - if (!info) return -8; - var res = FS.mmap(info, addr, len, off, prot, flags); - ptr = res.ptr; - allocated = res.allocated; - } - SYSCALLS.mappings[ptr] = { malloc: ptr, len: len, allocated: allocated, fd: fd, prot: prot, flags: flags, offset: off }; - return ptr; - } - function ___sys_mmap2(addr, len, prot, flags, fd, off) {try { - - return syscallMmap2(addr, len, prot, flags, fd, off); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_msync(addr, len, flags) {try { - - var info = SYSCALLS.mappings[addr]; - if (!info) return 0; - SYSCALLS.doMsync(addr, FS.getStream(info.fd), len, info.flags, 0); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function syscallMunmap(addr, len) { - if ((addr | 0) === -1 || len === 0) { - return -28; - } - // TODO: support unmmap'ing parts of allocations - var info = SYSCALLS.mappings[addr]; - if (!info) return 0; - if (len === info.len) { - var stream = FS.getStream(info.fd); - if (stream) { - if (info.prot & 2) { - SYSCALLS.doMsync(addr, stream, len, info.flags, info.offset); - } - FS.munmap(stream); - } - SYSCALLS.mappings[addr] = null; - if (info.allocated) { - _free(info.malloc); - } - } - return 0; - } - function ___sys_munmap(addr, len) {try { - - return syscallMunmap(addr, len); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_open(path, flags, varargs) {SYSCALLS.varargs = varargs; - try { - - var pathname = SYSCALLS.getStr(path); - var mode = varargs ? SYSCALLS.get() : 0; - var stream = FS.open(pathname, flags, mode); - return stream.fd; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_readlink(path, buf, bufsize) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doReadlink(path, buf, bufsize); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function inetPton4(str) { - var b = str.split('.'); - for (var i = 0; i < 4; i++) { - var tmp = Number(b[i]); - if (isNaN(tmp)) return null; - b[i] = tmp; - } - return (b[0] | (b[1] << 8) | (b[2] << 16) | (b[3] << 24)) >>> 0; - } - - /** @suppress {checkTypes} */ - function jstoi_q(str) { - return parseInt(str); - } - function inetPton6(str) { - var words; - var w, offset, z, i; - /* http://home.deds.nl/~aeron/regex/ */ - var valid6regx = /^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i - var parts = []; - if (!valid6regx.test(str)) { - return null; - } - if (str === "::") { - return [0, 0, 0, 0, 0, 0, 0, 0]; - } - // Z placeholder to keep track of zeros when splitting the string on ":" - if (str.startsWith("::")) { - str = str.replace("::", "Z:"); // leading zeros case - } else { - str = str.replace("::", ":Z:"); - } - - if (str.indexOf(".") > 0) { - // parse IPv4 embedded stress - str = str.replace(new RegExp('[.]', 'g'), ":"); - words = str.split(":"); - words[words.length-4] = jstoi_q(words[words.length-4]) + jstoi_q(words[words.length-3])*256; - words[words.length-3] = jstoi_q(words[words.length-2]) + jstoi_q(words[words.length-1])*256; - words = words.slice(0, words.length-2); - } else { - words = str.split(":"); - } - - offset = 0; z = 0; - for (w=0; w < words.length; w++) { - if (typeof words[w] === 'string') { - if (words[w] === 'Z') { - // compressed zeros - write appropriate number of zero words - for (z = 0; z < (8 - words.length+1); z++) { - parts[w+z] = 0; - } - offset = z-1; - } else { - // parse hex to field to 16-bit value and write it in network byte-order - parts[w+offset] = _htons(parseInt(words[w],16)); - } - } else { - // parsed IPv4 words - parts[w+offset] = words[w]; - } - } - return [ - (parts[1] << 16) | parts[0], - (parts[3] << 16) | parts[2], - (parts[5] << 16) | parts[4], - (parts[7] << 16) | parts[6] - ]; - } - function writeSockaddr(sa, family, addr, port, addrlen) { - switch (family) { - case 2: - addr = inetPton4(addr); - if (addrlen) { - HEAP32[((addrlen)>>2)] = 16; - } - HEAP16[((sa)>>1)] = family; - HEAP32[(((sa)+(4))>>2)] = addr; - HEAP16[(((sa)+(2))>>1)] = _htons(port); - /* Use makeSetValue instead of memset to avoid adding memset dependency for all users of writeSockaddr. */ - - (tempI64 = [0>>>0,(tempDouble=0,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((sa)+(8))>>2)] = tempI64[0],HEAP32[(((sa)+(12))>>2)] = tempI64[1]); - break; - case 10: - addr = inetPton6(addr); - if (addrlen) { - HEAP32[((addrlen)>>2)] = 28; - } - HEAP32[((sa)>>2)] = family; - HEAP32[(((sa)+(8))>>2)] = addr[0]; - HEAP32[(((sa)+(12))>>2)] = addr[1]; - HEAP32[(((sa)+(16))>>2)] = addr[2]; - HEAP32[(((sa)+(20))>>2)] = addr[3]; - HEAP16[(((sa)+(2))>>1)] = _htons(port); - HEAP32[(((sa)+(4))>>2)] = 0; - HEAP32[(((sa)+(24))>>2)] = 0; - break; - default: - return 5; - } - return 0; - } - - var DNS={address_map:{id:1,addrs:{},names:{}},lookup_name:function (name) { - // If the name is already a valid ipv4 / ipv6 address, don't generate a fake one. - var res = inetPton4(name); - if (res !== null) { - return name; - } - res = inetPton6(name); - if (res !== null) { - return name; - } - - // See if this name is already mapped. - var addr; - - if (DNS.address_map.addrs[name]) { - addr = DNS.address_map.addrs[name]; - } else { - var id = DNS.address_map.id++; - assert(id < 65535, 'exceeded max address mappings of 65535'); - - addr = '172.29.' + (id & 0xff) + '.' + (id & 0xff00); - - DNS.address_map.names[addr] = name; - DNS.address_map.addrs[name] = addr; - } - - return addr; - },lookup_addr:function (addr) { - if (DNS.address_map.names[addr]) { - return DNS.address_map.names[addr]; - } - - return null; - }}; - function ___sys_recvfrom(fd, buf, len, flags, addr, addrlen) {try { - - var sock = getSocketFromFD(fd); - var msg = sock.sock_ops.recvmsg(sock, len); - if (!msg) return 0; // socket is closed - if (addr) { - var errno = writeSockaddr(addr, sock.family, DNS.lookup_name(msg.addr), msg.port, addrlen); - } - HEAPU8.set(msg.buffer, buf); - return msg.buffer.byteLength; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_rename(old_path, new_path) {try { - - old_path = SYSCALLS.getStr(old_path); - new_path = SYSCALLS.getStr(new_path); - FS.rename(old_path, new_path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_rmdir(path) {try { - - path = SYSCALLS.getStr(path); - FS.rmdir(path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_sendto(fd, message, length, flags, addr, addr_len) {try { - - var sock = getSocketFromFD(fd); - var dest = getSocketAddress(addr, addr_len, true); - if (!dest) { - // send, no address provided - return FS.write(sock.stream, HEAP8,message, length); - } else { - // sendto an address - return sock.sock_ops.sendmsg(sock, HEAP8,message, length, dest.addr, dest.port); - } - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_setsockopt(fd) {try { - - return -50; // The option is unknown at the level indicated. - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_shutdown(fd, how) {try { - - getSocketFromFD(fd); - return -52; // unsupported feature - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_socket(domain, type, protocol) {try { - - var sock = SOCKFS.createSocket(domain, type, protocol); - return sock.stream.fd; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_stat64(path, buf) {try { - - path = SYSCALLS.getStr(path); - return SYSCALLS.doStat(FS.stat, path, buf); - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_symlink(target, linkpath) {try { - - target = SYSCALLS.getStr(target); - linkpath = SYSCALLS.getStr(linkpath); - FS.symlink(target, linkpath); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_unlink(path) {try { - - path = SYSCALLS.getStr(path); - FS.unlink(path); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function ___sys_utimensat(dirfd, path, times, flags) {try { - - path = SYSCALLS.getStr(path); - path = SYSCALLS.calculateAt(dirfd, path, true); - var seconds = HEAP32[((times)>>2)]; - var nanoseconds = HEAP32[(((times)+(4))>>2)]; - var atime = (seconds*1000) + (nanoseconds/(1000*1000)); - times += 8; - seconds = HEAP32[((times)>>2)]; - nanoseconds = HEAP32[(((times)+(4))>>2)]; - var mtime = (seconds*1000) + (nanoseconds/(1000*1000)); - FS.utime(path, atime, mtime); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return -e.errno; - } - } - - function _abort() { - abort(); - } - - function _emscripten_get_now_res() { // return resolution of get_now, in nanoseconds - if (ENVIRONMENT_IS_NODE) { - return 1; // nanoseconds - } else - if (typeof dateNow !== 'undefined') { - return 1000; // microseconds (1/1000 of a millisecond) - } else - // Modern environment where performance.now() is supported: - return 1000; // microseconds (1/1000 of a millisecond) - } - function _clock_getres(clk_id, res) { - // int clock_getres(clockid_t clk_id, struct timespec *res); - var nsec; - if (clk_id === 0) { - nsec = 1000 * 1000; // educated guess that it's milliseconds - } else if (clk_id === 1 && _emscripten_get_now_is_monotonic) { - nsec = _emscripten_get_now_res(); - } else { - setErrNo(28); - return -1; - } - HEAP32[((res)>>2)] = (nsec/1000000000)|0; - HEAP32[(((res)+(4))>>2)] = nsec // resolution is nanoseconds - return 0; - } - - - function _difftime(time1, time0) { - return time1 - time0; - } - - function _dlclose(handle) { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - function _dlerror() { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - function _dlopen(filename, flag) { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - function _dlsym(handle, symbol) { - abort("To use dlopen, you need to use Emscripten's linking support, see https://github.com/emscripten-core/emscripten/wiki/Linking"); - } - - var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function (buffer, bufferLength) { - // for modern web browsers - // map the work array to the memory buffer passed with the length - for (var i = 0; i < bufferLength; i += this.batchedQuotaMax) { - var view = new Uint8Array(Module.HEAPU8.buffer, buffer + i, Math.min(bufferLength - i, this.batchedQuotaMax)); - crypto.getRandomValues(view) - } - }}; - function _dotnet_browser_entropy(buffer, bufferLength) { - // check that we have crypto available - if (typeof crypto === 'object' && typeof crypto['getRandomValues'] === 'function') { - DOTNETENTROPY.getBatchedRandomValues(buffer, bufferLength) - return 0; - } else { - // we couldn't find a proper implementation, as Math.random() is not suitable - // instead of aborting here we will return and let managed code handle the message - return -1; - } - } - - var readAsmConstArgsArray=[]; - function readAsmConstArgs(sigPtr, buf) { - readAsmConstArgsArray.length = 0; - var ch; - // Most arguments are i32s, so shift the buffer pointer so it is a plain - // index into HEAP32. - buf >>= 2; - while (ch = HEAPU8[sigPtr++]) { - // A double takes two 32-bit slots, and must also be aligned - the backend - // will emit padding to avoid that. - var double = ch < 105; - if (double && (buf & 1)) buf++; - readAsmConstArgsArray.push(double ? HEAPF64[buf++ >> 1] : HEAP32[buf]); - ++buf; - } - return readAsmConstArgsArray; - } - function _emscripten_asm_const_int(code, sigPtr, argbuf) { - var args = readAsmConstArgs(sigPtr, argbuf); - return ASM_CONSTS[code].apply(null, args); - } - - function _emscripten_get_heap_max() { - // Handle the case of 4GB (which would wrap to 0 in the return value) by - // returning up to 4GB - one wasm page. - return 2147483648; - } - - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.copyWithin(dest, src, src + num); - } - - function emscripten_realloc_buffer(size) { - try { - // round size grow request up to wasm page size (fixed 64KB per spec) - wasmMemory.grow((size - buffer.byteLength + 65535) >>> 16); // .grow() takes a delta compared to the previous size - updateGlobalBufferAndViews(wasmMemory.buffer); - return 1 /*success*/; - } catch(e) { - } - // implicit 0 return to save code size (caller will cast "undefined" into 0 - // anyhow) - } - function _emscripten_resize_heap(requestedSize) { - var oldSize = HEAPU8.length; - requestedSize = requestedSize >>> 0; - // With pthreads, races can happen (another thread might increase the size in between), so return a failure, and let the caller retry. - - // Memory resize rules: - // 1. Always increase heap size to at least the requested size, rounded up to next page multiple. - // 2a. If MEMORY_GROWTH_LINEAR_STEP == -1, excessively resize the heap geometrically: increase the heap size according to - // MEMORY_GROWTH_GEOMETRIC_STEP factor (default +20%), - // At most overreserve by MEMORY_GROWTH_GEOMETRIC_CAP bytes (default 96MB). - // 2b. If MEMORY_GROWTH_LINEAR_STEP != -1, excessively resize the heap linearly: increase the heap size by at least MEMORY_GROWTH_LINEAR_STEP bytes. - // 3. Max size for the heap is capped at 2048MB-WASM_PAGE_SIZE, or by MAXIMUM_MEMORY, or by ASAN limit, depending on which is smallest - // 4. If we were unable to allocate as much memory, it may be due to over-eager decision to excessively reserve due to (3) above. - // Hence if an allocation fails, cut down on the amount of excess growth, in an attempt to succeed to perform a smaller allocation. - - // A limit is set for how much we can grow. We should not exceed that - // (the wasm binary specifies it, so if we tried, we'd fail anyhow). - // In CAN_ADDRESS_2GB mode, stay one Wasm page short of 4GB: while e.g. Chrome is able to allocate full 4GB Wasm memories, the size will wrap - // back to 0 bytes in Wasm side for any code that deals with heap sizes, which would require special casing all heap size related code to treat - // 0 specially. - var maxHeapSize = 2147483648; - if (requestedSize > maxHeapSize) { - return false; - } - - // Loop through potential heap size increases. If we attempt a too eager reservation that fails, cut down on the - // attempted size and reserve a smaller bump instead. (max 3 times, chosen somewhat arbitrarily) - for (var cutDown = 1; cutDown <= 4; cutDown *= 2) { - var overGrownHeapSize = oldSize * (1 + 0.2 / cutDown); // ensure geometric growth - // but limit overreserving (default to capping at +96MB overgrowth at most) - overGrownHeapSize = Math.min(overGrownHeapSize, requestedSize + 100663296 ); - - var newSize = Math.min(maxHeapSize, alignUp(Math.max(requestedSize, overGrownHeapSize), 65536)); - - var replacement = emscripten_realloc_buffer(newSize); - if (replacement) { - - return true; - } - } - return false; - } - - function _emscripten_thread_sleep(msecs) { - var start = _emscripten_get_now(); - while (_emscripten_get_now() - start < msecs) { - // Do nothing. - } - } - - var ENV={}; - - function getExecutableName() { - return thisProgram || './this.program'; - } - function getEnvStrings() { - if (!getEnvStrings.strings) { - // Default values. - // Browser language detection #8751 - var lang = ((typeof navigator === 'object' && navigator.languages && navigator.languages[0]) || 'C').replace('-', '_') + '.UTF-8'; - var env = { - 'USER': 'web_user', - 'LOGNAME': 'web_user', - 'PATH': '/', - 'PWD': '/', - 'HOME': '/home/web_user', - 'LANG': lang, - '_': getExecutableName() - }; - // Apply the user-provided values, if any. - for (var x in ENV) { - env[x] = ENV[x]; - } - var strings = []; - for (var x in env) { - strings.push(x + '=' + env[x]); - } - getEnvStrings.strings = strings; - } - return getEnvStrings.strings; - } - function _environ_get(__environ, environ_buf) {try { - - var bufSize = 0; - getEnvStrings().forEach(function(string, i) { - var ptr = environ_buf + bufSize; - HEAP32[(((__environ)+(i * 4))>>2)] = ptr; - writeAsciiToMemory(string, ptr); - bufSize += string.length + 1; - }); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _environ_sizes_get(penviron_count, penviron_buf_size) {try { - - var strings = getEnvStrings(); - HEAP32[((penviron_count)>>2)] = strings.length; - var bufSize = 0; - strings.forEach(function(string) { - bufSize += string.length + 1; - }); - HEAP32[((penviron_buf_size)>>2)] = bufSize; - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _exit(status) { - // void _exit(int status); - // http://pubs.opengroup.org/onlinepubs/000095399/functions/exit.html - exit(status); - } - - function _fd_close(fd) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - FS.close(stream); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_fdstat_get(fd, pbuf) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - // All character devices are terminals (other things a Linux system would - // assume is a character device, like the mouse, we have special APIs for). - var type = stream.tty ? 2 : - FS.isDir(stream.mode) ? 3 : - FS.isLink(stream.mode) ? 7 : - 4; - HEAP8[((pbuf)>>0)] = type; - // TODO HEAP16[(((pbuf)+(2))>>1)] = ?; - // TODO (tempI64 = [?>>>0,(tempDouble=?,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((pbuf)+(8))>>2)] = tempI64[0],HEAP32[(((pbuf)+(12))>>2)] = tempI64[1]); - // TODO (tempI64 = [?>>>0,(tempDouble=?,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((pbuf)+(16))>>2)] = tempI64[0],HEAP32[(((pbuf)+(20))>>2)] = tempI64[1]); - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_pread(fd, iov, iovcnt, offset_low, offset_high, pnum) {try { - - - var stream = SYSCALLS.getStreamFromFD(fd) - var num = SYSCALLS.doReadv(stream, iov, iovcnt, offset_low); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_pwrite(fd, iov, iovcnt, offset_low, offset_high, pnum) {try { - - - var stream = SYSCALLS.getStreamFromFD(fd) - var num = SYSCALLS.doWritev(stream, iov, iovcnt, offset_low); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_read(fd, iov, iovcnt, pnum) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - var num = SYSCALLS.doReadv(stream, iov, iovcnt); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_seek(fd, offset_low, offset_high, whence, newOffset) {try { - - - var stream = SYSCALLS.getStreamFromFD(fd); - var HIGH_OFFSET = 0x100000000; // 2^32 - // use an unsigned operator on low and shift high by 32-bits - var offset = offset_high * HIGH_OFFSET + (offset_low >>> 0); - - var DOUBLE_LIMIT = 0x20000000000000; // 2^53 - // we also check for equality since DOUBLE_LIMIT + 1 == DOUBLE_LIMIT - if (offset <= -DOUBLE_LIMIT || offset >= DOUBLE_LIMIT) { - return -61; - } - - FS.llseek(stream, offset, whence); - (tempI64 = [stream.position>>>0,(tempDouble=stream.position,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((newOffset)>>2)] = tempI64[0],HEAP32[(((newOffset)+(4))>>2)] = tempI64[1]); - if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_sync(fd) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - if (stream.stream_ops && stream.stream_ops.fsync) { - return -stream.stream_ops.fsync(stream); - } - return 0; // we can't do anything synchronously; the in-memory FS is already synced to - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _fd_write(fd, iov, iovcnt, pnum) {try { - - var stream = SYSCALLS.getStreamFromFD(fd); - var num = SYSCALLS.doWritev(stream, iov, iovcnt); - HEAP32[((pnum)>>2)] = num - return 0; - } catch (e) { - if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e); - return e.errno; - } - } - - function _flock(fd, operation) { - // int flock(int fd, int operation); - // Pretend to succeed - return 0; - } - - var GAI_ERRNO_MESSAGES={}; - function _gai_strerror(val) { - var buflen = 256; - - // On first call to gai_strerror we initialise the buffer and populate the error messages. - if (!_gai_strerror.buffer) { - _gai_strerror.buffer = _malloc(buflen); - - GAI_ERRNO_MESSAGES['0'] = 'Success'; - GAI_ERRNO_MESSAGES['' + -1] = 'Invalid value for \'ai_flags\' field'; - GAI_ERRNO_MESSAGES['' + -2] = 'NAME or SERVICE is unknown'; - GAI_ERRNO_MESSAGES['' + -3] = 'Temporary failure in name resolution'; - GAI_ERRNO_MESSAGES['' + -4] = 'Non-recoverable failure in name res'; - GAI_ERRNO_MESSAGES['' + -6] = '\'ai_family\' not supported'; - GAI_ERRNO_MESSAGES['' + -7] = '\'ai_socktype\' not supported'; - GAI_ERRNO_MESSAGES['' + -8] = 'SERVICE not supported for \'ai_socktype\''; - GAI_ERRNO_MESSAGES['' + -10] = 'Memory allocation failure'; - GAI_ERRNO_MESSAGES['' + -11] = 'System error returned in \'errno\''; - GAI_ERRNO_MESSAGES['' + -12] = 'Argument buffer overflow'; - } - - var msg = 'Unknown error'; - - if (val in GAI_ERRNO_MESSAGES) { - if (GAI_ERRNO_MESSAGES[val].length > buflen - 1) { - msg = 'Message too long'; // EMSGSIZE message. This should never occur given the GAI_ERRNO_MESSAGES above. - } else { - msg = GAI_ERRNO_MESSAGES[val]; - } - } - - writeAsciiToMemory(msg, _gai_strerror.buffer); - return _gai_strerror.buffer; - } - - function _getTempRet0() { - return getTempRet0(); - } - - function _gettimeofday(ptr) { - var now = Date.now(); - HEAP32[((ptr)>>2)] = (now/1000)|0; // seconds - HEAP32[(((ptr)+(4))>>2)] = ((now % 1000)*1000)|0; // microseconds - return 0; - } - - function _gmtime_r(time, tmPtr) { - var date = new Date(HEAP32[((time)>>2)]*1000); - HEAP32[((tmPtr)>>2)] = date.getUTCSeconds(); - HEAP32[(((tmPtr)+(4))>>2)] = date.getUTCMinutes(); - HEAP32[(((tmPtr)+(8))>>2)] = date.getUTCHours(); - HEAP32[(((tmPtr)+(12))>>2)] = date.getUTCDate(); - HEAP32[(((tmPtr)+(16))>>2)] = date.getUTCMonth(); - HEAP32[(((tmPtr)+(20))>>2)] = date.getUTCFullYear()-1900; - HEAP32[(((tmPtr)+(24))>>2)] = date.getUTCDay(); - HEAP32[(((tmPtr)+(36))>>2)] = 0; - HEAP32[(((tmPtr)+(32))>>2)] = 0; - var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0); - var yday = ((date.getTime() - start) / (1000 * 60 * 60 * 24))|0; - HEAP32[(((tmPtr)+(28))>>2)] = yday; - // Allocate a string "GMT" for us to point to. - if (!_gmtime_r.GMTString) _gmtime_r.GMTString = allocateUTF8("GMT"); - HEAP32[(((tmPtr)+(40))>>2)] = _gmtime_r.GMTString; - return tmPtr; - } - - function _llvm_eh_typeid_for(type) { - return type; - } - - - var MONO={pump_count:0,timeout_queue:[],spread_timers_maximum:0,_vt_stack:[],mono_wasm_runtime_is_ready:false,mono_wasm_ignore_pdb_load_errors:true,_id_table:{},pump_message:function () { - if (!this.mono_background_exec) - this.mono_background_exec = Module.cwrap ("mono_background_exec", null); - while (MONO.timeout_queue.length > 0) { - --MONO.pump_count; - MONO.timeout_queue.shift()(); - } - while (MONO.pump_count > 0) { - --MONO.pump_count; - this.mono_background_exec (); - } - },export_functions:function (module) { - module ["pump_message"] = MONO.pump_message.bind(MONO); - module ["prevent_timer_throttling"] = MONO.prevent_timer_throttling.bind(MONO); - module ["mono_wasm_set_timeout_exec"] = MONO.mono_wasm_set_timeout_exec.bind(MONO); - module ["mono_load_runtime_and_bcl"] = MONO.mono_load_runtime_and_bcl.bind(MONO); - module ["mono_load_runtime_and_bcl_args"] = MONO.mono_load_runtime_and_bcl_args.bind(MONO); - module ["mono_wasm_load_bytes_into_heap"] = MONO.mono_wasm_load_bytes_into_heap.bind(MONO); - module ["mono_wasm_load_icu_data"] = MONO.mono_wasm_load_icu_data.bind(MONO); - module ["mono_wasm_get_icudt_name"] = MONO.mono_wasm_get_icudt_name.bind(MONO); - module ["mono_wasm_globalization_init"] = MONO.mono_wasm_globalization_init.bind(MONO); - module ["mono_wasm_get_loaded_files"] = MONO.mono_wasm_get_loaded_files.bind(MONO); - module ["mono_wasm_new_root_buffer"] = MONO.mono_wasm_new_root_buffer.bind(MONO); - module ["mono_wasm_new_root_buffer_from_pointer"] = MONO.mono_wasm_new_root_buffer_from_pointer.bind(MONO); - module ["mono_wasm_new_root"] = MONO.mono_wasm_new_root.bind(MONO); - module ["mono_wasm_new_roots"] = MONO.mono_wasm_new_roots.bind(MONO); - module ["mono_wasm_release_roots"] = MONO.mono_wasm_release_roots.bind(MONO); - module ["mono_wasm_load_config"] = MONO.mono_wasm_load_config.bind(MONO); - },_base64Converter:{_base64Table:["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"],_makeByteReader:function (bytes, index, count) { - var position = (typeof (index) === "number") ? index : 0; - var endpoint; - - if (typeof (count) === "number") - endpoint = (position + count); - else - endpoint = (bytes.length - position); - - var result = { - read: function () { - if (position >= endpoint) - return false; - - var nextByte = bytes[position]; - position += 1; - return nextByte; - } - }; - - Object.defineProperty(result, "eof", { - get: function () { - return (position >= endpoint); - }, - configurable: true, - enumerable: true - }); - - return result; - },toBase64StringImpl:function (inArray, offset, length) { - var reader = this._makeByteReader(inArray, offset, length); - var result = ""; - var ch1 = 0, ch2 = 0, ch3 = 0, bits = 0, equalsCount = 0, sum = 0; - var mask1 = (1 << 24) - 1, mask2 = (1 << 18) - 1, mask3 = (1 << 12) - 1, mask4 = (1 << 6) - 1; - var shift1 = 18, shift2 = 12, shift3 = 6, shift4 = 0; - - while (true) { - ch1 = reader.read(); - ch2 = reader.read(); - ch3 = reader.read(); - - if (ch1 === false) - break; - if (ch2 === false) { - ch2 = 0; - equalsCount += 1; - } - if (ch3 === false) { - ch3 = 0; - equalsCount += 1; - } - - // Seems backwards, but is right! - sum = (ch1 << 16) | (ch2 << 8) | (ch3 << 0); - - bits = (sum & mask1) >> shift1; - result += this._base64Table[bits]; - bits = (sum & mask2) >> shift2; - result += this._base64Table[bits]; - - if (equalsCount < 2) { - bits = (sum & mask3) >> shift3; - result += this._base64Table[bits]; - } - - if (equalsCount === 2) { - result += "=="; - } else if (equalsCount === 1) { - result += "="; - } else { - bits = (sum & mask4) >> shift4; - result += this._base64Table[bits]; - } - } - - return result; - }},_mono_wasm_root_buffer_prototype:{_throw_index_out_of_range:function () { - throw new Error ("index out of range"); - },_check_in_range:function (index) { - if ((index >= this.__count) || (index < 0)) - this._throw_index_out_of_range(); - },get_address:function (index) { - this._check_in_range (index); - return this.__offset + (index * 4); - },get_address_32:function (index) { - this._check_in_range (index); - return this.__offset32 + index; - },get:function (index) { - this._check_in_range (index); - return Module.HEAP32[this.get_address_32 (index)]; - },set:function (index, value) { - Module.HEAP32[this.get_address_32 (index)] = value; - return value; - },_unsafe_get:function (index) { - return Module.HEAP32[this.__offset32 + index]; - },_unsafe_set:function (index, value) { - Module.HEAP32[this.__offset32 + index] = value; - },clear:function () { - if (this.__offset) - MONO._zero_region (this.__offset, this.__count * 4); - },release:function () { - if (this.__offset && this.__ownsAllocation) { - MONO.mono_wasm_deregister_root (this.__offset); - MONO._zero_region (this.__offset, this.__count * 4); - Module._free (this.__offset); - } - - this.__handle = this.__offset = this.__count = this.__offset32 = 0; - },toString:function () { - return "[root buffer @" + this.get_address (0) + ", size " + this.__count + "]"; - }},_scratch_root_buffer:null,_scratch_root_free_indices:null,_scratch_root_free_indices_count:0,_scratch_root_free_instances:[],_mono_wasm_root_prototype:{get_address:function () { - return this.__buffer.get_address (this.__index); - },get_address_32:function () { - return this.__buffer.get_address_32 (this.__index); - },get:function () { - var result = this.__buffer._unsafe_get (this.__index); - return result; - },set:function (value) { - this.__buffer._unsafe_set (this.__index, value); - return value; - },valueOf:function () { - return this.get (); - },clear:function () { - this.set (0); - },release:function () { - const maxPooledInstances = 128; - if (MONO._scratch_root_free_instances.length > maxPooledInstances) { - MONO._mono_wasm_release_scratch_index (this.__index); - this.__buffer = 0; - this.__index = 0; - } else { - this.set (0); - MONO._scratch_root_free_instances.push (this); - } - },toString:function () { - return "[root @" + this.get_address () + "]"; - }},_mono_wasm_release_scratch_index:function (index) { - if (index === undefined) - return; - - this._scratch_root_buffer.set (index, 0); - this._scratch_root_free_indices[this._scratch_root_free_indices_count] = index; - this._scratch_root_free_indices_count++; - },_mono_wasm_claim_scratch_index:function () { - if (!this._scratch_root_buffer) { - const maxScratchRoots = 8192; - this._scratch_root_buffer = this.mono_wasm_new_root_buffer (maxScratchRoots, "js roots"); - - this._scratch_root_free_indices = new Int32Array (maxScratchRoots); - this._scratch_root_free_indices_count = maxScratchRoots; - for (var i = 0; i < maxScratchRoots; i++) - this._scratch_root_free_indices[i] = maxScratchRoots - i - 1; - - Object.defineProperty (this._mono_wasm_root_prototype, "value", { - get: this._mono_wasm_root_prototype.get, - set: this._mono_wasm_root_prototype.set, - configurable: false - }); - } - - if (this._scratch_root_free_indices_count < 1) - throw new Error ("Out of scratch root space"); - - var result = this._scratch_root_free_indices[this._scratch_root_free_indices_count - 1]; - this._scratch_root_free_indices_count--; - return result; - },_zero_region:function (byteOffset, sizeBytes) { - if (((byteOffset % 4) === 0) && ((sizeBytes % 4) === 0)) - Module.HEAP32.fill(0, byteOffset / 4, sizeBytes / 4); - else - Module.HEAP8.fill(0, byteOffset, sizeBytes); - },mono_wasm_new_root_buffer:function (capacity, msg) { - if (!this.mono_wasm_register_root || !this.mono_wasm_deregister_root) { - this.mono_wasm_register_root = Module.cwrap ("mono_wasm_register_root", "number", ["number", "number", "string"]); - this.mono_wasm_deregister_root = Module.cwrap ("mono_wasm_deregister_root", null, ["number"]); - } - - if (capacity <= 0) - throw new Error ("capacity >= 1"); - - capacity = capacity | 0; - - var capacityBytes = capacity * 4; - var offset = Module._malloc (capacityBytes); - if ((offset % 4) !== 0) - throw new Error ("Malloc returned an unaligned offset"); - - this._zero_region (offset, capacityBytes); - - var result = Object.create (this._mono_wasm_root_buffer_prototype); - result.__offset = offset; - result.__offset32 = (offset / 4) | 0; - result.__count = capacity; - result.length = capacity; - result.__handle = this.mono_wasm_register_root (offset, capacityBytes, msg || 0); - result.__ownsAllocation = true; - - return result; - },mono_wasm_new_root_buffer_from_pointer:function (offset, capacity, msg) { - if (!this.mono_wasm_register_root || !this.mono_wasm_deregister_root) { - this.mono_wasm_register_root = Module.cwrap ("mono_wasm_register_root", "number", ["number", "number", "string"]); - this.mono_wasm_deregister_root = Module.cwrap ("mono_wasm_deregister_root", null, ["number"]); - } - - if (capacity <= 0) - throw new Error ("capacity >= 1"); - - capacity = capacity | 0; - - var capacityBytes = capacity * 4; - if ((offset % 4) !== 0) - throw new Error ("Unaligned offset"); - - this._zero_region (offset, capacityBytes); - - var result = Object.create (this._mono_wasm_root_buffer_prototype); - result.__offset = offset; - result.__offset32 = (offset / 4) | 0; - result.__count = capacity; - result.length = capacity; - result.__handle = this.mono_wasm_register_root (offset, capacityBytes, msg || 0); - result.__ownsAllocation = false; - - return result; - },mono_wasm_new_root:function (value) { - var result; - - if (this._scratch_root_free_instances.length > 0) { - result = this._scratch_root_free_instances.pop (); - } else { - var index = this._mono_wasm_claim_scratch_index (); - var buffer = this._scratch_root_buffer; - - result = Object.create (this._mono_wasm_root_prototype); - result.__buffer = buffer; - result.__index = index; - } - - if (value !== undefined) { - if (typeof (value) !== "number") - throw new Error ("value must be an address in the managed heap"); - - result.set (value); - } else { - result.set (0); - } - - return result; - },mono_wasm_new_roots:function (count_or_values) { - var result; - - if (Array.isArray (count_or_values)) { - result = new Array (count_or_values.length); - for (var i = 0; i < result.length; i++) - result[i] = this.mono_wasm_new_root (count_or_values[i]); - } else if ((count_or_values | 0) > 0) { - result = new Array (count_or_values); - for (var i = 0; i < result.length; i++) - result[i] = this.mono_wasm_new_root (); - } else { - throw new Error ("count_or_values must be either an array or a number greater than 0"); - } - - return result; - },mono_wasm_release_roots:function () { - for (var i = 0; i < arguments.length; i++) { - if (!arguments[i]) - continue; - - arguments[i].release (); - } - },mono_text_decoder:undefined,string_decoder:{copy:function (mono_string) { - if (mono_string === 0) - return null; - - if (!this.mono_wasm_string_root) - this.mono_wasm_string_root = MONO.mono_wasm_new_root (); - this.mono_wasm_string_root.value = mono_string; - - if (!this.mono_wasm_string_get_data) - this.mono_wasm_string_get_data = Module.cwrap ("mono_wasm_string_get_data", null, ['number', 'number', 'number', 'number']); - - if (!this.mono_wasm_string_decoder_buffer) - this.mono_wasm_string_decoder_buffer = Module._malloc(12); - - let ppChars = this.mono_wasm_string_decoder_buffer + 0, - pLengthBytes = this.mono_wasm_string_decoder_buffer + 4, - pIsInterned = this.mono_wasm_string_decoder_buffer + 8; - - this.mono_wasm_string_get_data (mono_string, ppChars, pLengthBytes, pIsInterned); - - // TODO: Is this necessary? - if (!this.mono_wasm_empty_string) - this.mono_wasm_empty_string = ""; - - let result = this.mono_wasm_empty_string; - let lengthBytes = Module.HEAP32[pLengthBytes / 4], - pChars = Module.HEAP32[ppChars / 4], - isInterned = Module.HEAP32[pIsInterned / 4]; - - if (pLengthBytes && pChars) { - if ( - isInterned && - MONO.interned_string_table && - MONO.interned_string_table.has(mono_string) - ) { - result = MONO.interned_string_table.get(mono_string); - // console.log("intern table cache hit", mono_string, result.length); - } else { - result = this.decode(pChars, pChars + lengthBytes, false); - if (isInterned) { - if (!MONO.interned_string_table) - MONO.interned_string_table = new Map(); - // console.log("interned", mono_string, result.length); - MONO.interned_string_table.set(mono_string, result); - } - } - } - - this.mono_wasm_string_root.value = 0; - return result; - },decode:function (start, end, save) { - if (!MONO.mono_text_decoder) { - MONO.mono_text_decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined; - } - - var str = ""; - if (MONO.mono_text_decoder) { - // When threading is enabled, TextDecoder does not accept a view of a - // SharedArrayBuffer, we must make a copy of the array first. - var subArray = typeof SharedArrayBuffer !== 'undefined' && Module.HEAPU8.buffer instanceof SharedArrayBuffer - ? Module.HEAPU8.slice(start, end) - : Module.HEAPU8.subarray(start, end); - - str = MONO.mono_text_decoder.decode(subArray); - } else { - for (var i = 0; i < end - start; i+=2) { - var char = Module.getValue (start + i, 'i16'); - str += String.fromCharCode (char); - } - } - if (save) - this.result = str; - - return str; - }},mono_wasm_add_dbg_command_received:function(res_ok, id, buffer, buffer_len) - { - const assembly_data = new Uint8Array(Module.HEAPU8.buffer, buffer, buffer_len); - const base64String = MONO._base64Converter.toBase64StringImpl(assembly_data); - const buffer_obj = { - res_ok, - res: { - id, - value: base64String - } - } - if (MONO.commands_received.has(id)) - console.warn("Addind an id that already exists in commands_received"); - MONO.commands_received.set(id, buffer_obj); - },mono_wasm_malloc_and_set_debug_buffer:function (command_parameters) - { - if (command_parameters.length > this._debugger_buffer_len) - { - if (this._debugger_buffer) - Module._free (this._debugger_buffer); - this._debugger_buffer_len = Math.max(command_parameters.length, this._debugger_buffer_len, 256); - this._debugger_buffer = Module._malloc (this._debugger_buffer_len); - } - this._debugger_heap_bytes = new Uint8Array (Module.HEAPU8.buffer, this._debugger_buffer, this._debugger_buffer_len); - this._debugger_heap_bytes.set(this._base64_to_uint8 (command_parameters)); - },mono_wasm_send_dbg_command_with_parms:function (id, command_set, command, command_parameters, length, valtype, newvalue) - { - this.mono_wasm_malloc_and_set_debug_buffer(command_parameters); - this._c_fn_table.mono_wasm_send_dbg_command_with_parms_wrapper (id, command_set, command, this._debugger_buffer, length, valtype, newvalue.toString()); - let { res_ok, res } = MONO.commands_received.remove(id);; - if (!res_ok) - throw new Error (`Failed on mono_wasm_invoke_method_debugger_agent_with_parms`); - return res; - },mono_wasm_send_dbg_command:function (id, command_set, command, command_parameters) - { - this.mono_wasm_malloc_and_set_debug_buffer(command_parameters); - this._c_fn_table.mono_wasm_send_dbg_command_wrapper (id, command_set, command, this._debugger_buffer, command_parameters.length); - let { res_ok, res } = MONO.commands_received.remove(id); - if (!res_ok) - throw new Error (`Failed on mono_wasm_send_dbg_command`); - return res; - - },mono_wasm_get_dbg_command_info:function () - { - let { res_ok, res } = MONO.commands_received.remove(0); - if (!res_ok) - throw new Error (`Failed on mono_wasm_get_dbg_command_info`); - return res; - },_get_cfo_res_details:function (objectId, args) { - if (!(objectId in this._call_function_res_cache)) - throw new Error(`Could not find any object with id ${objectId}`); - - const real_obj = this._call_function_res_cache [objectId]; - - const descriptors = Object.getOwnPropertyDescriptors (real_obj); - if (args.accessorPropertiesOnly) { - Object.keys (descriptors).forEach (k => { - if (descriptors [k].get === undefined) - Reflect.deleteProperty (descriptors, k); - }); - } - - let res_details = []; - Object.keys (descriptors).forEach (k => { - let new_obj; - let prop_desc = descriptors [k]; - if (typeof prop_desc.value == "object") { - // convert `{value: { type='object', ... }}` - // to `{ name: 'foo', value: { type='object', ... }} - new_obj = Object.assign ({ name: k }, prop_desc); - } else if (prop_desc.value !== undefined) { - // This is needed for values that were not added by us, - // thus are like { value: 5 } - // instead of { value: { type = 'number', value: 5 }} - // - // This can happen, for eg., when `length` gets added for arrays - // or `__proto__`. - new_obj = { - name: k, - // merge/add `type` and `description` to `d.value` - value: Object.assign ({ type: (typeof prop_desc.value), description: '' + prop_desc.value }, - prop_desc) - }; - } else if (prop_desc.get !== undefined) { - // The real_obj has the actual getter. We are just returning a placeholder - // If the caller tries to run function on the cfo_res object, - // that accesses this property, then it would be run on `real_obj`, - // which *has* the original getter - new_obj = { - name: k, - get: { - className: "Function", - description: `get ${k} () {}`, - type: "function" - } - }; - } else { - new_obj = { name: k, value: { type: "symbol", value: "", description: ""} }; - } - - res_details.push (new_obj); - }); - - return { __value_as_json_string__: JSON.stringify (res_details) }; - },mono_wasm_get_details:function (objectId, args={}) { - return this._get_cfo_res_details (`dotnet:cfo_res:${objectId}`, args); - },_cache_call_function_res:function (obj) { - const id = `dotnet:cfo_res:${this._next_call_function_res_id++}`; - this._call_function_res_cache[id] = obj; - return id; - },mono_wasm_release_object:function (objectId) { - if (objectId in this._cache_call_function_res) - delete this._cache_call_function_res[objectId]; - },_create_proxy_from_object_id:function (objectId, details) { - if (objectId.startsWith ('dotnet:array:')) - { - if (details.items === undefined) - { - const ret = details.map (p => p.value); - return ret; - } - if (details.dimensionsDetails == undefined || details.dimensionsDetails.length == 1) - { - const ret = details.items.map (p => p.value); - return ret; - } - } - - let proxy = {}; - Object.keys (details).forEach (p => { - var prop = details [p]; - if (prop.get !== undefined) { - Object.defineProperty (proxy, - prop.name, - { get () { return MONO.mono_wasm_send_dbg_command(prop.get.id, prop.get.commandSet, prop.get.command, prop.get.buffer, prop.get.length); }, - set: function (newValue) { MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id, prop.set.commandSet, prop.set.command, prop.set.buffer, prop.set.length, prop.set.valtype, newValue); return true;}} - ); - } else if (prop.set !== undefined ){ - Object.defineProperty (proxy, - prop.name, - { get () { return prop.value; }, - set: function (newValue) { MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id, prop.set.commandSet, prop.set.command, prop.set.buffer, prop.set.length, prop.set.valtype, newValue); return true;}} - ); - } else { - proxy [prop.name] = prop.value; - } - }); - return proxy; - },mono_wasm_call_function_on:function (request) { - if (request.arguments != undefined && !Array.isArray (request.arguments)) - throw new Error (`"arguments" should be an array, but was ${request.arguments}`); - - const objId = request.objectId; - const details = request.details; - let proxy; - - if (objId.startsWith ('dotnet:cfo_res:')) { - if (objId in this._call_function_res_cache) - proxy = this._call_function_res_cache [objId]; - else - throw new Error (`Unknown object id ${objId}`); - } else { - proxy = this._create_proxy_from_object_id (objId, details); - } - - const fn_args = request.arguments != undefined ? request.arguments.map(a => JSON.stringify(a.value)) : []; - const fn_eval_str = `var fn = ${request.functionDeclaration}; fn.call (proxy, ...[${fn_args}]);`; - - const fn_res = eval (fn_eval_str); - if (fn_res === undefined) - return { type: "undefined" }; - - if (Object (fn_res) !== fn_res) - { - if (typeof(fn_res) == "object" && fn_res == null) - return { type: typeof(fn_res), subtype: `${fn_res}`, value: null }; - return { type: typeof(fn_res), description: `${fn_res}`, value: `${fn_res}`}; - } - - if (request.returnByValue && fn_res.subtype == undefined) - return {type: "object", value: fn_res}; - if (Object.getPrototypeOf (fn_res) == Array.prototype) { - - const fn_res_id = this._cache_call_function_res (fn_res); - - return { - type: "object", - subtype: "array", - className: "Array", - description: `Array(${fn_res.length})`, - objectId: fn_res_id - }; - } - if (fn_res.value !== undefined || fn_res.subtype !== undefined) { - return fn_res; - } - - if (fn_res == proxy) - return { type: "object", className: "Object", description: "Object", objectId: objId }; - const fn_res_id = this._cache_call_function_res (fn_res); - return { type: "object", className: "Object", description: "Object", objectId: fn_res_id }; - },_clear_per_step_state:function () { - this._next_id_var = 0; - this._id_table = {}; - },mono_wasm_debugger_resume:function () { - this._clear_per_step_state (); - },mono_wasm_detach_debugger:function () { - if (!this.mono_wasm_set_is_debugger_attached) - this.mono_wasm_set_is_debugger_attached = Module.cwrap ('mono_wasm_set_is_debugger_attached', 'void', ['bool']); - this.mono_wasm_set_is_debugger_attached(false); - },_register_c_fn:function (name, ...args) { - Object.defineProperty (this._c_fn_table, name + '_wrapper', { value: Module.cwrap (name, ...args) }); - },_register_c_var_fn:function (name, ret_type, params) { - if (ret_type !== 'bool') - throw new Error (`Bug: Expected a C function signature that returns bool`); - - this._register_c_fn (name, ret_type, params); - Object.defineProperty (this, name + '_info', { - value: function (...args) { - MONO.var_info = []; - const res_ok = MONO._c_fn_table [name + '_wrapper'] (...args); - let res = MONO.var_info; - MONO.var_info = []; - if (res_ok) { - res = this._fixup_name_value_objects (res); - return { res_ok, res }; - } - - return { res_ok, res: undefined }; - } - }); - },mono_wasm_runtime_ready:function () { - MONO.commands_received = new Map(); - MONO.commands_received.remove = function (key) { const value = this.get(key); this.delete(key); return value;}; - this.mono_wasm_runtime_is_ready = true; - this._clear_per_step_state (); - - // FIXME: where should this go? - this._next_call_function_res_id = 0; - this._call_function_res_cache = {}; - - this._c_fn_table = {}; - this._register_c_fn ('mono_wasm_send_dbg_command', 'bool', [ 'number', 'number', 'number', 'number', 'number' ]); - this._register_c_fn ('mono_wasm_send_dbg_command_with_parms', 'bool', [ 'number', 'number', 'number', 'number', 'number', 'number', 'string' ]); - this._debugger_buffer_len = -1; - // DO NOT REMOVE - magic debugger init function - if (globalThis.dotnetDebugger) - debugger; - else - console.debug ("mono_wasm_runtime_ready", "fe00e07a-5519-4dfe-b35a-f867dbaf2e28"); - },mono_wasm_setenv:function (name, value) { - if (!this.wasm_setenv) - this.wasm_setenv = Module.cwrap ('mono_wasm_setenv', null, ['string', 'string']); - this.wasm_setenv (name, value); - },mono_wasm_set_runtime_options:function (options) { - if (!this.wasm_parse_runtime_options) - this.wasm_parse_runtime_options = Module.cwrap ('mono_wasm_parse_runtime_options', null, ['number', 'number']); - var argv = Module._malloc (options.length * 4); - var wasm_strdup = Module.cwrap ('mono_wasm_strdup', 'number', ['string']); - let aindex = 0; - for (var i = 0; i < options.length; ++i) { - Module.setValue (argv + (aindex * 4), wasm_strdup (options [i]), "i32"); - aindex += 1; - } - this.wasm_parse_runtime_options (options.length, argv); - },mono_wasm_init_aot_profiler:function (options) { - if (options == null) - options = {} - if (!('write_at' in options)) - options.write_at = 'Interop/Runtime::StopProfile'; - if (!('send_to' in options)) - options.send_to = 'Interop/Runtime::DumpAotProfileData'; - var arg = "aot:write-at-method=" + options.write_at + ",send-to-method=" + options.send_to; - Module.ccall ('mono_wasm_load_profiler_aot', null, ['string'], [arg]); - },mono_wasm_init_coverage_profiler:function (options) { - if (options == null) - options = {} - if (!('write_at' in options)) - options.write_at = 'WebAssembly.Runtime::StopProfile'; - if (!('send_to' in options)) - options.send_to = 'WebAssembly.Runtime::DumpCoverageProfileData'; - var arg = "coverage:write-at-method=" + options.write_at + ",send-to-method=" + options.send_to; - Module.ccall ('mono_wasm_load_profiler_coverage', null, ['string'], [arg]); - },_apply_configuration_from_args:function (args) { - for (var k in (args.environment_variables || {})) - MONO.mono_wasm_setenv (k, args.environment_variables[k]); - - if (args.runtime_options) - MONO.mono_wasm_set_runtime_options (args.runtime_options); - - if (args.aot_profiler_options) - MONO.mono_wasm_init_aot_profiler (args.aot_profiler_options); - - if (args.coverage_profiler_options) - MONO.mono_wasm_init_coverage_profiler (args.coverage_profiler_options); - },_get_fetch_file_cb_from_args:function (args) { - if (typeof (args.fetch_file_cb) === "function") - return args.fetch_file_cb; - - if (ENVIRONMENT_IS_NODE) { - var fs = require('fs'); - return function (asset) { - console.debug ("MONO_WASM: Loading... " + asset); - var binary = fs.readFileSync (asset); - var resolve_func2 = function (resolve, reject) { - resolve (new Uint8Array (binary)); - }; - - var resolve_func1 = function (resolve, reject) { - var response = { - ok: true, - url: asset, - arrayBuffer: function () { - return new Promise (resolve_func2); - } - }; - resolve (response); - }; - - return new Promise (resolve_func1); - }; - } else if (typeof (fetch) === "function") { - return function (asset) { - return fetch (asset, { credentials: 'same-origin' }); - }; - } else { - throw new Error ("No fetch_file_cb was provided and this environment does not expose 'fetch'."); - } - },_handle_loaded_asset:function (ctx, asset, url, blob) { - var bytes = new Uint8Array (blob); - if (ctx.tracing) - console.log ("MONO_WASM: Loaded:", asset.name, "size", bytes.length, "from", url); - - var virtualName = asset.virtual_path || asset.name; - var offset = null; - - switch (asset.behavior) { - case "resource": - case "assembly": - ctx.loaded_files.push ({ url: url, file: virtualName}); - case "heap": - case "icu": - offset = this.mono_wasm_load_bytes_into_heap (bytes); - ctx.loaded_assets[virtualName] = [offset, bytes.length]; - break; - - case "vfs": - // FIXME - var lastSlash = virtualName.lastIndexOf("/"); - var parentDirectory = (lastSlash > 0) - ? virtualName.substr(0, lastSlash) - : null; - var fileName = (lastSlash > 0) - ? virtualName.substr(lastSlash + 1) - : virtualName; - if (fileName.startsWith("/")) - fileName = fileName.substr(1); - if (parentDirectory) { - if (ctx.tracing) - console.log ("MONO_WASM: Creating directory '" + parentDirectory + "'"); - - var pathRet = ctx.createPath( - "/", parentDirectory, true, true // fixme: should canWrite be false? - ); - } else { - parentDirectory = "/"; - } - - if (ctx.tracing) - console.log ("MONO_WASM: Creating file '" + fileName + "' in directory '" + parentDirectory + "'"); - - if (!this.mono_wasm_load_data_archive (bytes, parentDirectory)) { - var fileRet = ctx.createDataFile ( - parentDirectory, fileName, - bytes, true /* canRead */, true /* canWrite */, true /* canOwn */ - ); - } - break; - - default: - throw new Error ("Unrecognized asset behavior:", asset.behavior, "for asset", asset.name); - } - - if (asset.behavior === "assembly") { - var hasPpdb = ctx.mono_wasm_add_assembly (virtualName, offset, bytes.length); - - if (!hasPpdb) { - var index = ctx.loaded_files.findIndex(element => element.file == virtualName); - ctx.loaded_files.splice(index, 1); - } - } - else if (asset.behavior === "icu") { - if (this.mono_wasm_load_icu_data (offset)) - ctx.num_icu_assets_loaded_successfully += 1; - else - console.error ("Error loading ICU asset", asset.name); - } - else if (asset.behavior === "resource") { - ctx.mono_wasm_add_satellite_assembly (virtualName, asset.culture, offset, bytes.length); - } - },mono_load_runtime_and_bcl:function ( - unused_vfs_prefix, deploy_prefix, debug_level, file_list, loaded_cb, fetch_file_cb - ) { - var args = { - fetch_file_cb: fetch_file_cb, - loaded_cb: loaded_cb, - debug_level: debug_level, - assembly_root: deploy_prefix, - assets: [] - }; - - for (var i = 0; i < file_list.length; i++) { - var file_name = file_list[i]; - var behavior; - if (file_name.startsWith ("icudt") && file_name.endsWith (".dat")) { - // ICU data files are expected to be "icudt%FilterName%.dat" - behavior = "icu"; - } else { // if (file_name.endsWith (".pdb") || file_name.endsWith (".dll")) - behavior = "assembly"; - } - - args.assets.push ({ - name: file_name, - behavior: behavior - }); - } - - return this.mono_load_runtime_and_bcl_args (args); - },mono_load_runtime_and_bcl_args:function (args) { - try { - return this._load_assets_and_runtime (args); - } catch (exc) { - console.error ("error in mono_load_runtime_and_bcl_args:", exc); - throw exc; - } - },mono_wasm_load_bytes_into_heap:function (bytes) { - var memoryOffset = Module._malloc (bytes.length); - var heapBytes = new Uint8Array (Module.HEAPU8.buffer, memoryOffset, bytes.length); - heapBytes.set (bytes); - return memoryOffset; - },num_icu_assets_loaded_successfully:0,mono_wasm_load_icu_data:function (offset) { - var fn = Module.cwrap ('mono_wasm_load_icu_data', 'number', ['number']); - var ok = (fn (offset)) === 1; - if (ok) - this.num_icu_assets_loaded_successfully++; - return ok; - },mono_wasm_get_icudt_name:function (culture) { - return Module.ccall ('mono_wasm_get_icudt_name', 'string', ['string'], [culture]); - },_finalize_startup:function (args, ctx) { - var loaded_files_with_debug_info = []; - - MONO.loaded_assets = ctx.loaded_assets; - ctx.loaded_files.forEach(value => loaded_files_with_debug_info.push(value.url)); - MONO.loaded_files = loaded_files_with_debug_info; - if (ctx.tracing) { - console.log ("MONO_WASM: loaded_assets: " + JSON.stringify(ctx.loaded_assets)); - console.log ("MONO_WASM: loaded_files: " + JSON.stringify(ctx.loaded_files)); - } - - var load_runtime = Module.cwrap ('mono_wasm_load_runtime', null, ['string', 'number']); - - console.debug ("MONO_WASM: Initializing mono runtime"); - - this.mono_wasm_globalization_init (args.globalization_mode); - - if (ENVIRONMENT_IS_SHELL || ENVIRONMENT_IS_NODE) { - try { - load_runtime ("unused", args.debug_level); - } catch (ex) { - print ("MONO_WASM: load_runtime () failed: " + ex); - print ("MONO_WASM: Stacktrace: \n"); - print (ex.stack); - - var wasm_exit = Module.cwrap ('mono_wasm_exit', null, ['number']); - wasm_exit (1); - } - } else { - load_runtime ("unused", args.debug_level); - } - - let tz; - try { - tz = Intl.DateTimeFormat().resolvedOptions().timeZone; - } catch {} - MONO.mono_wasm_setenv ("TZ", tz || "UTC"); - MONO.mono_wasm_runtime_ready (); - args.loaded_cb (); - },_load_assets_and_runtime:function (args) { - if (args.enable_debugging) - args.debug_level = args.enable_debugging; - if (args.assembly_list) - throw new Error ("Invalid args (assembly_list was replaced by assets)"); - if (args.runtime_assets) - throw new Error ("Invalid args (runtime_assets was replaced by assets)"); - if (args.runtime_asset_sources) - throw new Error ("Invalid args (runtime_asset_sources was replaced by remote_sources)"); - if (!args.loaded_cb) - throw new Error ("loaded_cb not provided"); - - var ctx = { - tracing: args.diagnostic_tracing || false, - pending_count: args.assets.length, - mono_wasm_add_assembly: Module.cwrap ('mono_wasm_add_assembly', 'number', ['string', 'number', 'number']), - mono_wasm_add_satellite_assembly: Module.cwrap ('mono_wasm_add_satellite_assembly', 'void', ['string', 'string', 'number', 'number']), - loaded_assets: Object.create (null), - // dlls and pdbs, used by blazor and the debugger - loaded_files: [], - createPath: Module['FS_createPath'], - createDataFile: Module['FS_createDataFile'] - }; - - if (ctx.tracing) - console.log ("mono_wasm_load_runtime_with_args", JSON.stringify(args)); - - this._apply_configuration_from_args (args); - - var fetch_file_cb = this._get_fetch_file_cb_from_args (args); - - var onPendingRequestComplete = function () { - --ctx.pending_count; - - if (ctx.pending_count === 0) { - try { - MONO._finalize_startup (args, ctx); - } catch (exc) { - console.error ("Unhandled exception in _finalize_startup", exc); - throw exc; - } - } - }; - - var processFetchResponseBuffer = function (asset, url, blob) { - try { - MONO._handle_loaded_asset (ctx, asset, url, blob); - } catch (exc) { - console.error ("Unhandled exception in processFetchResponseBuffer", exc); - throw exc; - } finally { - onPendingRequestComplete (); - } - }; - - args.assets.forEach (function (asset) { - var attemptNextSource; - var sourceIndex = 0; - var sourcesList = asset.load_remote ? args.remote_sources : [""]; - - var handleFetchResponse = function (response) { - if (!response.ok) { - try { - attemptNextSource (); - return; - } catch (exc) { - console.error ("MONO_WASM: Unhandled exception in handleFetchResponse attemptNextSource for asset", asset.name, exc); - throw exc; - } - } - - try { - var bufferPromise = response ['arrayBuffer'] (); - bufferPromise.then (processFetchResponseBuffer.bind (this, asset, response.url)); - } catch (exc) { - console.error ("MONO_WASM: Unhandled exception in handleFetchResponse for asset", asset.name, exc); - attemptNextSource (); - } - }; - - attemptNextSource = function () { - if (sourceIndex >= sourcesList.length) { - var msg = "MONO_WASM: Failed to load " + asset.name; - try { - var isOk = asset.is_optional || - (asset.name.match (/\.pdb$/) && MONO.mono_wasm_ignore_pdb_load_errors); - - if (isOk) - console.debug (msg); - else { - console.error (msg); - throw new Error (msg); - } - } finally { - onPendingRequestComplete (); - } - } - - var sourcePrefix = sourcesList[sourceIndex]; - sourceIndex++; - - // HACK: Special-case because MSBuild doesn't allow "" as an attribute - if (sourcePrefix === "./") - sourcePrefix = ""; - - var attemptUrl; - if (sourcePrefix.trim() === "") { - if (asset.behavior === "assembly") - attemptUrl = locateFile (args.assembly_root + "/" + asset.name); - else if (asset.behavior === "resource") { - var path = asset.culture !== '' ? `${asset.culture}/${asset.name}` : asset.name; - attemptUrl = locateFile (args.assembly_root + "/" + path); - } - else - attemptUrl = asset.name; - } else { - attemptUrl = sourcePrefix + asset.name; - } - - try { - if (asset.name === attemptUrl) { - if (ctx.tracing) - console.log ("Attempting to fetch '%s'", attemptUrl); - } else { - if (ctx.tracing) - console.log ("Attempting to fetch '%s' for '%s'", attemptUrl, asset.name); - } - var fetch_promise = fetch_file_cb (attemptUrl); - fetch_promise.then (handleFetchResponse); - } catch (exc) { - console.error ("MONO_WASM: Error fetching '%s'\n%s", attemptUrl, exc); - attemptNextSource (); - } - }; - - attemptNextSource (); - }); - },mono_wasm_globalization_init:function (globalization_mode) { - var invariantMode = false; - - if (globalization_mode === "invariant") - invariantMode = true; - - if (!invariantMode) { - if (this.num_icu_assets_loaded_successfully > 0) { - console.debug ("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode"); - } else if (globalization_mode !== "icu") { - console.debug ("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode"); - invariantMode = true; - } else { - var msg = "invariant globalization mode is inactive and no ICU data archives were loaded"; - console.error ("MONO_WASM: ERROR: " + msg); - throw new Error (msg); - } - } - - if (invariantMode) - this.mono_wasm_setenv ("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT", "1"); - - // Set globalization mode to PredefinedCulturesOnly - this.mono_wasm_setenv ("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY", "1"); - },mono_wasm_get_loaded_files:function() { - if (!this.mono_wasm_set_is_debugger_attached) - this.mono_wasm_set_is_debugger_attached = Module.cwrap ('mono_wasm_set_is_debugger_attached', 'void', ['bool']); - this.mono_wasm_set_is_debugger_attached (true); - return MONO.loaded_files; - },mono_wasm_get_loaded_asset_table:function() { - return MONO.loaded_assets; - },_base64_to_uint8:function (base64String) { - const byteCharacters = atob (base64String); - const byteNumbers = new Array(byteCharacters.length); - for (let i = 0; i < byteCharacters.length; i++) { - byteNumbers[i] = byteCharacters.charCodeAt(i); - } - - return new Uint8Array (byteNumbers); - },mono_wasm_load_data_archive:function (data, prefix) { - if (data.length < 8) - return false; - - var dataview = new DataView(data.buffer); - var magic = dataview.getUint32(0, true); - // get magic number - if (magic != 0x626c6174) { - return false; - } - var manifestSize = dataview.getUint32(4, true); - if (manifestSize == 0 || data.length < manifestSize + 8) - return false; - - var manifest; - try { - manifestContent = Module.UTF8ArrayToString(data, 8, manifestSize); - manifest = JSON.parse(manifestContent); - if (!(manifest instanceof Array)) - return false; - } catch (exc) { - return false; - } - - data = data.slice(manifestSize+8); - - // Create the folder structure - // /usr/share/zoneinfo - // /usr/share/zoneinfo/Africa - // /usr/share/zoneinfo/Asia - // .. - - var folders = new Set() - manifest.filter(m => { - var file = m[0]; - var last = file.lastIndexOf ("/"); - var directory = file.slice (0, last+1); - folders.add(directory); - }); - folders.forEach(folder => { - Module['FS_createPath'](prefix, folder, true, true); - }); - - for (row of manifest) { - var name = row[0]; - var length = row[1]; - var bytes = data.slice(0, length); - Module['FS_createDataFile'](prefix, name, bytes, true, true); - data = data.slice(length); - } - return true; - },mono_wasm_raise_debug_event:function(event, args={}) { - if (typeof event !== 'object') - throw new Error(`event must be an object, but got ${JSON.stringify(event)}`); - - if (event.eventName === undefined) - throw new Error(`event.eventName is a required parameter, in event: ${JSON.stringify(event)}`); - - if (typeof args !== 'object') - throw new Error(`args must be an object, but got ${JSON.stringify(args)}`); - - console.debug('mono_wasm_debug_event_raised:aef14bca-5519-4dfe-b35a-f867abc123ae', JSON.stringify(event), JSON.stringify(args)); - },mono_wasm_load_config:async function (configFilePath) { - Module.addRunDependency(configFilePath); - try { - let config = null; - // NOTE: when we add nodejs make sure to include the nodejs fetch package - if (ENVIRONMENT_IS_WEB) { - const configRaw = await fetch(configFilePath); - config = await configRaw.json(); - }else if (ENVIRONMENT_IS_NODE) { - config = require(configFilePath); - } else { // shell or worker - config = JSON.parse(read(configFilePath)); // read is a v8 debugger command - } - Module.config = config; - } catch(e) { - Module.config = {message: "failed to load config file", error: e}; - } finally { - Module.removeRunDependency(configFilePath); - } - },mono_wasm_set_timeout_exec:function(id){ - if (!this.mono_set_timeout_exec) - this.mono_set_timeout_exec = Module.cwrap ("mono_set_timeout_exec", null, [ 'number' ]); - this.mono_set_timeout_exec (id); - },prevent_timer_throttling:function () { - // this will schedule timers every second for next 6 minutes, it should be called from WebSocket event, to make it work - // on next call, it would only extend the timers to cover yet uncovered future - let now = new Date().valueOf(); - const desired_reach_time = now + (1000 * 60 * 6); - const next_reach_time = Math.max(now + 1000, this.spread_timers_maximum); - const light_throttling_frequency = 1000; - for (var schedule = next_reach_time; schedule < desired_reach_time; schedule += light_throttling_frequency) { - const delay = schedule - now; - setTimeout(() => { - this.mono_wasm_set_timeout_exec(0); - MONO.pump_count++; - MONO.pump_message(); - }, delay); - } - this.spread_timers_maximum = desired_reach_time; - }}; - function _mono_set_timeout(timeout, id) { - - if (typeof globalThis.setTimeout === 'function') { - if (MONO.lastScheduleTimeoutId) { - globalThis.clearTimeout(MONO.lastScheduleTimeoutId); - MONO.lastScheduleTimeoutId = undefined; - } - MONO.lastScheduleTimeoutId = globalThis.setTimeout(function mono_wasm_set_timeout_exec () { - MONO.mono_wasm_set_timeout_exec(id); - }, timeout); - } else { - ++MONO.pump_count; - MONO.timeout_queue.push(function() { - MONO.mono_wasm_set_timeout_exec (id); - }) - } - } - - var BINDING={BINDING_ASM:"[System.Private.Runtime.InteropServices.JavaScript]System.Runtime.InteropServices.JavaScript.Runtime",_cs_owned_objects_by_js_handle:[],_js_handle_free_list:[],_next_js_handle:1,mono_wasm_marshal_enum_as_int:true,mono_bindings_init:function (binding_asm) { - this.BINDING_ASM = binding_asm; - },export_functions:function (module) { - module ["mono_bindings_init"] = BINDING.mono_bindings_init.bind(BINDING); - module ["mono_bind_method"] = BINDING.bind_method.bind(BINDING); - module ["mono_method_invoke"] = BINDING.call_method.bind(BINDING); - module ["mono_method_get_call_signature"] = BINDING.mono_method_get_call_signature.bind(BINDING); - module ["mono_method_resolve"] = BINDING.resolve_method_fqn.bind(BINDING); - module ["mono_bind_static_method"] = BINDING.bind_static_method.bind(BINDING); - module ["mono_call_static_method"] = BINDING.call_static_method.bind(BINDING); - module ["mono_bind_assembly_entry_point"] = BINDING.bind_assembly_entry_point.bind(BINDING); - module ["mono_call_assembly_entry_point"] = BINDING.call_assembly_entry_point.bind(BINDING); - module ["mono_intern_string"] = BINDING.mono_intern_string.bind(BINDING); - },bindings_lazy_init:function () { - if (this.init) - return; - - // avoid infinite recursion - this.init = true; - this.wasm_type_symbol = Symbol.for("wasm type"); - this.js_owned_gc_handle_symbol = Symbol.for("wasm js_owned_gc_handle"); - this.cs_owned_js_handle_symbol = Symbol.for("wasm cs_owned_js_handle"); - this.delegate_invoke_symbol = Symbol.for("wasm delegate_invoke"); - this.delegate_invoke_signature_symbol = Symbol.for("wasm delegate_invoke_signature"); - this.listener_registration_count_symbol = Symbol.for("wasm listener_registration_count"); - - // please keep System.Runtime.InteropServices.JavaScript.Runtime.MappedType in sync - Object.prototype[this.wasm_type_symbol] = 0; - Array.prototype[this.wasm_type_symbol] = 1; - ArrayBuffer.prototype[this.wasm_type_symbol] = 2; - DataView.prototype[this.wasm_type_symbol] = 3; - Function.prototype[this.wasm_type_symbol] = 4; - Map.prototype[this.wasm_type_symbol] = 5; - if (typeof SharedArrayBuffer !== 'undefined') - SharedArrayBuffer.prototype[this.wasm_type_symbol] = 6; - Int8Array.prototype[this.wasm_type_symbol] = 10; - Uint8Array.prototype[this.wasm_type_symbol] = 11; - Uint8ClampedArray.prototype[this.wasm_type_symbol] = 12; - Int16Array.prototype[this.wasm_type_symbol] = 13; - Uint16Array.prototype[this.wasm_type_symbol] = 14; - Int32Array.prototype[this.wasm_type_symbol] = 15; - Uint32Array.prototype[this.wasm_type_symbol] = 16; - Float32Array.prototype[this.wasm_type_symbol] = 17; - Float64Array.prototype[this.wasm_type_symbol] = 18; - - this.assembly_load = Module.cwrap ('mono_wasm_assembly_load', 'number', ['string']); - this.find_corlib_class = Module.cwrap ('mono_wasm_find_corlib_class', 'number', ['string', 'string']); - this.find_class = Module.cwrap ('mono_wasm_assembly_find_class', 'number', ['number', 'string', 'string']); - this._find_method = Module.cwrap ('mono_wasm_assembly_find_method', 'number', ['number', 'string', 'number']); - this.invoke_method = Module.cwrap ('mono_wasm_invoke_method', 'number', ['number', 'number', 'number', 'number']); - this.mono_string_get_utf8 = Module.cwrap ('mono_wasm_string_get_utf8', 'number', ['number']); - this.mono_wasm_string_from_utf16 = Module.cwrap ('mono_wasm_string_from_utf16', 'number', ['number', 'number']); - this.mono_get_obj_type = Module.cwrap ('mono_wasm_get_obj_type', 'number', ['number']); - this.mono_array_length = Module.cwrap ('mono_wasm_array_length', 'number', ['number']); - this.mono_array_get = Module.cwrap ('mono_wasm_array_get', 'number', ['number', 'number']); - this.mono_obj_array_new = Module.cwrap ('mono_wasm_obj_array_new', 'number', ['number']); - this.mono_obj_array_set = Module.cwrap ('mono_wasm_obj_array_set', 'void', ['number', 'number', 'number']); - this.mono_wasm_register_bundled_satellite_assemblies = Module.cwrap ('mono_wasm_register_bundled_satellite_assemblies', 'void', [ ]); - this.mono_wasm_try_unbox_primitive_and_get_type = Module.cwrap ('mono_wasm_try_unbox_primitive_and_get_type', 'number', ['number', 'number']); - this.mono_wasm_box_primitive = Module.cwrap ('mono_wasm_box_primitive', 'number', ['number', 'number', 'number']); - this.mono_wasm_intern_string = Module.cwrap ('mono_wasm_intern_string', 'number', ['number']); - this.assembly_get_entry_point = Module.cwrap ('mono_wasm_assembly_get_entry_point', 'number', ['number']); - this.mono_wasm_get_delegate_invoke = Module.cwrap ('mono_wasm_get_delegate_invoke', 'number', ['number']); - this.mono_wasm_string_array_new = Module.cwrap ('mono_wasm_string_array_new', 'number', ['number']); - - this._box_buffer = Module._malloc(16); - this._unbox_buffer = Module._malloc(16); - this._class_int32 = this.find_corlib_class ("System", "Int32"); - this._class_uint32 = this.find_corlib_class ("System", "UInt32"); - this._class_double = this.find_corlib_class ("System", "Double"); - this._class_boolean = this.find_corlib_class ("System", "Boolean"); - - // receives a byteoffset into allocated Heap with a size. - this.mono_typed_array_new = Module.cwrap ('mono_wasm_typed_array_new', 'number', ['number','number','number','number']); - - var binding_fqn_asm = this.BINDING_ASM.substring(this.BINDING_ASM.indexOf ("[") + 1, this.BINDING_ASM.indexOf ("]")).trim(); - var binding_fqn_class = this.BINDING_ASM.substring (this.BINDING_ASM.indexOf ("]") + 1).trim(); - - this.binding_module = this.assembly_load (binding_fqn_asm); - if (!this.binding_module) - throw "Can't find bindings module assembly: " + binding_fqn_asm; - - var namespace = null, classname = null; - if (binding_fqn_class !== null && typeof binding_fqn_class !== "undefined") - { - namespace = "System.Runtime.InteropServices.JavaScript"; - classname = binding_fqn_class.length > 0 ? binding_fqn_class : "Runtime"; - if (binding_fqn_class.indexOf(".") != -1) { - var idx = binding_fqn_class.lastIndexOf("."); - namespace = binding_fqn_class.substring (0, idx); - classname = binding_fqn_class.substring (idx + 1); - } - } - - var wasm_runtime_class = this.find_class (this.binding_module, namespace, classname); - if (!wasm_runtime_class) - throw "Can't find " + binding_fqn_class + " class"; - - var get_method = function(method_name) { - var res = BINDING.find_method (wasm_runtime_class, method_name, -1); - if (!res) - throw "Can't find method " + namespace + "." + classname + ":" + method_name; - return res; - }; - - var bind_runtime_method = function (method_name, signature) { - var method = get_method (method_name); - return BINDING.bind_method (method, 0, signature, "BINDINGS_" + method_name); - }; - - this.get_call_sig = get_method ("GetCallSignature"); - - // NOTE: The bound methods have a _ prefix on their names to ensure - // that any code relying on the old get_method/call_method pattern will - // break in a more understandable way. - - this._get_cs_owned_object_by_js_handle = bind_runtime_method ("GetCSOwnedObjectByJSHandle", "ii!"); - this._get_cs_owned_object_js_handle = bind_runtime_method ("GetCSOwnedObjectJSHandle", 'mi'); - this._try_get_cs_owned_object_js_handle = bind_runtime_method ("TryGetCSOwnedObjectJSHandle", "mi"); - this._create_cs_owned_proxy = bind_runtime_method ("CreateCSOwnedProxy", "iii!"); - - this._get_js_owned_object_by_gc_handle = bind_runtime_method ("GetJSOwnedObjectByGCHandle", "i!"); - this._get_js_owned_object_gc_handle = bind_runtime_method ("GetJSOwnedObjectGCHandle", "m"); - this._release_js_owned_object_by_gc_handle = bind_runtime_method ("ReleaseJSOwnedObjectByGCHandle", "i"); - - this._create_tcs = bind_runtime_method ("CreateTaskSource",""); - this._set_tcs_result = bind_runtime_method ("SetTaskSourceResult","io"); - this._set_tcs_failure = bind_runtime_method ("SetTaskSourceFailure","is"); - this._get_tcs_task = bind_runtime_method ("GetTaskSourceTask","i!"); - this._setup_js_cont = bind_runtime_method ("SetupJSContinuation", "mo"); - - this._object_to_string = bind_runtime_method ("ObjectToString", "m"); - this._get_date_value = bind_runtime_method ("GetDateValue", "m"); - this._create_date_time = bind_runtime_method ("CreateDateTime", "d!"); - this._create_uri = bind_runtime_method ("CreateUri","s!"); - this._is_simple_array = bind_runtime_method ("IsSimpleArray", "m"); - - this._are_promises_supported = ((typeof Promise === "object") || (typeof Promise === "function")) && (typeof Promise.resolve === "function"); - this.isThenable = (js_obj) => { - // When using an external Promise library like Bluebird the Promise.resolve may not be sufficient - // to identify the object as a Promise. - return Promise.resolve(js_obj) === js_obj || - ((typeof js_obj === "object" || typeof js_obj === "function") && typeof js_obj.then === "function") - }; - this.isChromium = false; - if (globalThis.navigator) { - var nav = globalThis.navigator; - if (nav.userAgentData && nav.userAgentData.brands) { - this.isChromium = nav.userAgentData.brands.some((i) => i.brand == 'Chromium'); - } - else if (globalThis.navigator.userAgent) { - this.isChromium = nav.userAgent.includes("Chrome"); - } - } - - this._empty_string = ""; - this._empty_string_ptr = 0; - this._interned_string_full_root_buffers = []; - this._interned_string_current_root_buffer = null; - this._interned_string_current_root_buffer_count = 0; - this._interned_js_string_table = new Map (); - - this._js_owned_object_table = new Map (); - // NOTE: FinalizationRegistry and WeakRef are missing on Safari below 14.1 - this._use_finalization_registry = typeof globalThis.FinalizationRegistry === "function"; - this._use_weak_ref = typeof globalThis.WeakRef === "function"; - - if (this._use_finalization_registry) { - this._js_owned_object_registry = new globalThis.FinalizationRegistry(this._js_owned_object_finalized.bind(this)); - } - },_js_owned_object_finalized:function (gc_handle) { - // The JS object associated with this gc_handle has been collected by the JS GC. - // As such, it's not possible for this gc_handle to be invoked by JS anymore, so - // we can release the tracking weakref (it's null now, by definition), - // and tell the C# side to stop holding a reference to the managed object. - this._js_owned_object_table.delete(gc_handle); - this._release_js_owned_object_by_gc_handle(gc_handle); - },_lookup_js_owned_object:function (gc_handle) { - if (!gc_handle) - return null; - var wr = this._js_owned_object_table.get(gc_handle); - if (wr) { - return wr.deref(); - // TODO: could this be null before _js_owned_object_finalized was called ? - // TODO: are there race condition consequences ? - } - return null; - },_register_js_owned_object:function (gc_handle, js_obj) { - var wr; - if (this._use_weak_ref) { - wr = new WeakRef(js_obj); - } - else { - // this is trivial WeakRef replacement, which holds strong refrence, instead of weak one, when the browser doesn't support it - wr = { - deref: () => { - return js_obj; - } - } - } - - this._js_owned_object_table.set(gc_handle, wr); - },_wrap_js_thenable_as_task:function (thenable) { - this.bindings_lazy_init (); - if (!thenable) - return null; - - // hold strong JS reference to thenable while in flight - // ideally, this should be hold alive by lifespan of the resulting C# Task, but this is good cheap aproximation - var thenable_js_handle = BINDING.mono_wasm_get_js_handle(thenable); - - // Note that we do not implement promise/task roundtrip. - // With more complexity we could recover original instance when this Task is marshaled back to JS. - // TODO optimization: return the tcs.Task on this same call instead of _get_tcs_task - const tcs_gc_handle = this._create_tcs(); - thenable.then ((result) => { - this._set_tcs_result(tcs_gc_handle, result); - // let go of the thenable reference - this._mono_wasm_release_js_handle(thenable_js_handle); - - // when FinalizationRegistry is not supported by this browser, we will do immediate cleanup after use - if (!this._use_finalization_registry) { - this._release_js_owned_object_by_gc_handle(tcs_gc_handle); - } - }, (reason) => { - this._set_tcs_failure(tcs_gc_handle, reason ? reason.toString() : ""); - // let go of the thenable reference - this._mono_wasm_release_js_handle(thenable_js_handle); - - // when FinalizationRegistry is not supported by this browser, we will do immediate cleanup after use - if (!this._use_finalization_registry) { - this._release_js_owned_object_by_gc_handle(tcs_gc_handle); - } - }); - - // collect the TaskCompletionSource with its Task after js doesn't hold the thenable anymore - if (this._use_finalization_registry) { - this._js_owned_object_registry.register(thenable, tcs_gc_handle); - } - - // returns raw pointer to tcs.Task - return this._get_tcs_task(tcs_gc_handle); - },_unbox_task_root_as_promise:function (root) { - this.bindings_lazy_init (); - const self = this; - if (root.value === 0) - return null; - - if (!this._are_promises_supported) - throw new Error ("Promises are not supported thus 'System.Threading.Tasks.Task' can not work in this context."); - - // get strong reference to Task - const gc_handle = this._get_js_owned_object_gc_handle(root.value); - - // see if we have js owned instance for this gc_handle already - var result = this._lookup_js_owned_object(gc_handle); - - // If the promise for this gc_handle was already collected (or was never created) - if (!result) { - - var cont_obj = null; - // note that we do not implement promise/task roundtrip - // With more complexity we could recover original instance when this promise is marshaled back to C#. - var result = new Promise(function (resolve, reject) { - if (self._use_finalization_registry) { - cont_obj = { - resolve: resolve, - reject: reject - }; - } else { - // when FinalizationRegistry is not supported by this browser, we will do immediate cleanup after use - cont_obj = { - resolve: function () { - const res = resolve.apply(null, arguments); - self._js_owned_object_table.delete(gc_handle); - self._release_js_owned_object_by_gc_handle(gc_handle); - return res; - }, - reject: function () { - const res = reject.apply(null, arguments); - self._js_owned_object_table.delete(gc_handle); - self._release_js_owned_object_by_gc_handle(gc_handle); - return res; - } - }; - } - }); - - // register C# side of the continuation - this._setup_js_cont (root.value, cont_obj ); - - // register for GC of the Task after the JS side is done with the promise - if (this._use_finalization_registry) { - this._js_owned_object_registry.register(result, gc_handle); - } - - // register for instance reuse - this._register_js_owned_object(gc_handle, result); - } - - return result; - },_unbox_ref_type_root_as_js_object:function (root) { - this.bindings_lazy_init (); - if (root.value === 0) - return null; - - // this could be JSObject proxy of a js native object - // we don't need in-flight reference as we already have it rooted here - var js_handle = this._try_get_cs_owned_object_js_handle (root.value, false); - if (js_handle) { - if (js_handle===-1){ - throw new Error("Cannot access a disposed JSObject at " + root.value); - } - return this.mono_wasm_get_jsobj_from_js_handle(js_handle); - } - // otherwise this is C# only object - - // get strong reference to Object - const gc_handle = this._get_js_owned_object_gc_handle(root.value); - - // see if we have js owned instance for this gc_handle already - var result = this._lookup_js_owned_object(gc_handle); - - // If the JS object for this gc_handle was already collected (or was never created) - if (!result) { - result = {}; - - // keep the gc_handle so that we could easily convert it back to original C# object for roundtrip - result[BINDING.js_owned_gc_handle_symbol]=gc_handle; - - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry/WeakRef - if (this._use_finalization_registry) { - // register for GC of the C# object after the JS side is done with the object - this._js_owned_object_registry.register(result, gc_handle); - } - - // register for instance reuse - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry/WeakRef - this._register_js_owned_object(gc_handle, result); - } - - return result; - },_wrap_delegate_root_as_function:function (root) { - this.bindings_lazy_init (); - if (root.value === 0) - return null; - - // get strong reference to the Delegate - const gc_handle = this._get_js_owned_object_gc_handle(root.value); - return this._wrap_delegate_gc_handle_as_function(gc_handle); - },_wrap_delegate_gc_handle_as_function:function (gc_handle, after_listener_callback) { - this.bindings_lazy_init (); - - // see if we have js owned instance for this gc_handle already - var result = this._lookup_js_owned_object(gc_handle); - - // If the function for this gc_handle was already collected (or was never created) - if (!result) { - // note that we do not implement function/delegate roundtrip - result = function() { - const delegateRoot = MONO.mono_wasm_new_root (BINDING.get_js_owned_object_by_gc_handle(gc_handle)); - try { - const res = BINDING.call_method(result[BINDING.delegate_invoke_symbol], delegateRoot.value, result[BINDING.delegate_invoke_signature_symbol], arguments); - if (after_listener_callback) { - after_listener_callback(); - } - return res; - } finally { - delegateRoot.release(); - } - }; - - // bind the method - const delegateRoot = MONO.mono_wasm_new_root (BINDING.get_js_owned_object_by_gc_handle(gc_handle)); - try { - if (typeof result[BINDING.delegate_invoke_symbol] === "undefined"){ - result[BINDING.delegate_invoke_symbol] = BINDING.mono_wasm_get_delegate_invoke(delegateRoot.value); - if (!result[BINDING.delegate_invoke_symbol]){ - throw new Error("System.Delegate Invoke method can not be resolved."); - } - } - - if (typeof result[BINDING.delegate_invoke_signature_symbol] === "undefined"){ - result[BINDING.delegate_invoke_signature_symbol] = Module.mono_method_get_call_signature (result[BINDING.delegate_invoke_symbol], delegateRoot.value); - } - } finally { - delegateRoot.release(); - } - - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry. Except in case of EventListener where we cleanup after unregistration. - if (this._use_finalization_registry) { - // register for GC of the deleate after the JS side is done with the function - this._js_owned_object_registry.register(result, gc_handle); - } - - // register for instance reuse - // NOTE: this would be leaking C# objects when the browser doesn't support FinalizationRegistry/WeakRef. Except in case of EventListener where we cleanup after unregistration. - this._register_js_owned_object(gc_handle, result); - } - - return result; - },mono_intern_string:function (string) { - if (string.length === 0) - return this._empty_string; - - var ptr = this.js_string_to_mono_string_interned (string); - var result = MONO.interned_string_table.get (ptr); - return result; - },_store_string_in_intern_table:function (string, ptr, internIt) { - if (!ptr) - throw new Error ("null pointer passed to _store_string_in_intern_table"); - else if (typeof (ptr) !== "number") - throw new Error (`non-pointer passed to _store_string_in_intern_table: ${typeof(ptr)}`); - - const internBufferSize = 8192; - - if (this._interned_string_current_root_buffer_count >= internBufferSize) { - this._interned_string_full_root_buffers.push (this._interned_string_current_root_buffer); - this._interned_string_current_root_buffer = null; - } - if (!this._interned_string_current_root_buffer) { - this._interned_string_current_root_buffer = MONO.mono_wasm_new_root_buffer (internBufferSize, "interned strings"); - this._interned_string_current_root_buffer_count = 0; - } - - var rootBuffer = this._interned_string_current_root_buffer; - var index = this._interned_string_current_root_buffer_count++; - rootBuffer.set (index, ptr); - - // Store the managed string into the managed intern table. This can theoretically - // provide a different managed object than the one we passed in, so update our - // pointer (stored in the root) with the result. - if (internIt) - rootBuffer.set (index, ptr = this.mono_wasm_intern_string (ptr)); - - if (!ptr) - throw new Error ("mono_wasm_intern_string produced a null pointer"); - - this._interned_js_string_table.set (string, ptr); - if (!MONO.interned_string_table) - MONO.interned_string_table = new Map(); - MONO.interned_string_table.set (ptr, string); - - if ((string.length === 0) && !this._empty_string_ptr) - this._empty_string_ptr = ptr; - - return ptr; - },js_string_to_mono_string_interned:function (string) { - var text = (typeof (string) === "symbol") - ? (string.description || Symbol.keyFor(string) || "") - : string; - - if ((text.length === 0) && this._empty_string_ptr) - return this._empty_string_ptr; - - var ptr = this._interned_js_string_table.get (string); - if (ptr) - return ptr; - - ptr = this.js_string_to_mono_string_new (text); - ptr = this._store_string_in_intern_table (string, ptr, true); - - return ptr; - },js_string_to_mono_string:function (string) { - if (string === null) - return null; - else if (typeof (string) === "symbol") - return this.js_string_to_mono_string_interned (string); - else if (typeof (string) !== "string") - throw new Error ("Expected string argument, got "+ typeof (string)); - - // Always use an interned pointer for empty strings - if (string.length === 0) - return this.js_string_to_mono_string_interned (string); - - // Looking up large strings in the intern table will require the JS runtime to - // potentially hash them and then do full byte-by-byte comparisons, which is - // very expensive. Because we can not guarantee it won't happen, try to minimize - // the cost of this and prevent performance issues for large strings - if (string.length <= 256) { - var interned = this._interned_js_string_table.get (string); - if (interned) - return interned; - } - - return this.js_string_to_mono_string_new (string); - },js_string_to_mono_string_new:function (string) { - var buffer = Module._malloc ((string.length + 1) * 2); - var buffer16 = (buffer / 2) | 0; - for (var i = 0; i < string.length; i++) - Module.HEAP16[buffer16 + i] = string.charCodeAt (i); - Module.HEAP16[buffer16 + string.length] = 0; - var result = this.mono_wasm_string_from_utf16 (buffer, string.length); - Module._free (buffer); - return result; - },find_method:function (klass, name, n) { - var result = this._find_method(klass, name, n); - if (result) { - if (!this._method_descriptions) - this._method_descriptions = new Map(); - this._method_descriptions.set(result, name); - } - return result; - },get_js_obj:function (js_handle) { - if (js_handle > 0) - return this.mono_wasm_get_jsobj_from_js_handle(js_handle); - return null; - },_get_string_from_intern_table:function (mono_obj) { - if (!MONO.interned_string_table) - return undefined; - return MONO.interned_string_table.get (mono_obj); - },conv_string:function (mono_obj) { - return MONO.string_decoder.copy (mono_obj); - },is_nested_array:function (ele) { - return this._is_simple_array(ele); - },mono_array_to_js_array:function (mono_array) { - if (mono_array === 0) - return null; - - var arrayRoot = MONO.mono_wasm_new_root (mono_array); - try { - return this._mono_array_root_to_js_array (arrayRoot); - } finally { - arrayRoot.release(); - } - },_mono_array_root_to_js_array:function (arrayRoot) { - if (arrayRoot.value === 0) - return null; - - let elemRoot = MONO.mono_wasm_new_root (); - - try { - var len = this.mono_array_length (arrayRoot.value); - var res = new Array (len); - for (var i = 0; i < len; ++i) - { - elemRoot.value = this.mono_array_get (arrayRoot.value, i); - - if (this.is_nested_array (elemRoot.value)) - res[i] = this._mono_array_root_to_js_array (elemRoot); - else - res[i] = this._unbox_mono_obj_root (elemRoot); - } - } finally { - elemRoot.release (); - } - - return res; - },js_array_to_mono_array:function (js_array, asString, should_add_in_flight) { - var mono_array = asString ? this.mono_wasm_string_array_new (js_array.length) : this.mono_obj_array_new (js_array.length); - let [arrayRoot, elemRoot] = MONO.mono_wasm_new_roots ([mono_array, 0]); - - try { - for (var i = 0; i < js_array.length; ++i) { - var obj = js_array[i]; - if (asString) - obj = obj.toString (); - - elemRoot.value = this._js_to_mono_obj (should_add_in_flight, obj); - this.mono_obj_array_set (arrayRoot.value, i, elemRoot.value); - } - - return mono_array; - } finally { - MONO.mono_wasm_release_roots (arrayRoot, elemRoot); - } - },js_to_mono_obj:function (js_obj) { - return this._js_to_mono_obj(false, js_obj) - },unbox_mono_obj:function (mono_obj) { - if (mono_obj === 0) - return undefined; - - var root = MONO.mono_wasm_new_root (mono_obj); - try { - return this._unbox_mono_obj_root (root); - } finally { - root.release(); - } - },_unbox_cs_owned_root_as_js_object:function (root) { - // we don't need in-flight reference as we already have it rooted here - var js_handle = this._get_cs_owned_object_js_handle(root.value, false); - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - return js_obj; - },_unbox_mono_obj_root_with_known_nonprimitive_type:function (root, type) { - if (root.value === undefined) - throw new Error(`Expected a root but got ${root}`); - - //See MARSHAL_TYPE_ defines in driver.c - switch (type) { - case 26: // int64 - case 27: // uint64 - // TODO: Fix this once emscripten offers HEAPI64/HEAPU64 or can return them - throw new Error ("int64 not available"); - case 3: // string - case 29: // interned string - return this.conv_string (root.value); - case 4: //vts - throw new Error ("no idea on how to unbox value types"); - case 5: // delegate - return this._wrap_delegate_root_as_function (root); - case 6: // Task - return this._unbox_task_root_as_promise (root); - case 7: // ref type - return this._unbox_ref_type_root_as_js_object (root); - case 10: // arrays - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - throw new Error ("Marshalling of primitive arrays are not supported. Use the corresponding TypedArray instead."); - case 20: // clr .NET DateTime - var dateValue = this._get_date_value(root.value); - return new Date(dateValue); - case 21: // clr .NET DateTimeOffset - var dateoffsetValue = this._object_to_string (root.value); - return dateoffsetValue; - case 22: // clr .NET Uri - var uriValue = this._object_to_string (root.value); - return uriValue; - case 23: // clr .NET SafeHandle/JSObject - return this._unbox_cs_owned_root_as_js_object (root); - case 30: - return undefined; - default: - throw new Error (`no idea on how to unbox object kind ${type} at offset ${root.value} (root address is ${root.get_address()})`); - } - },_unbox_mono_obj_root:function (root) { - if (root.value === 0) - return undefined; - - var type = this.mono_wasm_try_unbox_primitive_and_get_type (root.value, this._unbox_buffer); - switch (type) { - case 1: // int - return Module.HEAP32[this._unbox_buffer / 4]; - case 25: // uint32 - return Module.HEAPU32[this._unbox_buffer / 4]; - case 24: // float32 - return Module.HEAPF32[this._unbox_buffer / 4]; - case 2: // float64 - return Module.HEAPF64[this._unbox_buffer / 8]; - case 8: // boolean - return (Module.HEAP32[this._unbox_buffer / 4]) !== 0; - case 28: // char - return String.fromCharCode(Module.HEAP32[this._unbox_buffer / 4]); - default: - return this._unbox_mono_obj_root_with_known_nonprimitive_type (root, type); - } - },js_typedarray_to_heap:function(typedArray){ - var numBytes = typedArray.length * typedArray.BYTES_PER_ELEMENT; - var ptr = Module._malloc(numBytes); - var heapBytes = new Uint8Array(Module.HEAPU8.buffer, ptr, numBytes); - heapBytes.set(new Uint8Array(typedArray.buffer, typedArray.byteOffset, numBytes)); - return heapBytes; - },_box_js_int:function (js_obj) { - Module.HEAP32[this._box_buffer / 4] = js_obj; - return this.mono_wasm_box_primitive (this._class_int32, this._box_buffer, 4); - },_box_js_uint:function (js_obj) { - Module.HEAPU32[this._box_buffer / 4] = js_obj; - return this.mono_wasm_box_primitive (this._class_uint32, this._box_buffer, 4); - },_box_js_double:function (js_obj) { - Module.HEAPF64[this._box_buffer / 8] = js_obj; - return this.mono_wasm_box_primitive (this._class_double, this._box_buffer, 8); - },_box_js_bool:function (js_obj) { - Module.HEAP32[this._box_buffer / 4] = js_obj ? 1 : 0; - return this.mono_wasm_box_primitive (this._class_boolean, this._box_buffer, 4); - },_js_to_mono_uri:function (should_add_in_flight, js_obj) { - this.bindings_lazy_init (); - - switch (true) { - case js_obj === null: - case typeof js_obj === "undefined": - return 0; - case typeof js_obj === "symbol": - case typeof js_obj === "string": - return this._create_uri(js_obj) - default: - return this._extract_mono_obj (should_add_in_flight, js_obj); - } - },_js_to_mono_obj:function (should_add_in_flight, js_obj) { - this.bindings_lazy_init (); - - switch (true) { - case js_obj === null: - case typeof js_obj === "undefined": - return 0; - case typeof js_obj === "number": { - if ((js_obj | 0) === js_obj) - result = this._box_js_int (js_obj); - else if ((js_obj >>> 0) === js_obj) - result = this._box_js_uint (js_obj); - else - result = this._box_js_double (js_obj); - - if (!result) - throw new Error (`Boxing failed for ${js_obj}`); - - return result; - } case typeof js_obj === "string": - return this.js_string_to_mono_string (js_obj); - case typeof js_obj === "symbol": - return this.js_string_to_mono_string_interned (js_obj); - case typeof js_obj === "boolean": - return this._box_js_bool (js_obj); - case this.isThenable(js_obj) === true: - return this._wrap_js_thenable_as_task (js_obj); - case js_obj.constructor.name === "Date": - // getTime() is always UTC - return this._create_date_time(js_obj.getTime()); - default: - return this._extract_mono_obj (should_add_in_flight, js_obj); - } - },_extract_mono_obj:function (should_add_in_flight, js_obj) { - if (js_obj === null || typeof js_obj === "undefined") - return 0; - - var result = null; - if (js_obj[BINDING.js_owned_gc_handle_symbol]) { - // for js_owned_gc_handle we don't want to create new proxy - // since this is strong gc_handle we don't need to in-flight reference - result = this.get_js_owned_object_by_gc_handle (js_obj[BINDING.js_owned_gc_handle_symbol]); - return result; - } - if (js_obj[BINDING.cs_owned_js_handle_symbol]) { - result = this.get_cs_owned_object_by_js_handle (js_obj[BINDING.cs_owned_js_handle_symbol], should_add_in_flight); - - // It's possible the managed object corresponding to this JS object was collected, - // in which case we need to make a new one. - if (!result) { - delete js_obj[BINDING.cs_owned_js_handle_symbol]; - } - } - - if (!result) { - // Obtain the JS -> C# type mapping. - const wasm_type = js_obj[this.wasm_type_symbol]; - const wasm_type_id = typeof wasm_type === "undefined" ? 0 : wasm_type; - - var js_handle = BINDING.mono_wasm_get_js_handle(js_obj); - - result = this._create_cs_owned_proxy(js_handle, wasm_type_id, should_add_in_flight); - } - - return result; - },has_backing_array_buffer:function (js_obj) { - return typeof SharedArrayBuffer !== 'undefined' - ? js_obj.buffer instanceof ArrayBuffer || js_obj.buffer instanceof SharedArrayBuffer - : js_obj.buffer instanceof ArrayBuffer; - },js_typed_array_to_array:function (js_obj) { - - // JavaScript typed arrays are array-like objects and provide a mechanism for accessing - // raw binary data. (...) To achieve maximum flexibility and efficiency, JavaScript typed arrays - // split the implementation into buffers and views. A buffer (implemented by the ArrayBuffer object) - // is an object representing a chunk of data; it has no format to speak of, and offers no - // mechanism for accessing its contents. In order to access the memory contained in a buffer, - // you need to use a view. A view provides a context — that is, a data type, starting offset, - // and number of elements — that turns the data into an actual typed array. - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays - if (!!(this.has_backing_array_buffer(js_obj) && js_obj.BYTES_PER_ELEMENT)) - { - var arrayType = js_obj[this.wasm_type_symbol]; - var heapBytes = this.js_typedarray_to_heap(js_obj); - var bufferArray = this.mono_typed_array_new(heapBytes.byteOffset, js_obj.length, js_obj.BYTES_PER_ELEMENT, arrayType); - Module._free(heapBytes.byteOffset); - return bufferArray; - } - else { - throw new Error("Object '" + js_obj + "' is not a typed array"); - } - - },typedarray_copy_to:function (typed_array, pinned_array, begin, end, bytes_per_element) { - - // JavaScript typed arrays are array-like objects and provide a mechanism for accessing - // raw binary data. (...) To achieve maximum flexibility and efficiency, JavaScript typed arrays - // split the implementation into buffers and views. A buffer (implemented by the ArrayBuffer object) - // is an object representing a chunk of data; it has no format to speak of, and offers no - // mechanism for accessing its contents. In order to access the memory contained in a buffer, - // you need to use a view. A view provides a context — that is, a data type, starting offset, - // and number of elements — that turns the data into an actual typed array. - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays - if (!!(this.has_backing_array_buffer(typed_array) && typed_array.BYTES_PER_ELEMENT)) - { - // Some sanity checks of what is being asked of us - // lets play it safe and throw an error here instead of assuming to much. - // Better safe than sorry later - if (bytes_per_element !== typed_array.BYTES_PER_ELEMENT) - throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '" + typed_array.BYTES_PER_ELEMENT + "' sizeof managed element: '" + bytes_per_element + "'"); - - // how much space we have to work with - var num_of_bytes = (end - begin) * bytes_per_element; - // how much typed buffer space are we talking about - var view_bytes = typed_array.length * typed_array.BYTES_PER_ELEMENT; - // only use what is needed. - if (num_of_bytes > view_bytes) - num_of_bytes = view_bytes; - - // offset index into the view - var offset = begin * bytes_per_element; - - // Create a view over the heap pointed to by the pinned array address - var heapBytes = new Uint8Array(Module.HEAPU8.buffer, pinned_array + offset, num_of_bytes); - // Copy the bytes of the typed array to the heap. - heapBytes.set(new Uint8Array(typed_array.buffer, typed_array.byteOffset, num_of_bytes)); - - return num_of_bytes; - } - else { - throw new Error("Object '" + typed_array + "' is not a typed array"); - } - - },typedarray_copy_from:function (typed_array, pinned_array, begin, end, bytes_per_element) { - - // JavaScript typed arrays are array-like objects and provide a mechanism for accessing - // raw binary data. (...) To achieve maximum flexibility and efficiency, JavaScript typed arrays - // split the implementation into buffers and views. A buffer (implemented by the ArrayBuffer object) - // is an object representing a chunk of data; it has no format to speak of, and offers no - // mechanism for accessing its contents. In order to access the memory contained in a buffer, - // you need to use a view. A view provides a context — that is, a data type, starting offset, - // and number of elements — that turns the data into an actual typed array. - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays - if (!!(this.has_backing_array_buffer(typed_array) && typed_array.BYTES_PER_ELEMENT)) - { - // Some sanity checks of what is being asked of us - // lets play it safe and throw an error here instead of assuming to much. - // Better safe than sorry later - if (bytes_per_element !== typed_array.BYTES_PER_ELEMENT) - throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '" + typed_array.BYTES_PER_ELEMENT + "' sizeof managed element: '" + bytes_per_element + "'"); - - // how much space we have to work with - var num_of_bytes = (end - begin) * bytes_per_element; - // how much typed buffer space are we talking about - var view_bytes = typed_array.length * typed_array.BYTES_PER_ELEMENT; - // only use what is needed. - if (num_of_bytes > view_bytes) - num_of_bytes = view_bytes; - - // Create a new view for mapping - var typedarrayBytes = new Uint8Array(typed_array.buffer, 0, num_of_bytes); - // offset index into the view - var offset = begin * bytes_per_element; - // Set view bytes to value from HEAPU8 - typedarrayBytes.set(Module.HEAPU8.subarray(pinned_array + offset, pinned_array + offset + num_of_bytes)); - return num_of_bytes; - } - else { - throw new Error("Object '" + typed_array + "' is not a typed array"); - } - - },typed_array_from:function (pinned_array, begin, end, bytes_per_element, type) { - - // typed array - var newTypedArray = 0; - - switch (type) - { - case 5: - newTypedArray = new Int8Array(end - begin); - break; - case 6: - newTypedArray = new Uint8Array(end - begin); - break; - case 7: - newTypedArray = new Int16Array(end - begin); - break; - case 8: - newTypedArray = new Uint16Array(end - begin); - break; - case 9: - newTypedArray = new Int32Array(end - begin); - break; - case 10: - newTypedArray = new Uint32Array(end - begin); - break; - case 13: - newTypedArray = new Float32Array(end - begin); - break; - case 14: - newTypedArray = new Float64Array(end - begin); - break; - case 15: // This is a special case because the typed array is also byte[] - newTypedArray = new Uint8ClampedArray(end - begin); - break; - } - - this.typedarray_copy_from(newTypedArray, pinned_array, begin, end, bytes_per_element); - return newTypedArray; - },js_to_mono_enum:function (js_obj, method, parmIdx) { - this.bindings_lazy_init (); - - if (typeof (js_obj) !== "number") - throw new Error (`Expected numeric value for enum argument, got '${js_obj}'`); - - return js_obj | 0; - },get_js_owned_object_by_gc_handle:function (gc_handle) - { - if(!gc_handle){ - return 0; - } - // this is always strong gc_handle - return this._get_js_owned_object_by_gc_handle (gc_handle); - },get_cs_owned_object_by_js_handle:function (js_handle, should_add_in_flight) - { - if(!js_handle){ - return 0; - } - return this._get_cs_owned_object_by_js_handle (js_handle, should_add_in_flight); - },mono_method_get_call_signature:function(method, mono_obj) { - let instanceRoot = MONO.mono_wasm_new_root (mono_obj); - try { - this.bindings_lazy_init (); - - return this.call_method (this.get_call_sig, null, "im", [ method, instanceRoot.value ]); - } finally { - instanceRoot.release(); - } - },_create_named_function:function (name, argumentNames, body, closure) { - var result = null, keys = null, closureArgumentList = null, closureArgumentNames = null; - - if (closure) { - closureArgumentNames = Object.keys (closure); - closureArgumentList = new Array (closureArgumentNames.length); - for (var i = 0, l = closureArgumentNames.length; i < l; i++) - closureArgumentList[i] = closure[closureArgumentNames[i]]; - } - - var constructor = this._create_rebindable_named_function (name, argumentNames, body, closureArgumentNames); - result = constructor.apply (null, closureArgumentList); - - return result; - },_create_rebindable_named_function:function (name, argumentNames, body, closureArgNames) { - var strictPrefix = "\"use strict\";\r\n"; - var uriPrefix = "", escapedFunctionIdentifier = ""; - - if (name) { - uriPrefix = "//# sourceURL=https://mono-wasm.invalid/" + name + "\r\n"; - escapedFunctionIdentifier = name; - } else { - escapedFunctionIdentifier = "unnamed"; - } - - var rawFunctionText = "function " + escapedFunctionIdentifier + "(" + - argumentNames.join(", ") + - ") {\r\n" + - body + - "\r\n};\r\n"; - - var lineBreakRE = /\r(\n?)/g; - - rawFunctionText = - uriPrefix + strictPrefix + - rawFunctionText.replace(lineBreakRE, "\r\n ") + - ` return ${escapedFunctionIdentifier};\r\n`; - - var result = null, keys = null; - - if (closureArgNames) { - keys = closureArgNames.concat ([rawFunctionText]); - } else { - keys = [rawFunctionText]; - } - - result = Function.apply (Function, keys); - return result; - },_create_primitive_converters:function () { - var result = new Map (); - result.set ('m', { steps: [{ }], size: 0}); - result.set ('s', { steps: [{ convert: this.js_string_to_mono_string.bind (this) }], size: 0, needs_root: true }); - result.set ('S', { steps: [{ convert: this.js_string_to_mono_string_interned.bind (this) }], size: 0, needs_root: true }); - // note we also bind first argument to false for both _js_to_mono_obj and _js_to_mono_uri, - // because we will root the reference, so we don't need in-flight reference - // also as those are callback arguments and we don't have platform code which would release the in-flight reference on C# end - result.set ('o', { steps: [{ convert: this._js_to_mono_obj.bind (this, false) }], size: 0, needs_root: true }); - result.set ('u', { steps: [{ convert: this._js_to_mono_uri.bind (this, false) }], size: 0, needs_root: true }); - - // result.set ('k', { steps: [{ convert: this.js_to_mono_enum.bind (this), indirect: 'i64'}], size: 8}); - result.set ('j', { steps: [{ convert: this.js_to_mono_enum.bind (this), indirect: 'i32'}], size: 8}); - - result.set ('i', { steps: [{ indirect: 'i32'}], size: 8}); - result.set ('l', { steps: [{ indirect: 'i64'}], size: 8}); - result.set ('f', { steps: [{ indirect: 'float'}], size: 8}); - result.set ('d', { steps: [{ indirect: 'double'}], size: 8}); - - this._primitive_converters = result; - return result; - },_create_converter_for_marshal_string:function (args_marshal) { - var primitiveConverters = this._primitive_converters; - if (!primitiveConverters) - primitiveConverters = this._create_primitive_converters (); - - var steps = []; - var size = 0; - var is_result_definitely_unmarshaled = false, - is_result_possibly_unmarshaled = false, - result_unmarshaled_if_argc = -1, - needs_root_buffer = false; - - for (var i = 0; i < args_marshal.length; ++i) { - var key = args_marshal[i]; - - if (i === args_marshal.length - 1) { - if (key === "!") { - is_result_definitely_unmarshaled = true; - continue; - } else if (key === "m") { - is_result_possibly_unmarshaled = true; - result_unmarshaled_if_argc = args_marshal.length - 1; - } - } else if (key === "!") - throw new Error ("! must be at the end of the signature"); - - var conv = primitiveConverters.get (key); - if (!conv) - throw new Error ("Unknown parameter type " + type); - - var localStep = Object.create (conv.steps[0]); - localStep.size = conv.size; - if (conv.needs_root) - needs_root_buffer = true; - localStep.needs_root = conv.needs_root; - localStep.key = args_marshal[i]; - steps.push (localStep); - size += conv.size; - } - - return { - steps: steps, size: size, args_marshal: args_marshal, - is_result_definitely_unmarshaled: is_result_definitely_unmarshaled, - is_result_possibly_unmarshaled: is_result_possibly_unmarshaled, - result_unmarshaled_if_argc: result_unmarshaled_if_argc, - needs_root_buffer: needs_root_buffer - }; - },_get_converter_for_marshal_string:function (args_marshal) { - if (!this._signature_converters) - this._signature_converters = new Map(); - - var converter = this._signature_converters.get (args_marshal); - if (!converter) { - converter = this._create_converter_for_marshal_string (args_marshal); - this._signature_converters.set (args_marshal, converter); - } - - return converter; - },_compile_converter_for_marshal_string:function (args_marshal) { - var converter = this._get_converter_for_marshal_string (args_marshal); - if (typeof (converter.args_marshal) !== "string") - throw new Error ("Corrupt converter for '" + args_marshal + "'"); - - if (converter.compiled_function && converter.compiled_variadic_function) - return converter; - - var converterName = args_marshal.replace("!", "_result_unmarshaled"); - converter.name = converterName; - - var body = []; - var argumentNames = ["buffer", "rootBuffer", "method"]; - - // worst-case allocation size instead of allocating dynamically, plus padding - var bufferSizeBytes = converter.size + (args_marshal.length * 4) + 16; - var rootBufferSize = args_marshal.length; - // ensure the indirect values are 8-byte aligned so that aligned loads and stores will work - var indirectBaseOffset = ((((args_marshal.length * 4) + 7) / 8) | 0) * 8; - - var closure = {}; - var indirectLocalOffset = 0; - - body.push ( - `if (!buffer) buffer = Module._malloc (${bufferSizeBytes});`, - `var indirectStart = buffer + ${indirectBaseOffset};`, - "var indirect32 = (indirectStart / 4) | 0, indirect64 = (indirectStart / 8) | 0;", - "var buffer32 = (buffer / 4) | 0;", - "" - ); - - for (let i = 0; i < converter.steps.length; i++) { - var step = converter.steps[i]; - var closureKey = "step" + i; - var valueKey = "value" + i; - - var argKey = "arg" + i; - argumentNames.push (argKey); - - if (step.convert) { - closure[closureKey] = step.convert; - body.push (`var ${valueKey} = ${closureKey}(${argKey}, method, ${i});`); - } else { - body.push (`var ${valueKey} = ${argKey};`); - } - - if (step.needs_root) - body.push (`rootBuffer.set (${i}, ${valueKey});`); - - if (step.indirect) { - var heapArrayName = null; - - switch (step.indirect) { - case "u32": - heapArrayName = "HEAPU32"; - break; - case "i32": - heapArrayName = "HEAP32"; - break; - case "float": - heapArrayName = "HEAPF32"; - break; - case "double": - body.push (`Module.HEAPF64[indirect64 + ${(indirectLocalOffset / 8)}] = ${valueKey};`); - break; - case "i64": - body.push (`Module.setValue (indirectStart + ${indirectLocalOffset}, ${valueKey}, 'i64');`); - break; - default: - throw new Error ("Unimplemented indirect type: " + step.indirect); - } - - if (heapArrayName) - body.push (`Module.${heapArrayName}[indirect32 + ${(indirectLocalOffset / 4)}] = ${valueKey};`); - - body.push (`Module.HEAP32[buffer32 + ${i}] = indirectStart + ${indirectLocalOffset};`, ""); - indirectLocalOffset += step.size; - } else { - body.push (`Module.HEAP32[buffer32 + ${i}] = ${valueKey};`, ""); - indirectLocalOffset += 4; - } - } - - body.push ("return buffer;"); - - var bodyJs = body.join ("\r\n"), compiledFunction = null, compiledVariadicFunction = null; - try { - compiledFunction = this._create_named_function("converter_" + converterName, argumentNames, bodyJs, closure); - converter.compiled_function = compiledFunction; - } catch (exc) { - converter.compiled_function = null; - console.warn("compiling converter failed for", bodyJs, "with error", exc); - throw exc; - } - - argumentNames = ["existingBuffer", "rootBuffer", "method", "args"]; - closure = { - converter: compiledFunction - }; - body = [ - "return converter(", - " existingBuffer, rootBuffer, method," - ]; - - for (let i = 0; i < converter.steps.length; i++) { - body.push( - " args[" + i + - ( - (i == converter.steps.length - 1) - ? "]" - : "], " - ) - ); - } - - body.push(");"); - - bodyJs = body.join ("\r\n"); - try { - compiledVariadicFunction = this._create_named_function("variadic_converter_" + converterName, argumentNames, bodyJs, closure); - converter.compiled_variadic_function = compiledVariadicFunction; - } catch (exc) { - converter.compiled_variadic_function = null; - console.warn("compiling converter failed for", bodyJs, "with error", exc); - throw exc; - } - - converter.scratchRootBuffer = null; - converter.scratchBuffer = 0 | 0; - - return converter; - },_verify_args_for_method_call:function (args_marshal, args) { - var has_args = args && (typeof args === "object") && args.length > 0; - var has_args_marshal = typeof args_marshal === "string"; - - if (has_args) { - if (!has_args_marshal) - throw new Error ("No signature provided for method call."); - else if (args.length > args_marshal.length) - throw new Error ("Too many parameter values. Expected at most " + args_marshal.length + " value(s) for signature " + args_marshal); - } - - return has_args_marshal && has_args; - },_get_buffer_for_method_call:function (converter) { - if (!converter) - return 0; - - var result = converter.scratchBuffer; - converter.scratchBuffer = 0; - return result; - },_get_args_root_buffer_for_method_call:function (converter) { - if (!converter) - return null; - - if (!converter.needs_root_buffer) - return null; - - var result; - if (converter.scratchRootBuffer) { - result = converter.scratchRootBuffer; - converter.scratchRootBuffer = null; - } else { - // TODO: Expand the converter's heap allocation and then use - // mono_wasm_new_root_buffer_from_pointer instead. Not that important - // at present because the scratch buffer will be reused unless we are - // recursing through a re-entrant call - result = MONO.mono_wasm_new_root_buffer (converter.steps.length); - result.converter = converter; - } - return result; - },_release_args_root_buffer_from_method_call:function (converter, argsRootBuffer) { - if (!argsRootBuffer || !converter) - return; - - // Store the arguments root buffer for re-use in later calls - if (!converter.scratchRootBuffer) { - argsRootBuffer.clear (); - converter.scratchRootBuffer = argsRootBuffer; - } else { - argsRootBuffer.release (); - } - },_release_buffer_from_method_call:function (converter, buffer) { - if (!converter || !buffer) - return; - - if (!converter.scratchBuffer) - converter.scratchBuffer = buffer | 0; - else - Module._free (buffer | 0); - },_convert_exception_for_method_call:function (result, exception) { - if (exception === 0) - return null; - - var msg = this.conv_string (result); - var err = new Error (msg); //the convention is that invoke_method ToString () any outgoing exception - // console.warn ("error", msg, "at location", err.stack); - return err; - },_maybe_produce_signature_warning:function (converter) { - if (converter.has_warned_about_signature) - return; - - console.warn ("MONO_WASM: Deprecated raw return value signature: '" + converter.args_marshal + "'. End the signature with '!' instead of 'm'."); - converter.has_warned_about_signature = true; - },_decide_if_result_is_marshaled:function (converter, argc) { - if (!converter) - return true; - - if ( - converter.is_result_possibly_unmarshaled && - (argc === converter.result_unmarshaled_if_argc) - ) { - if (argc < converter.result_unmarshaled_if_argc) - throw new Error(["Expected >= ", converter.result_unmarshaled_if_argc, "argument(s) but got", argc, "for signature " + converter.args_marshal].join(" ")); - - this._maybe_produce_signature_warning (converter); - return false; - } else { - if (argc < converter.steps.length) - throw new Error(["Expected", converter.steps.length, "argument(s) but got", argc, "for signature " + converter.args_marshal].join(" ")); - - return !converter.is_result_definitely_unmarshaled; - } - },call_method:function (method, this_arg, args_marshal, args) { - this.bindings_lazy_init (); - - // HACK: Sometimes callers pass null or undefined, coerce it to 0 since that's what wasm expects - this_arg = this_arg | 0; - - // Detect someone accidentally passing the wrong type of value to method - if ((method | 0) !== method) - throw new Error (`method must be an address in the native heap, but was '${method}'`); - if (!method) - throw new Error ("no method specified"); - - var needs_converter = this._verify_args_for_method_call (args_marshal, args); - - var buffer = 0, converter = null, argsRootBuffer = null; - var is_result_marshaled = true; - - // check if the method signature needs argument mashalling - if (needs_converter) { - converter = this._compile_converter_for_marshal_string (args_marshal); - - is_result_marshaled = this._decide_if_result_is_marshaled (converter, args.length); - - argsRootBuffer = this._get_args_root_buffer_for_method_call (converter); - - var scratchBuffer = this._get_buffer_for_method_call (converter); - - buffer = converter.compiled_variadic_function (scratchBuffer, argsRootBuffer, method, args); - } - return this._call_method_with_converted_args (method, this_arg, converter, buffer, is_result_marshaled, argsRootBuffer); - },_handle_exception_for_call:function ( - converter, buffer, resultRoot, exceptionRoot, argsRootBuffer - ) { - var exc = this._convert_exception_for_method_call (resultRoot.value, exceptionRoot.value); - if (!exc) - return; - - this._teardown_after_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer); - throw exc; - },_handle_exception_and_produce_result_for_call:function ( - converter, buffer, resultRoot, exceptionRoot, argsRootBuffer, is_result_marshaled - ) { - this._handle_exception_for_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer); - - if (is_result_marshaled) - result = this._unbox_mono_obj_root (resultRoot); - else - result = resultRoot.value; - - this._teardown_after_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer); - return result; - },_teardown_after_call:function (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer) { - this._release_args_root_buffer_from_method_call (converter, argsRootBuffer); - this._release_buffer_from_method_call (converter, buffer | 0); - - if (resultRoot) - resultRoot.release (); - if (exceptionRoot) - exceptionRoot.release (); - },_get_method_description:function (method) { - if (!this._method_descriptions) - this._method_descriptions = new Map(); - - var result = this._method_descriptions.get (method); - if (!result) - result = "method#" + method; - return result; - },_call_method_with_converted_args:function (method, this_arg, converter, buffer, is_result_marshaled, argsRootBuffer) { - var resultRoot = MONO.mono_wasm_new_root (), exceptionRoot = MONO.mono_wasm_new_root (); - resultRoot.value = this.invoke_method (method, this_arg, buffer, exceptionRoot.get_address ()); - return this._handle_exception_and_produce_result_for_call (converter, buffer, resultRoot, exceptionRoot, argsRootBuffer, is_result_marshaled); - },bind_method:function (method, this_arg, args_marshal, friendly_name) { - this.bindings_lazy_init (); - - this_arg = this_arg | 0; - - var converter = null; - if (typeof (args_marshal) === "string") - converter = this._compile_converter_for_marshal_string (args_marshal); - - var closure = { - library_mono: MONO, - binding_support: this, - method: method, - this_arg: this_arg - }; - - var converterKey = "converter_" + converter.name; - - if (converter) - closure[converterKey] = converter; - - var argumentNames = []; - var body = [ - "var resultRoot = library_mono.mono_wasm_new_root (), exceptionRoot = library_mono.mono_wasm_new_root ();", - "" - ]; - - if (converter) { - body.push( - `var argsRootBuffer = binding_support._get_args_root_buffer_for_method_call (${converterKey});`, - `var scratchBuffer = binding_support._get_buffer_for_method_call (${converterKey});`, - `var buffer = ${converterKey}.compiled_function (`, - " scratchBuffer, argsRootBuffer, method," - ); - - for (var i = 0; i < converter.steps.length; i++) { - var argName = "arg" + i; - argumentNames.push(argName); - body.push( - " " + argName + - ( - (i == converter.steps.length - 1) - ? "" - : ", " - ) - ); - } - - body.push(");"); - - } else { - body.push("var argsRootBuffer = null, buffer = 0;"); - } - - if (converter.is_result_definitely_unmarshaled) { - body.push ("var is_result_marshaled = false;"); - } else if (converter.is_result_possibly_unmarshaled) { - body.push (`var is_result_marshaled = arguments.length !== ${converter.result_unmarshaled_if_argc};`); - } else { - body.push ("var is_result_marshaled = true;"); - } - - // We inline a bunch of the invoke and marshaling logic here in order to eliminate the GC pressure normally - // created by the unboxing part of the call process. Because unbox_mono_obj(_root) can return non-numeric - // types, v8 and spidermonkey allocate and store its result on the heap (in the nursery, to be fair). - // For a bound method however, we know the result will always be the same type because C# methods have known - // return types. Inlining the invoke and marshaling logic means that even though the bound method has logic - // for handling various types, only one path through the method (for its appropriate return type) will ever - // be taken, and the JIT will see that the 'result' local and thus the return value of this function are - // always of the exact same type. All of the branches related to this end up being predicted and low-cost. - // The end result is that bound method invocations don't always allocate, so no more nursery GCs. Yay! -kg - body.push( - "", - "resultRoot.value = binding_support.invoke_method (method, this_arg, buffer, exceptionRoot.get_address ());", - `binding_support._handle_exception_for_call (${converterKey}, buffer, resultRoot, exceptionRoot, argsRootBuffer);`, - "", - "var result = undefined;", - "if (!is_result_marshaled) ", - " result = resultRoot.value;", - "else if (resultRoot.value !== 0) {", - // For the common scenario where the return type is a primitive, we want to try and unbox it directly - // into our existing heap allocation and then read it out of the heap. Doing this all in one operation - // means that we only need to enter a gc safe region twice (instead of 3+ times with the normal, - // slower check-type-and-then-unbox flow which has extra checks since unbox verifies the type). - " var resultType = binding_support.mono_wasm_try_unbox_primitive_and_get_type (resultRoot.value, buffer);", - " switch (resultType) {", - " case 1:", // int - " result = Module.HEAP32[buffer / 4]; break;", - " case 25:", // uint32 - " result = Module.HEAPU32[buffer / 4]; break;", - " case 24:", // float32 - " result = Module.HEAPF32[buffer / 4]; break;", - " case 2:", // float64 - " result = Module.HEAPF64[buffer / 8]; break;", - " case 8:", // boolean - " result = (Module.HEAP32[buffer / 4]) !== 0; break;", - " case 28:", // char - " result = String.fromCharCode(Module.HEAP32[buffer / 4]); break;", - " default:", - " result = binding_support._unbox_mono_obj_root_with_known_nonprimitive_type (resultRoot, resultType); break;", - " }", - "}", - "", - `binding_support._teardown_after_call (${converterKey}, buffer, resultRoot, exceptionRoot, argsRootBuffer);`, - "return result;" - ); - - bodyJs = body.join ("\r\n"); - - if (friendly_name) { - var escapeRE = /[^A-Za-z0-9_]/g; - friendly_name = friendly_name.replace(escapeRE, "_"); - } - - var displayName = "managed_" + (friendly_name || method); - - if (this_arg) - displayName += "_with_this_" + this_arg; - - return this._create_named_function(displayName, argumentNames, bodyJs, closure); - },resolve_method_fqn:function (fqn) { - this.bindings_lazy_init (); - - var assembly = fqn.substring(fqn.indexOf ("[") + 1, fqn.indexOf ("]")).trim(); - fqn = fqn.substring (fqn.indexOf ("]") + 1).trim(); - - var methodname = fqn.substring(fqn.indexOf (":") + 1); - fqn = fqn.substring (0, fqn.indexOf (":")).trim (); - - var namespace = ""; - var classname = fqn; - if (fqn.indexOf(".") != -1) { - var idx = fqn.lastIndexOf("."); - namespace = fqn.substring (0, idx); - classname = fqn.substring (idx + 1); - } - - if (!assembly.trim()) - throw new Error("No assembly name specified"); - if (!classname.trim()) - throw new Error("No class name specified"); - if (!methodname.trim()) - throw new Error("No method name specified"); - - var asm = this.assembly_load (assembly); - if (!asm) - throw new Error ("Could not find assembly: " + assembly); - - var klass = this.find_class(asm, namespace, classname); - if (!klass) - throw new Error ("Could not find class: " + namespace + ":" + classname + " in assembly " + assembly); - - var method = this.find_method (klass, methodname, -1); - if (!method) - throw new Error ("Could not find method: " + methodname); - return method; - },call_static_method:function (fqn, args, signature) { - this.bindings_lazy_init (); - - var method = this.resolve_method_fqn (fqn); - - if (typeof signature === "undefined") - signature = Module.mono_method_get_call_signature (method); - - return this.call_method (method, null, signature, args); - },bind_static_method:function (fqn, signature) { - this.bindings_lazy_init (); - - var method = this.resolve_method_fqn (fqn); - - if (typeof signature === "undefined") - signature = Module.mono_method_get_call_signature (method); - - return BINDING.bind_method (method, null, signature, fqn); - },bind_assembly_entry_point:function (assembly, signature) { - this.bindings_lazy_init (); - - var asm = this.assembly_load (assembly); - if (!asm) - throw new Error ("Could not find assembly: " + assembly); - - var method = this.assembly_get_entry_point(asm); - if (!method) - throw new Error ("Could not find entry point for assembly: " + assembly); - - if (typeof signature === "undefined") - signature = Module.mono_method_get_call_signature (method); - - return function() { - try { - var args = [...arguments]; - if (args.length > 0 && Array.isArray (args[0])) - args[0] = BINDING.js_array_to_mono_array (args[0], true, false); - - let result = BINDING.call_method (method, null, signature, args); - return Promise.resolve (result); - } catch (error) { - return Promise.reject (error); - } - }; - },call_assembly_entry_point:function (assembly, args, signature) { - return this.bind_assembly_entry_point (assembly, signature) (...args) - },mono_wasm_get_jsobj_from_js_handle:function(js_handle) { - if (js_handle > 0) - return this._cs_owned_objects_by_js_handle[js_handle]; - return null; - },mono_wasm_get_js_handle:function(js_obj) { - if(js_obj[BINDING.cs_owned_js_handle_symbol]){ - return js_obj[BINDING.cs_owned_js_handle_symbol]; - } - var js_handle = this._js_handle_free_list.length ? this._js_handle_free_list.pop() : this._next_js_handle++; - // note _cs_owned_objects_by_js_handle is list, not Map. That's why we maintain _js_handle_free_list. - this._cs_owned_objects_by_js_handle[js_handle] = js_obj; - js_obj[BINDING.cs_owned_js_handle_symbol] = js_handle; - return js_handle; - },_mono_wasm_release_js_handle:function(js_handle) { - var obj = BINDING._cs_owned_objects_by_js_handle[js_handle]; - if (typeof obj !== "undefined" && obj !== null) { - // if this is the global object then do not - // unregister it. - if (globalThis === obj) - return obj; - - if (typeof obj[BINDING.cs_owned_js_handle_symbol] !== "undefined") { - obj[BINDING.cs_owned_js_handle_symbol] = undefined; - } - - BINDING._cs_owned_objects_by_js_handle[js_handle] = undefined; - BINDING._js_handle_free_list.push(js_handle); - } - return obj; - }}; - function _mono_wasm_add_event_listener(objHandle, name, listener_gc_handle, optionsHandle) { - var nameRoot = MONO.mono_wasm_new_root (name); - try { - BINDING.bindings_lazy_init (); - var sName = BINDING.conv_string(nameRoot.value); - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle); - if (!obj) - throw new Error("ERR09: Invalid JS object handle for '"+sName+"'"); - - const prevent_timer_throttling = !BINDING.isChromium || obj.constructor.name !== 'WebSocket' - ? null - : () => MONO.prevent_timer_throttling(0); - - var listener = BINDING._wrap_delegate_gc_handle_as_function(listener_gc_handle, prevent_timer_throttling); - if (!listener) - throw new Error("ERR10: Invalid listener gc_handle"); - - var options = optionsHandle - ? BINDING.mono_wasm_get_jsobj_from_js_handle(optionsHandle) - : null; - - if(!BINDING._use_finalization_registry){ - // we are counting registrations because same delegate could be registered into multiple sources - listener[BINDING.listener_registration_count_symbol] = listener[BINDING.listener_registration_count_symbol] ? listener[BINDING.listener_registration_count_symbol] + 1 : 1; - } - - if (options) - obj.addEventListener(sName, listener, options); - else - obj.addEventListener(sName, listener); - return 0; - } catch (exc) { - return BINDING.js_string_to_mono_string(exc.message); - } finally { - nameRoot.release(); - } - } - - function _mono_wasm_asm_loaded(assembly_name, assembly_ptr, assembly_len, pdb_ptr, pdb_len) { - // Only trigger this codepath for assemblies loaded after app is ready - if (MONO.mono_wasm_runtime_is_ready !== true) - return; - - const assembly_name_str = assembly_name !== 0 ? Module.UTF8ToString(assembly_name).concat('.dll') : ''; - - const assembly_data = new Uint8Array(Module.HEAPU8.buffer, assembly_ptr, assembly_len); - const assembly_b64 = MONO._base64Converter.toBase64StringImpl(assembly_data); - - let pdb_b64; - if (pdb_ptr) { - const pdb_data = new Uint8Array(Module.HEAPU8.buffer, pdb_ptr, pdb_len); - pdb_b64 = MONO._base64Converter.toBase64StringImpl(pdb_data); - } - - MONO.mono_wasm_raise_debug_event({ - eventName: 'AssemblyLoaded', - assembly_name: assembly_name_str, - assembly_b64, - pdb_b64 - }); - } - - function _mono_wasm_create_cs_owned_object(core_name, args, is_exception) { - var argsRoot = MONO.mono_wasm_new_root (args), nameRoot = MONO.mono_wasm_new_root (core_name); - try { - BINDING.bindings_lazy_init (); - - var js_name = BINDING.conv_string (nameRoot.value); - - if (!js_name) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Invalid name @" + nameRoot.value); - } - - var coreObj = globalThis[js_name]; - - if (coreObj === null || typeof coreObj === "undefined") { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("JavaScript host object '" + js_name + "' not found."); - } - - var js_args = BINDING._mono_array_root_to_js_array(argsRoot); - - try { - - // This is all experimental !!!!!! - var allocator = function(constructor, js_args) { - // Not sure if we should be checking for anything here - var argsList = new Array(); - argsList[0] = constructor; - if (js_args) - argsList = argsList.concat (js_args); - var tempCtor = constructor.bind.apply (constructor, argsList); - var js_obj = new tempCtor (); - return js_obj; - }; - - var js_obj = allocator(coreObj, js_args); - var js_handle = BINDING.mono_wasm_get_js_handle(js_obj); - // returns boxed js_handle int, because on exception we need to return String on same method signature - // here we don't have anything to in-flight reference, as the JSObject doesn't exist yet - return BINDING._js_to_mono_obj(false, js_handle); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || res === undefined) - res = "Error allocating object."; - return BINDING.js_string_to_mono_string (res); - } - } finally { - argsRoot.release(); - nameRoot.release(); - } - } - - function _mono_wasm_fire_debugger_agent_message() { - // eslint-disable-next-line no-debugger - debugger; - } - - function _mono_wasm_get_by_index(js_handle, property_index, is_exception) { - BINDING.bindings_lazy_init (); - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR03: Invalid JS object handle '" + js_handle + "' while getting ["+property_index+"]"); - } - - try { - var m = obj [property_index]; - return BINDING._js_to_mono_obj (true, m); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || typeof res === "undefined") - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } - - function _mono_wasm_get_global_object(global_name, is_exception) { - var nameRoot = MONO.mono_wasm_new_root (global_name); - try { - BINDING.bindings_lazy_init (); - - var js_name = BINDING.conv_string (nameRoot.value); - - var globalObj; - - if (!js_name) { - globalObj = globalThis; - } - else { - globalObj = globalThis[js_name]; - } - - // TODO returning null may be useful when probing for browser features - if (globalObj === null || typeof globalObj === undefined) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Global object '" + js_name + "' not found."); - } - - return BINDING._js_to_mono_obj (true, globalObj); - } finally { - nameRoot.release(); - } - } - - function _mono_wasm_get_object_property(js_handle, property_name, is_exception) { - BINDING.bindings_lazy_init (); - - var nameRoot = MONO.mono_wasm_new_root (property_name); - try { - var js_name = BINDING.conv_string (nameRoot.value); - if (!js_name) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Invalid property name object '" + nameRoot.value + "'"); - } - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR01: Invalid JS object handle '" + js_handle + "' while geting '"+js_name+"'"); - } - - var res; - try { - var m = obj [js_name]; - - return BINDING._js_to_mono_obj (true, m); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || typeof res === "undefined") - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } finally { - nameRoot.release(); - } - } - - var DOTNET={conv_string:function (mono_obj) { - return MONO.string_decoder.copy (mono_obj); - }}; - function _mono_wasm_invoke_js_blazor(exceptionMessage, callInfo, arg0, arg1, arg2) { - var mono_string = globalThis._mono_string_cached - || (globalThis._mono_string_cached = Module.cwrap('mono_wasm_string_from_js', 'number', ['string'])); - - try { - var blazorExports = globalThis.Blazor; - if (!blazorExports) { - throw new Error('The blazor.webassembly.js library is not loaded.'); - } - - return blazorExports._internal.invokeJSFromDotNet(callInfo, arg0, arg1, arg2); - } catch (ex) { - var exceptionJsString = ex.message + '\n' + ex.stack; - var exceptionSystemString = mono_string(exceptionJsString); - setValue (exceptionMessage, exceptionSystemString, 'i32'); // *exceptionMessage = exceptionSystemString; - return 0; - } - } - - function _mono_wasm_invoke_js_marshalled(exceptionMessage, asyncHandleLongPtr, functionName, argsJson, treatResultAsVoid) { - - var mono_string = globalThis._mono_string_cached - || (globalThis._mono_string_cached = Module.cwrap('mono_wasm_string_from_js', 'number', ['string'])); - - try { - // Passing a .NET long into JS via Emscripten is tricky. The method here is to pass - // as pointer to the long, then combine two reads from the HEAPU32 array. - // Even though JS numbers can't represent the full range of a .NET long, it's OK - // because we'll never exceed Number.MAX_SAFE_INTEGER (2^53 - 1) in this case. - //var u32Index = $1 >> 2; - var u32Index = asyncHandleLongPtr >> 2; - var asyncHandleJsNumber = Module.HEAPU32[u32Index + 1]*4294967296 + Module.HEAPU32[u32Index]; - - // var funcNameJsString = UTF8ToString (functionName); - // var argsJsonJsString = argsJson && UTF8ToString (argsJson); - var funcNameJsString = DOTNET.conv_string(functionName); - var argsJsonJsString = argsJson && DOTNET.conv_string (argsJson); - - var dotNetExports = globaThis.DotNet; - if (!dotNetExports) { - throw new Error('The Microsoft.JSInterop.js library is not loaded.'); - } - - if (asyncHandleJsNumber) { - dotNetExports.jsCallDispatcher.beginInvokeJSFromDotNet(asyncHandleJsNumber, funcNameJsString, argsJsonJsString, treatResultAsVoid); - return 0; - } else { - var resultJson = dotNetExports.jsCallDispatcher.invokeJSFromDotNet(funcNameJsString, argsJsonJsString, treatResultAsVoid); - return resultJson === null ? 0 : mono_string(resultJson); - } - } catch (ex) { - var exceptionJsString = ex.message + '\n' + ex.stack; - var exceptionSystemString = mono_string(exceptionJsString); - setValue (exceptionMessage, exceptionSystemString, 'i32'); // *exceptionMessage = exceptionSystemString; - return 0; - } - } - - function _mono_wasm_invoke_js_unmarshalled(exceptionMessage, funcName, arg0, arg1, arg2) { - try { - // Get the function you're trying to invoke - var funcNameJsString = DOTNET.conv_string(funcName); - var dotNetExports = globalThis.DotNet; - if (!dotNetExports) { - throw new Error('The Microsoft.JSInterop.js library is not loaded.'); - } - var funcInstance = dotNetExports.jsCallDispatcher.findJSFunction(funcNameJsString); - - return funcInstance.call(null, arg0, arg1, arg2); - } catch (ex) { - var exceptionJsString = ex.message + '\n' + ex.stack; - var mono_string = Module.cwrap('mono_wasm_string_from_js', 'number', ['string']); // TODO: Cache - var exceptionSystemString = mono_string(exceptionJsString); - setValue (exceptionMessage, exceptionSystemString, 'i32'); // *exceptionMessage = exceptionSystemString; - return 0; - } - } - - function _mono_wasm_invoke_js_with_args(js_handle, method_name, args, is_exception) { - let argsRoot = MONO.mono_wasm_new_root (args), nameRoot = MONO.mono_wasm_new_root (method_name); - try { - BINDING.bindings_lazy_init (); - - var js_name = BINDING.conv_string (nameRoot.value); - if (!js_name || (typeof(js_name) !== "string")) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR12: Invalid method name object '" + nameRoot.value + "'"); - } - - var obj = BINDING.get_js_obj (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR13: Invalid JS object handle '" + js_handle + "' while invoking '"+js_name+"'"); - } - - var js_args = BINDING._mono_array_root_to_js_array(argsRoot); - - var res; - try { - var m = obj [js_name]; - if (typeof m === "undefined") - throw new Error("Method: '" + js_name + "' not found for: '" + Object.prototype.toString.call(obj) + "'"); - var res = m.apply (obj, js_args); - return BINDING._js_to_mono_obj(true, res); - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || res === undefined) - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } finally { - argsRoot.release(); - nameRoot.release(); - } - } - - function _mono_wasm_release_cs_owned_object(js_handle) { - BINDING.bindings_lazy_init (); - BINDING._mono_wasm_release_js_handle(js_handle); - } - - function _mono_wasm_remove_event_listener(objHandle, name, listener_gc_handle, capture) { - var nameRoot = MONO.mono_wasm_new_root (name); - try { - BINDING.bindings_lazy_init (); - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle); - if (!obj) - throw new Error("ERR11: Invalid JS object handle"); - var listener = BINDING._lookup_js_owned_object(listener_gc_handle); - // Removing a nonexistent listener should not be treated as an error - if (!listener) - return; - var sName = BINDING.conv_string(nameRoot.value); - - obj.removeEventListener(sName, listener, !!capture); - // We do not manually remove the listener from the delegate registry here, - // because that same delegate may have been used as an event listener for - // other events or event targets. The GC will automatically clean it up - // and trigger the FinalizationRegistry handler if it's unused - - // When FinalizationRegistry is not supported by this browser, we cleanup manuall after unregistration - if (!BINDING._use_finalization_registry) { - listener[BINDING.listener_registration_count_symbol]--; - if (listener[BINDING.listener_registration_count_symbol] === 0) { - BINDING._js_owned_object_table.delete(listener_gc_handle); - BINDING._release_js_owned_object_by_gc_handle(listener_gc_handle); - } - } - - return 0; - } catch (exc) { - return BINDING.js_string_to_mono_string(exc.message); - } finally { - nameRoot.release(); - } - } - - function _mono_wasm_set_by_index(js_handle, property_index, value, is_exception) { - var valueRoot = MONO.mono_wasm_new_root (value); - try { - BINDING.bindings_lazy_init (); - - var obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR04: Invalid JS object handle '" + js_handle + "' while setting ["+property_index+"]"); - } - - var js_value = BINDING._unbox_mono_obj_root(valueRoot); - - try { - obj [property_index] = js_value; - return true; - } catch (e) { - var res = e.toString (); - setValue (is_exception, 1, "i32"); - if (res === null || typeof res === "undefined") - res = "unknown exception"; - return BINDING.js_string_to_mono_string (res); - } - } finally { - valueRoot.release(); - } - } - - function _mono_wasm_set_object_property(js_handle, property_name, value, createIfNotExist, hasOwnProperty, is_exception) { - var valueRoot = MONO.mono_wasm_new_root (value), nameRoot = MONO.mono_wasm_new_root (property_name); - try { - BINDING.bindings_lazy_init (); - var property = BINDING.conv_string (nameRoot.value); - if (!property) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("Invalid property name object '" + property_name + "'"); - } - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR02: Invalid JS object handle '" + js_handle + "' while setting '"+property+"'"); - } - - var result = false; - - var js_value = BINDING._unbox_mono_obj_root(valueRoot); - - if (createIfNotExist) { - js_obj[property] = js_value; - result = true; - } - else { - result = false; - if (!createIfNotExist) - { - if (!js_obj.hasOwnProperty(property)) - return false; - } - if (hasOwnProperty === true) { - if (js_obj.hasOwnProperty(property)) { - js_obj[property] = js_value; - result = true; - } - } - else { - js_obj[property] = js_value; - result = true; - } - - } - return BINDING._box_js_bool (result); - } finally { - nameRoot.release(); - valueRoot.release(); - } - } - - function _mono_wasm_typed_array_copy_from(js_handle, pinned_array, begin, end, bytes_per_element, is_exception) { - BINDING.bindings_lazy_init (); - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR08: Invalid JS object handle '" + js_handle + "'"); - } - - var res = BINDING.typedarray_copy_from(js_obj, pinned_array, begin, end, bytes_per_element); - // returns num_of_bytes boxed - return BINDING._js_to_mono_obj (false, res) - } - - function _mono_wasm_typed_array_copy_to(js_handle, pinned_array, begin, end, bytes_per_element, is_exception) { - BINDING.bindings_lazy_init (); - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR07: Invalid JS object handle '" + js_handle + "'"); - } - - var res = BINDING.typedarray_copy_to(js_obj, pinned_array, begin, end, bytes_per_element); - // returns num_of_bytes boxed - return BINDING._js_to_mono_obj (false, res) - } - - function _mono_wasm_typed_array_from(pinned_array, begin, end, bytes_per_element, type, is_exception) { - BINDING.bindings_lazy_init (); - var res = BINDING.typed_array_from(pinned_array, begin, end, bytes_per_element, type); - // returns JS typed array like Int8Array, to be wraped with JSObject proxy - return BINDING._js_to_mono_obj (true, res) - } - - function _mono_wasm_typed_array_to_array(js_handle, is_exception) { - BINDING.bindings_lazy_init (); - - var js_obj = BINDING.mono_wasm_get_jsobj_from_js_handle (js_handle); - if (!js_obj) { - setValue (is_exception, 1, "i32"); - return BINDING.js_string_to_mono_string ("ERR06: Invalid JS object handle '" + js_handle + "'"); - } - - // returns pointer to C# array - return BINDING.js_typed_array_to_array(js_obj, false); - } - - function _pthread_create() { - return 6; - } - - function _pthread_join() { - return 28; - } - - function _schedule_background_exec() { - ++MONO.pump_count; - if (typeof globalThis.setTimeout === 'function') { - globalThis.setTimeout (MONO.pump_message, 0); - } - } - - function _setTempRet0(val) { - setTempRet0(val); - } - - function __isLeapYear(year) { - return year%4 === 0 && (year%100 !== 0 || year%400 === 0); - } - - function __arraySum(array, index) { - var sum = 0; - for (var i = 0; i <= index; sum += array[i++]) { - // no-op - } - return sum; - } - - var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31]; - - var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31]; - function __addDays(date, days) { - var newDate = new Date(date.getTime()); - while (days > 0) { - var leap = __isLeapYear(newDate.getFullYear()); - var currentMonth = newDate.getMonth(); - var daysInCurrentMonth = (leap ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR)[currentMonth]; - - if (days > daysInCurrentMonth-newDate.getDate()) { - // we spill over to next month - days -= (daysInCurrentMonth-newDate.getDate()+1); - newDate.setDate(1); - if (currentMonth < 11) { - newDate.setMonth(currentMonth+1) - } else { - newDate.setMonth(0); - newDate.setFullYear(newDate.getFullYear()+1); - } - } else { - // we stay in current month - newDate.setDate(newDate.getDate()+days); - return newDate; - } - } - - return newDate; - } - function _strftime(s, maxsize, format, tm) { - // size_t strftime(char *restrict s, size_t maxsize, const char *restrict format, const struct tm *restrict timeptr); - // http://pubs.opengroup.org/onlinepubs/009695399/functions/strftime.html - - var tm_zone = HEAP32[(((tm)+(40))>>2)]; - - var date = { - tm_sec: HEAP32[((tm)>>2)], - tm_min: HEAP32[(((tm)+(4))>>2)], - tm_hour: HEAP32[(((tm)+(8))>>2)], - tm_mday: HEAP32[(((tm)+(12))>>2)], - tm_mon: HEAP32[(((tm)+(16))>>2)], - tm_year: HEAP32[(((tm)+(20))>>2)], - tm_wday: HEAP32[(((tm)+(24))>>2)], - tm_yday: HEAP32[(((tm)+(28))>>2)], - tm_isdst: HEAP32[(((tm)+(32))>>2)], - tm_gmtoff: HEAP32[(((tm)+(36))>>2)], - tm_zone: tm_zone ? UTF8ToString(tm_zone) : '' - }; - - var pattern = UTF8ToString(format); - - // expand format - var EXPANSION_RULES_1 = { - '%c': '%a %b %d %H:%M:%S %Y', // Replaced by the locale's appropriate date and time representation - e.g., Mon Aug 3 14:02:01 2013 - '%D': '%m/%d/%y', // Equivalent to %m / %d / %y - '%F': '%Y-%m-%d', // Equivalent to %Y - %m - %d - '%h': '%b', // Equivalent to %b - '%r': '%I:%M:%S %p', // Replaced by the time in a.m. and p.m. notation - '%R': '%H:%M', // Replaced by the time in 24-hour notation - '%T': '%H:%M:%S', // Replaced by the time - '%x': '%m/%d/%y', // Replaced by the locale's appropriate date representation - '%X': '%H:%M:%S', // Replaced by the locale's appropriate time representation - // Modified Conversion Specifiers - '%Ec': '%c', // Replaced by the locale's alternative appropriate date and time representation. - '%EC': '%C', // Replaced by the name of the base year (period) in the locale's alternative representation. - '%Ex': '%m/%d/%y', // Replaced by the locale's alternative date representation. - '%EX': '%H:%M:%S', // Replaced by the locale's alternative time representation. - '%Ey': '%y', // Replaced by the offset from %EC (year only) in the locale's alternative representation. - '%EY': '%Y', // Replaced by the full alternative year representation. - '%Od': '%d', // Replaced by the day of the month, using the locale's alternative numeric symbols, filled as needed with leading zeros if there is any alternative symbol for zero; otherwise, with leading characters. - '%Oe': '%e', // Replaced by the day of the month, using the locale's alternative numeric symbols, filled as needed with leading characters. - '%OH': '%H', // Replaced by the hour (24-hour clock) using the locale's alternative numeric symbols. - '%OI': '%I', // Replaced by the hour (12-hour clock) using the locale's alternative numeric symbols. - '%Om': '%m', // Replaced by the month using the locale's alternative numeric symbols. - '%OM': '%M', // Replaced by the minutes using the locale's alternative numeric symbols. - '%OS': '%S', // Replaced by the seconds using the locale's alternative numeric symbols. - '%Ou': '%u', // Replaced by the weekday as a number in the locale's alternative representation (Monday=1). - '%OU': '%U', // Replaced by the week number of the year (Sunday as the first day of the week, rules corresponding to %U ) using the locale's alternative numeric symbols. - '%OV': '%V', // Replaced by the week number of the year (Monday as the first day of the week, rules corresponding to %V ) using the locale's alternative numeric symbols. - '%Ow': '%w', // Replaced by the number of the weekday (Sunday=0) using the locale's alternative numeric symbols. - '%OW': '%W', // Replaced by the week number of the year (Monday as the first day of the week) using the locale's alternative numeric symbols. - '%Oy': '%y', // Replaced by the year (offset from %C ) using the locale's alternative numeric symbols. - }; - for (var rule in EXPANSION_RULES_1) { - pattern = pattern.replace(new RegExp(rule, 'g'), EXPANSION_RULES_1[rule]); - } - - var WEEKDAYS = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']; - var MONTHS = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']; - - function leadingSomething(value, digits, character) { - var str = typeof value === 'number' ? value.toString() : (value || ''); - while (str.length < digits) { - str = character[0]+str; - } - return str; - } - - function leadingNulls(value, digits) { - return leadingSomething(value, digits, '0'); - } - - function compareByDay(date1, date2) { - function sgn(value) { - return value < 0 ? -1 : (value > 0 ? 1 : 0); - } - - var compare; - if ((compare = sgn(date1.getFullYear()-date2.getFullYear())) === 0) { - if ((compare = sgn(date1.getMonth()-date2.getMonth())) === 0) { - compare = sgn(date1.getDate()-date2.getDate()); - } - } - return compare; - } - - function getFirstWeekStartDate(janFourth) { - switch (janFourth.getDay()) { - case 0: // Sunday - return new Date(janFourth.getFullYear()-1, 11, 29); - case 1: // Monday - return janFourth; - case 2: // Tuesday - return new Date(janFourth.getFullYear(), 0, 3); - case 3: // Wednesday - return new Date(janFourth.getFullYear(), 0, 2); - case 4: // Thursday - return new Date(janFourth.getFullYear(), 0, 1); - case 5: // Friday - return new Date(janFourth.getFullYear()-1, 11, 31); - case 6: // Saturday - return new Date(janFourth.getFullYear()-1, 11, 30); - } - } - - function getWeekBasedYear(date) { - var thisDate = __addDays(new Date(date.tm_year+1900, 0, 1), date.tm_yday); - - var janFourthThisYear = new Date(thisDate.getFullYear(), 0, 4); - var janFourthNextYear = new Date(thisDate.getFullYear()+1, 0, 4); - - var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear); - var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear); - - if (compareByDay(firstWeekStartThisYear, thisDate) <= 0) { - // this date is after the start of the first week of this year - if (compareByDay(firstWeekStartNextYear, thisDate) <= 0) { - return thisDate.getFullYear()+1; - } else { - return thisDate.getFullYear(); - } - } else { - return thisDate.getFullYear()-1; - } - } - - var EXPANSION_RULES_2 = { - '%a': function(date) { - return WEEKDAYS[date.tm_wday].substring(0,3); - }, - '%A': function(date) { - return WEEKDAYS[date.tm_wday]; - }, - '%b': function(date) { - return MONTHS[date.tm_mon].substring(0,3); - }, - '%B': function(date) { - return MONTHS[date.tm_mon]; - }, - '%C': function(date) { - var year = date.tm_year+1900; - return leadingNulls((year/100)|0,2); - }, - '%d': function(date) { - return leadingNulls(date.tm_mday, 2); - }, - '%e': function(date) { - return leadingSomething(date.tm_mday, 2, ' '); - }, - '%g': function(date) { - // %g, %G, and %V give values according to the ISO 8601:2000 standard week-based year. - // In this system, weeks begin on a Monday and week 1 of the year is the week that includes - // January 4th, which is also the week that includes the first Thursday of the year, and - // is also the first week that contains at least four days in the year. - // If the first Monday of January is the 2nd, 3rd, or 4th, the preceding days are part of - // the last week of the preceding year; thus, for Saturday 2nd January 1999, - // %G is replaced by 1998 and %V is replaced by 53. If December 29th, 30th, - // or 31st is a Monday, it and any following days are part of week 1 of the following year. - // Thus, for Tuesday 30th December 1997, %G is replaced by 1998 and %V is replaced by 01. - - return getWeekBasedYear(date).toString().substring(2); - }, - '%G': function(date) { - return getWeekBasedYear(date); - }, - '%H': function(date) { - return leadingNulls(date.tm_hour, 2); - }, - '%I': function(date) { - var twelveHour = date.tm_hour; - if (twelveHour == 0) twelveHour = 12; - else if (twelveHour > 12) twelveHour -= 12; - return leadingNulls(twelveHour, 2); - }, - '%j': function(date) { - // Day of the year (001-366) - return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, date.tm_mon-1), 3); - }, - '%m': function(date) { - return leadingNulls(date.tm_mon+1, 2); - }, - '%M': function(date) { - return leadingNulls(date.tm_min, 2); - }, - '%n': function() { - return '\n'; - }, - '%p': function(date) { - if (date.tm_hour >= 0 && date.tm_hour < 12) { - return 'AM'; - } else { - return 'PM'; - } - }, - '%S': function(date) { - return leadingNulls(date.tm_sec, 2); - }, - '%t': function() { - return '\t'; - }, - '%u': function(date) { - return date.tm_wday || 7; - }, - '%U': function(date) { - // Replaced by the week number of the year as a decimal number [00,53]. - // The first Sunday of January is the first day of week 1; - // days in the new year before this are in week 0. [ tm_year, tm_wday, tm_yday] - var janFirst = new Date(date.tm_year+1900, 0, 1); - var firstSunday = janFirst.getDay() === 0 ? janFirst : __addDays(janFirst, 7-janFirst.getDay()); - var endDate = new Date(date.tm_year+1900, date.tm_mon, date.tm_mday); - - // is target date after the first Sunday? - if (compareByDay(firstSunday, endDate) < 0) { - // calculate difference in days between first Sunday and endDate - var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth()-1)-31; - var firstSundayUntilEndJanuary = 31-firstSunday.getDate(); - var days = firstSundayUntilEndJanuary+februaryFirstUntilEndMonth+endDate.getDate(); - return leadingNulls(Math.ceil(days/7), 2); - } - - return compareByDay(firstSunday, janFirst) === 0 ? '01': '00'; - }, - '%V': function(date) { - // Replaced by the week number of the year (Monday as the first day of the week) - // as a decimal number [01,53]. If the week containing 1 January has four - // or more days in the new year, then it is considered week 1. - // Otherwise, it is the last week of the previous year, and the next week is week 1. - // Both January 4th and the first Thursday of January are always in week 1. [ tm_year, tm_wday, tm_yday] - var janFourthThisYear = new Date(date.tm_year+1900, 0, 4); - var janFourthNextYear = new Date(date.tm_year+1901, 0, 4); - - var firstWeekStartThisYear = getFirstWeekStartDate(janFourthThisYear); - var firstWeekStartNextYear = getFirstWeekStartDate(janFourthNextYear); - - var endDate = __addDays(new Date(date.tm_year+1900, 0, 1), date.tm_yday); - - if (compareByDay(endDate, firstWeekStartThisYear) < 0) { - // if given date is before this years first week, then it belongs to the 53rd week of last year - return '53'; - } - - if (compareByDay(firstWeekStartNextYear, endDate) <= 0) { - // if given date is after next years first week, then it belongs to the 01th week of next year - return '01'; - } - - // given date is in between CW 01..53 of this calendar year - var daysDifference; - if (firstWeekStartThisYear.getFullYear() < date.tm_year+1900) { - // first CW of this year starts last year - daysDifference = date.tm_yday+32-firstWeekStartThisYear.getDate() - } else { - // first CW of this year starts this year - daysDifference = date.tm_yday+1-firstWeekStartThisYear.getDate(); - } - return leadingNulls(Math.ceil(daysDifference/7), 2); - }, - '%w': function(date) { - return date.tm_wday; - }, - '%W': function(date) { - // Replaced by the week number of the year as a decimal number [00,53]. - // The first Monday of January is the first day of week 1; - // days in the new year before this are in week 0. [ tm_year, tm_wday, tm_yday] - var janFirst = new Date(date.tm_year, 0, 1); - var firstMonday = janFirst.getDay() === 1 ? janFirst : __addDays(janFirst, janFirst.getDay() === 0 ? 1 : 7-janFirst.getDay()+1); - var endDate = new Date(date.tm_year+1900, date.tm_mon, date.tm_mday); - - // is target date after the first Monday? - if (compareByDay(firstMonday, endDate) < 0) { - var februaryFirstUntilEndMonth = __arraySum(__isLeapYear(endDate.getFullYear()) ? __MONTH_DAYS_LEAP : __MONTH_DAYS_REGULAR, endDate.getMonth()-1)-31; - var firstMondayUntilEndJanuary = 31-firstMonday.getDate(); - var days = firstMondayUntilEndJanuary+februaryFirstUntilEndMonth+endDate.getDate(); - return leadingNulls(Math.ceil(days/7), 2); - } - return compareByDay(firstMonday, janFirst) === 0 ? '01': '00'; - }, - '%y': function(date) { - // Replaced by the last two digits of the year as a decimal number [00,99]. [ tm_year] - return (date.tm_year+1900).toString().substring(2); - }, - '%Y': function(date) { - // Replaced by the year as a decimal number (for example, 1997). [ tm_year] - return date.tm_year+1900; - }, - '%z': function(date) { - // Replaced by the offset from UTC in the ISO 8601:2000 standard format ( +hhmm or -hhmm ). - // For example, "-0430" means 4 hours 30 minutes behind UTC (west of Greenwich). - var off = date.tm_gmtoff; - var ahead = off >= 0; - off = Math.abs(off) / 60; - // convert from minutes into hhmm format (which means 60 minutes = 100 units) - off = (off / 60)*100 + (off % 60); - return (ahead ? '+' : '-') + String("0000" + off).slice(-4); - }, - '%Z': function(date) { - return date.tm_zone; - }, - '%%': function() { - return '%'; - } - }; - for (var rule in EXPANSION_RULES_2) { - if (pattern.includes(rule)) { - pattern = pattern.replace(new RegExp(rule, 'g'), EXPANSION_RULES_2[rule](date)); - } - } - - var bytes = intArrayFromString(pattern, false); - if (bytes.length > maxsize) { - return 0; - } - - writeArrayToMemory(bytes, s); - return bytes.length-1; - } - - function _time(ptr) { - var ret = (Date.now()/1000)|0; - if (ptr) { - HEAP32[((ptr)>>2)] = ret; - } - return ret; - } - - - function setFileTime(path, time) { - path = UTF8ToString(path); - try { - FS.utime(path, time, time); - return 0; - } catch (e) { - if (!(e instanceof FS.ErrnoError)) throw e + ' : ' + stackTrace(); - setErrNo(e.errno); - return -1; - } - } - function _utimes(path, times) { - // utimes is just like utime but take an array of 2 times: `struct timeval times[2]` - // times[0] is the new access time (which we currently ignore) - // times[1] is the new modification time. - var time; - if (times) { - var mtime = times + 8; - time = HEAP32[((mtime)>>2)] * 1000; - time += HEAP32[(((mtime)+(4))>>2)] / 1000; - } else { - time = Date.now(); - } - return setFileTime(path, time); - } - -var FSNode = /** @constructor */ function(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - var readMode = 292/*292*/ | 73/*73*/; - var writeMode = 146/*146*/; - Object.defineProperties(FSNode.prototype, { - read: { - get: /** @this{FSNode} */function() { - return (this.mode & readMode) === readMode; - }, - set: /** @this{FSNode} */function(val) { - val ? this.mode |= readMode : this.mode &= ~readMode; - } - }, - write: { - get: /** @this{FSNode} */function() { - return (this.mode & writeMode) === writeMode; - }, - set: /** @this{FSNode} */function(val) { - val ? this.mode |= writeMode : this.mode &= ~writeMode; - } - }, - isFolder: { - get: /** @this{FSNode} */function() { - return FS.isDir(this.mode); - } - }, - isDevice: { - get: /** @this{FSNode} */function() { - return FS.isChrdev(this.mode); - } - } - }); - FS.FSNode = FSNode; - FS.staticInit();Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createDevice"] = FS.createDevice;Module["FS_unlink"] = FS.unlink;; -MONO.export_functions (Module);; -BINDING.export_functions (Module);; -var ASSERTIONS = false; - - - -/** @type {function(string, boolean=, number=)} */ -function intArrayFromString(stringy, dontAddNull, length) { - var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; - var u8array = new Array(len); - var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); - if (dontAddNull) u8array.length = numBytesWritten; - return u8array; -} - -function intArrayToString(array) { - var ret = []; - for (var i = 0; i < array.length; i++) { - var chr = array[i]; - if (chr > 0xFF) { - if (ASSERTIONS) { - assert(false, 'Character code ' + chr + ' (' + String.fromCharCode(chr) + ') at offset ' + i + ' not in 0x00-0xFF.'); - } - chr &= 0xFF; - } - ret.push(String.fromCharCode(chr)); - } - return ret.join(''); -} - - -var asmLibraryArg = { - "__assert_fail": ___assert_fail, - "__clock_gettime": ___clock_gettime, - "__cxa_allocate_exception": ___cxa_allocate_exception, - "__cxa_begin_catch": ___cxa_begin_catch, - "__cxa_end_catch": ___cxa_end_catch, - "__cxa_find_matching_catch_2": ___cxa_find_matching_catch_2, - "__cxa_find_matching_catch_3": ___cxa_find_matching_catch_3, - "__cxa_free_exception": ___cxa_free_exception, - "__cxa_rethrow": ___cxa_rethrow, - "__cxa_throw": ___cxa_throw, - "__localtime_r": ___localtime_r, - "__resumeException": ___resumeException, - "__sys_access": ___sys_access, - "__sys_chdir": ___sys_chdir, - "__sys_chmod": ___sys_chmod, - "__sys_chown32": ___sys_chown32, - "__sys_connect": ___sys_connect, - "__sys_fadvise64_64": ___sys_fadvise64_64, - "__sys_fchmod": ___sys_fchmod, - "__sys_fchown32": ___sys_fchown32, - "__sys_fcntl64": ___sys_fcntl64, - "__sys_fstat64": ___sys_fstat64, - "__sys_fstatfs64": ___sys_fstatfs64, - "__sys_ftruncate64": ___sys_ftruncate64, - "__sys_getcwd": ___sys_getcwd, - "__sys_getdents64": ___sys_getdents64, - "__sys_geteuid32": ___sys_geteuid32, - "__sys_getpid": ___sys_getpid, - "__sys_getrusage": ___sys_getrusage, - "__sys_ioctl": ___sys_ioctl, - "__sys_link": ___sys_link, - "__sys_lstat64": ___sys_lstat64, - "__sys_madvise1": ___sys_madvise1, - "__sys_mkdir": ___sys_mkdir, - "__sys_mmap2": ___sys_mmap2, - "__sys_msync": ___sys_msync, - "__sys_munmap": ___sys_munmap, - "__sys_open": ___sys_open, - "__sys_readlink": ___sys_readlink, - "__sys_recvfrom": ___sys_recvfrom, - "__sys_rename": ___sys_rename, - "__sys_rmdir": ___sys_rmdir, - "__sys_sendto": ___sys_sendto, - "__sys_setsockopt": ___sys_setsockopt, - "__sys_shutdown": ___sys_shutdown, - "__sys_socket": ___sys_socket, - "__sys_stat64": ___sys_stat64, - "__sys_symlink": ___sys_symlink, - "__sys_unlink": ___sys_unlink, - "__sys_utimensat": ___sys_utimensat, - "abort": _abort, - "clock_getres": _clock_getres, - "clock_gettime": _clock_gettime, - "compile_function": compile_function, - "difftime": _difftime, - "dlclose": _dlclose, - "dlerror": _dlerror, - "dlopen": _dlopen, - "dlsym": _dlsym, - "dotnet_browser_entropy": _dotnet_browser_entropy, - "emscripten_asm_const_int": _emscripten_asm_const_int, - "emscripten_get_heap_max": _emscripten_get_heap_max, - "emscripten_memcpy_big": _emscripten_memcpy_big, - "emscripten_resize_heap": _emscripten_resize_heap, - "emscripten_thread_sleep": _emscripten_thread_sleep, - "environ_get": _environ_get, - "environ_sizes_get": _environ_sizes_get, - "exit": _exit, - "fd_close": _fd_close, - "fd_fdstat_get": _fd_fdstat_get, - "fd_pread": _fd_pread, - "fd_pwrite": _fd_pwrite, - "fd_read": _fd_read, - "fd_seek": _fd_seek, - "fd_sync": _fd_sync, - "fd_write": _fd_write, - "flock": _flock, - "gai_strerror": _gai_strerror, - "getTempRet0": _getTempRet0, - "gettimeofday": _gettimeofday, - "gmtime_r": _gmtime_r, - "invoke_i": invoke_i, - "invoke_ii": invoke_ii, - "invoke_iii": invoke_iii, - "invoke_iiii": invoke_iiii, - "invoke_v": invoke_v, - "invoke_vi": invoke_vi, - "invoke_vii": invoke_vii, - "invoke_viii": invoke_viii, - "llvm_eh_typeid_for": _llvm_eh_typeid_for, - "localtime_r": _localtime_r, - "mono_set_timeout": _mono_set_timeout, - "mono_wasm_add_event_listener": _mono_wasm_add_event_listener, - "mono_wasm_asm_loaded": _mono_wasm_asm_loaded, - "mono_wasm_create_cs_owned_object": _mono_wasm_create_cs_owned_object, - "mono_wasm_fire_debugger_agent_message": _mono_wasm_fire_debugger_agent_message, - "mono_wasm_get_by_index": _mono_wasm_get_by_index, - "mono_wasm_get_global_object": _mono_wasm_get_global_object, - "mono_wasm_get_object_property": _mono_wasm_get_object_property, - "mono_wasm_invoke_js_blazor": _mono_wasm_invoke_js_blazor, - "mono_wasm_invoke_js_marshalled": _mono_wasm_invoke_js_marshalled, - "mono_wasm_invoke_js_unmarshalled": _mono_wasm_invoke_js_unmarshalled, - "mono_wasm_invoke_js_with_args": _mono_wasm_invoke_js_with_args, - "mono_wasm_release_cs_owned_object": _mono_wasm_release_cs_owned_object, - "mono_wasm_remove_event_listener": _mono_wasm_remove_event_listener, - "mono_wasm_set_by_index": _mono_wasm_set_by_index, - "mono_wasm_set_object_property": _mono_wasm_set_object_property, - "mono_wasm_typed_array_copy_from": _mono_wasm_typed_array_copy_from, - "mono_wasm_typed_array_copy_to": _mono_wasm_typed_array_copy_to, - "mono_wasm_typed_array_from": _mono_wasm_typed_array_from, - "mono_wasm_typed_array_to_array": _mono_wasm_typed_array_to_array, - "pthread_create": _pthread_create, - "pthread_join": _pthread_join, - "schedule_background_exec": _schedule_background_exec, - "setTempRet0": _setTempRet0, - "strftime": _strftime, - "time": _time, - "tzset": _tzset, - "utimes": _utimes -}; -var asm = createWasm(); -/** @type {function(...*):?} */ -var ___wasm_call_ctors = Module["___wasm_call_ctors"] = function() { - return (___wasm_call_ctors = Module["___wasm_call_ctors"] = Module["asm"]["__wasm_call_ctors"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _memset = Module["_memset"] = function() { - return (_memset = Module["_memset"] = Module["asm"]["memset"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var ___errno_location = Module["___errno_location"] = function() { - return (___errno_location = Module["___errno_location"] = Module["asm"]["__errno_location"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _malloc = Module["_malloc"] = function() { - return (_malloc = Module["_malloc"] = Module["asm"]["malloc"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _free = Module["_free"] = function() { - return (_free = Module["_free"] = Module["asm"]["free"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_register_root = Module["_mono_wasm_register_root"] = function() { - return (_mono_wasm_register_root = Module["_mono_wasm_register_root"] = Module["asm"]["mono_wasm_register_root"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_deregister_root = Module["_mono_wasm_deregister_root"] = function() { - return (_mono_wasm_deregister_root = Module["_mono_wasm_deregister_root"] = Module["asm"]["mono_wasm_deregister_root"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_add_assembly = Module["_mono_wasm_add_assembly"] = function() { - return (_mono_wasm_add_assembly = Module["_mono_wasm_add_assembly"] = Module["asm"]["mono_wasm_add_assembly"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_add_satellite_assembly = Module["_mono_wasm_add_satellite_assembly"] = function() { - return (_mono_wasm_add_satellite_assembly = Module["_mono_wasm_add_satellite_assembly"] = Module["asm"]["mono_wasm_add_satellite_assembly"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_setenv = Module["_mono_wasm_setenv"] = function() { - return (_mono_wasm_setenv = Module["_mono_wasm_setenv"] = Module["asm"]["mono_wasm_setenv"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_register_bundled_satellite_assemblies = Module["_mono_wasm_register_bundled_satellite_assemblies"] = function() { - return (_mono_wasm_register_bundled_satellite_assemblies = Module["_mono_wasm_register_bundled_satellite_assemblies"] = Module["asm"]["mono_wasm_register_bundled_satellite_assemblies"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_load_runtime = Module["_mono_wasm_load_runtime"] = function() { - return (_mono_wasm_load_runtime = Module["_mono_wasm_load_runtime"] = Module["asm"]["mono_wasm_load_runtime"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_load = Module["_mono_wasm_assembly_load"] = function() { - return (_mono_wasm_assembly_load = Module["_mono_wasm_assembly_load"] = Module["asm"]["mono_wasm_assembly_load"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_find_corlib_class = Module["_mono_wasm_find_corlib_class"] = function() { - return (_mono_wasm_find_corlib_class = Module["_mono_wasm_find_corlib_class"] = Module["asm"]["mono_wasm_find_corlib_class"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_find_class = Module["_mono_wasm_assembly_find_class"] = function() { - return (_mono_wasm_assembly_find_class = Module["_mono_wasm_assembly_find_class"] = Module["asm"]["mono_wasm_assembly_find_class"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_find_method = Module["_mono_wasm_assembly_find_method"] = function() { - return (_mono_wasm_assembly_find_method = Module["_mono_wasm_assembly_find_method"] = Module["asm"]["mono_wasm_assembly_find_method"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_get_delegate_invoke = Module["_mono_wasm_get_delegate_invoke"] = function() { - return (_mono_wasm_get_delegate_invoke = Module["_mono_wasm_get_delegate_invoke"] = Module["asm"]["mono_wasm_get_delegate_invoke"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_box_primitive = Module["_mono_wasm_box_primitive"] = function() { - return (_mono_wasm_box_primitive = Module["_mono_wasm_box_primitive"] = Module["asm"]["mono_wasm_box_primitive"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_invoke_method = Module["_mono_wasm_invoke_method"] = function() { - return (_mono_wasm_invoke_method = Module["_mono_wasm_invoke_method"] = Module["asm"]["mono_wasm_invoke_method"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_assembly_get_entry_point = Module["_mono_wasm_assembly_get_entry_point"] = function() { - return (_mono_wasm_assembly_get_entry_point = Module["_mono_wasm_assembly_get_entry_point"] = Module["asm"]["mono_wasm_assembly_get_entry_point"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_get_utf8 = Module["_mono_wasm_string_get_utf8"] = function() { - return (_mono_wasm_string_get_utf8 = Module["_mono_wasm_string_get_utf8"] = Module["asm"]["mono_wasm_string_get_utf8"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_convert = Module["_mono_wasm_string_convert"] = function() { - return (_mono_wasm_string_convert = Module["_mono_wasm_string_convert"] = Module["asm"]["mono_wasm_string_convert"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_from_js = Module["_mono_wasm_string_from_js"] = function() { - return (_mono_wasm_string_from_js = Module["_mono_wasm_string_from_js"] = Module["asm"]["mono_wasm_string_from_js"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_from_utf16 = Module["_mono_wasm_string_from_utf16"] = function() { - return (_mono_wasm_string_from_utf16 = Module["_mono_wasm_string_from_utf16"] = Module["asm"]["mono_wasm_string_from_utf16"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_get_obj_type = Module["_mono_wasm_get_obj_type"] = function() { - return (_mono_wasm_get_obj_type = Module["_mono_wasm_get_obj_type"] = Module["asm"]["mono_wasm_get_obj_type"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_try_unbox_primitive_and_get_type = Module["_mono_wasm_try_unbox_primitive_and_get_type"] = function() { - return (_mono_wasm_try_unbox_primitive_and_get_type = Module["_mono_wasm_try_unbox_primitive_and_get_type"] = Module["asm"]["mono_wasm_try_unbox_primitive_and_get_type"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_unbox_int = Module["_mono_unbox_int"] = function() { - return (_mono_unbox_int = Module["_mono_unbox_int"] = Module["asm"]["mono_unbox_int"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_array_length = Module["_mono_wasm_array_length"] = function() { - return (_mono_wasm_array_length = Module["_mono_wasm_array_length"] = Module["asm"]["mono_wasm_array_length"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_array_get = Module["_mono_wasm_array_get"] = function() { - return (_mono_wasm_array_get = Module["_mono_wasm_array_get"] = Module["asm"]["mono_wasm_array_get"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_obj_array_new = Module["_mono_wasm_obj_array_new"] = function() { - return (_mono_wasm_obj_array_new = Module["_mono_wasm_obj_array_new"] = Module["asm"]["mono_wasm_obj_array_new"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_obj_array_set = Module["_mono_wasm_obj_array_set"] = function() { - return (_mono_wasm_obj_array_set = Module["_mono_wasm_obj_array_set"] = Module["asm"]["mono_wasm_obj_array_set"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_array_new = Module["_mono_wasm_string_array_new"] = function() { - return (_mono_wasm_string_array_new = Module["_mono_wasm_string_array_new"] = Module["asm"]["mono_wasm_string_array_new"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_exec_regression = Module["_mono_wasm_exec_regression"] = function() { - return (_mono_wasm_exec_regression = Module["_mono_wasm_exec_regression"] = Module["asm"]["mono_wasm_exec_regression"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_exit = Module["_mono_wasm_exit"] = function() { - return (_mono_wasm_exit = Module["_mono_wasm_exit"] = Module["asm"]["mono_wasm_exit"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_set_main_args = Module["_mono_wasm_set_main_args"] = function() { - return (_mono_wasm_set_main_args = Module["_mono_wasm_set_main_args"] = Module["asm"]["mono_wasm_set_main_args"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_strdup = Module["_mono_wasm_strdup"] = function() { - return (_mono_wasm_strdup = Module["_mono_wasm_strdup"] = Module["asm"]["mono_wasm_strdup"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_parse_runtime_options = Module["_mono_wasm_parse_runtime_options"] = function() { - return (_mono_wasm_parse_runtime_options = Module["_mono_wasm_parse_runtime_options"] = Module["asm"]["mono_wasm_parse_runtime_options"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_enable_on_demand_gc = Module["_mono_wasm_enable_on_demand_gc"] = function() { - return (_mono_wasm_enable_on_demand_gc = Module["_mono_wasm_enable_on_demand_gc"] = Module["asm"]["mono_wasm_enable_on_demand_gc"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_intern_string = Module["_mono_wasm_intern_string"] = function() { - return (_mono_wasm_intern_string = Module["_mono_wasm_intern_string"] = Module["asm"]["mono_wasm_intern_string"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_string_get_data = Module["_mono_wasm_string_get_data"] = function() { - return (_mono_wasm_string_get_data = Module["_mono_wasm_string_get_data"] = Module["asm"]["mono_wasm_string_get_data"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_typed_array_new = Module["_mono_wasm_typed_array_new"] = function() { - return (_mono_wasm_typed_array_new = Module["_mono_wasm_typed_array_new"] = Module["asm"]["mono_wasm_typed_array_new"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_unbox_enum = Module["_mono_wasm_unbox_enum"] = function() { - return (_mono_wasm_unbox_enum = Module["_mono_wasm_unbox_enum"] = Module["asm"]["mono_wasm_unbox_enum"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_set_is_debugger_attached = Module["_mono_wasm_set_is_debugger_attached"] = function() { - return (_mono_wasm_set_is_debugger_attached = Module["_mono_wasm_set_is_debugger_attached"] = Module["asm"]["mono_wasm_set_is_debugger_attached"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_send_dbg_command_with_parms = Module["_mono_wasm_send_dbg_command_with_parms"] = function() { - return (_mono_wasm_send_dbg_command_with_parms = Module["_mono_wasm_send_dbg_command_with_parms"] = Module["asm"]["mono_wasm_send_dbg_command_with_parms"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_send_dbg_command = Module["_mono_wasm_send_dbg_command"] = function() { - return (_mono_wasm_send_dbg_command = Module["_mono_wasm_send_dbg_command"] = Module["asm"]["mono_wasm_send_dbg_command"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _putchar = Module["_putchar"] = function() { - return (_putchar = Module["_putchar"] = Module["asm"]["putchar"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_background_exec = Module["_mono_background_exec"] = function() { - return (_mono_background_exec = Module["_mono_background_exec"] = Module["asm"]["mono_background_exec"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _htons = Module["_htons"] = function() { - return (_htons = Module["_htons"] = Module["asm"]["htons"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_get_icudt_name = Module["_mono_wasm_get_icudt_name"] = function() { - return (_mono_wasm_get_icudt_name = Module["_mono_wasm_get_icudt_name"] = Module["asm"]["mono_wasm_get_icudt_name"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_wasm_load_icu_data = Module["_mono_wasm_load_icu_data"] = function() { - return (_mono_wasm_load_icu_data = Module["_mono_wasm_load_icu_data"] = Module["asm"]["mono_wasm_load_icu_data"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_print_method_from_ip = Module["_mono_print_method_from_ip"] = function() { - return (_mono_print_method_from_ip = Module["_mono_print_method_from_ip"] = Module["asm"]["mono_print_method_from_ip"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _mono_set_timeout_exec = Module["_mono_set_timeout_exec"] = function() { - return (_mono_set_timeout_exec = Module["_mono_set_timeout_exec"] = Module["asm"]["mono_set_timeout_exec"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _ntohs = Module["_ntohs"] = function() { - return (_ntohs = Module["_ntohs"] = Module["asm"]["ntohs"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _emscripten_main_thread_process_queued_calls = Module["_emscripten_main_thread_process_queued_calls"] = function() { - return (_emscripten_main_thread_process_queued_calls = Module["_emscripten_main_thread_process_queued_calls"] = Module["asm"]["emscripten_main_thread_process_queued_calls"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _htonl = Module["_htonl"] = function() { - return (_htonl = Module["_htonl"] = Module["asm"]["htonl"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var __get_tzname = Module["__get_tzname"] = function() { - return (__get_tzname = Module["__get_tzname"] = Module["asm"]["_get_tzname"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var __get_daylight = Module["__get_daylight"] = function() { - return (__get_daylight = Module["__get_daylight"] = Module["asm"]["_get_daylight"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var __get_timezone = Module["__get_timezone"] = function() { - return (__get_timezone = Module["__get_timezone"] = Module["asm"]["_get_timezone"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var stackSave = Module["stackSave"] = function() { - return (stackSave = Module["stackSave"] = Module["asm"]["stackSave"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var stackRestore = Module["stackRestore"] = function() { - return (stackRestore = Module["stackRestore"] = Module["asm"]["stackRestore"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var stackAlloc = Module["stackAlloc"] = function() { - return (stackAlloc = Module["stackAlloc"] = Module["asm"]["stackAlloc"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _setThrew = Module["_setThrew"] = function() { - return (_setThrew = Module["_setThrew"] = Module["asm"]["setThrew"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var ___cxa_can_catch = Module["___cxa_can_catch"] = function() { - return (___cxa_can_catch = Module["___cxa_can_catch"] = Module["asm"]["__cxa_can_catch"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var ___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = function() { - return (___cxa_is_pointer_type = Module["___cxa_is_pointer_type"] = Module["asm"]["__cxa_is_pointer_type"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var _memalign = Module["_memalign"] = function() { - return (_memalign = Module["_memalign"] = Module["asm"]["memalign"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiij = Module["dynCall_iiiij"] = function() { - return (dynCall_iiiij = Module["dynCall_iiiij"] = Module["asm"]["dynCall_iiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vijii = Module["dynCall_vijii"] = function() { - return (dynCall_vijii = Module["dynCall_vijii"] = Module["asm"]["dynCall_vijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijj = Module["dynCall_iijj"] = function() { - return (dynCall_iijj = Module["dynCall_iijj"] = Module["asm"]["dynCall_iijj"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iij = Module["dynCall_iij"] = function() { - return (dynCall_iij = Module["dynCall_iij"] = Module["asm"]["dynCall_iij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijii = Module["dynCall_iijii"] = function() { - return (dynCall_iijii = Module["dynCall_iijii"] = Module["asm"]["dynCall_iijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiji = Module["dynCall_iiji"] = function() { - return (dynCall_iiji = Module["dynCall_iiji"] = Module["asm"]["dynCall_iiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiiiij = Module["dynCall_iiiiiij"] = function() { - return (dynCall_iiiiiij = Module["dynCall_iiiiiij"] = Module["asm"]["dynCall_iiiiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiij = Module["dynCall_iiij"] = function() { - return (dynCall_iiij = Module["dynCall_iiij"] = Module["asm"]["dynCall_iiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jii = Module["dynCall_jii"] = function() { - return (dynCall_jii = Module["dynCall_jii"] = Module["asm"]["dynCall_jii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_ji = Module["dynCall_ji"] = function() { - return (dynCall_ji = Module["dynCall_ji"] = Module["asm"]["dynCall_ji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vij = Module["dynCall_vij"] = function() { - return (dynCall_vij = Module["dynCall_vij"] = Module["asm"]["dynCall_vij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiiijii = Module["dynCall_iiiiijii"] = function() { - return (dynCall_iiiiijii = Module["dynCall_iiiiijii"] = Module["asm"]["dynCall_iiiiijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_j = Module["dynCall_j"] = function() { - return (dynCall_j = Module["dynCall_j"] = Module["asm"]["dynCall_j"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jj = Module["dynCall_jj"] = function() { - return (dynCall_jj = Module["dynCall_jj"] = Module["asm"]["dynCall_jj"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiij = Module["dynCall_jiij"] = function() { - return (dynCall_jiij = Module["dynCall_jiij"] = Module["asm"]["dynCall_jiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiiji = Module["dynCall_iiiiji"] = function() { - return (dynCall_iiiiji = Module["dynCall_iiiiji"] = Module["asm"]["dynCall_iiiiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiiijii = Module["dynCall_iiiijii"] = function() { - return (dynCall_iiiijii = Module["dynCall_iiiijii"] = Module["asm"]["dynCall_iiiijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_ij = Module["dynCall_ij"] = function() { - return (dynCall_ij = Module["dynCall_ij"] = Module["asm"]["dynCall_ij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viiji = Module["dynCall_viiji"] = function() { - return (dynCall_viiji = Module["dynCall_viiji"] = Module["asm"]["dynCall_viiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viijii = Module["dynCall_viijii"] = function() { - return (dynCall_viijii = Module["dynCall_viijii"] = Module["asm"]["dynCall_viijii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiiiiiiiii = Module["dynCall_jiiiiiiiii"] = function() { - return (dynCall_jiiiiiiiii = Module["dynCall_jiiiiiiiii"] = Module["asm"]["dynCall_jiiiiiiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vj = Module["dynCall_vj"] = function() { - return (dynCall_vj = Module["dynCall_vj"] = Module["asm"]["dynCall_vj"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iji = Module["dynCall_iji"] = function() { - return (dynCall_iji = Module["dynCall_iji"] = Module["asm"]["dynCall_iji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iiijiiiii = Module["dynCall_iiijiiiii"] = function() { - return (dynCall_iiijiiiii = Module["dynCall_iiijiiiii"] = Module["asm"]["dynCall_iiijiiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijjiii = Module["dynCall_iijjiii"] = function() { - return (dynCall_iijjiii = Module["dynCall_iijjiii"] = Module["asm"]["dynCall_iijjiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vijjjii = Module["dynCall_vijjjii"] = function() { - return (dynCall_vijjjii = Module["dynCall_vijjjii"] = Module["asm"]["dynCall_vijjjii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijiii = Module["dynCall_iijiii"] = function() { - return (dynCall_iijiii = Module["dynCall_iijiii"] = Module["asm"]["dynCall_iijiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_vijiiii = Module["dynCall_vijiiii"] = function() { - return (dynCall_vijiiii = Module["dynCall_vijiiii"] = Module["asm"]["dynCall_vijiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jij = Module["dynCall_jij"] = function() { - return (dynCall_jij = Module["dynCall_jij"] = Module["asm"]["dynCall_jij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijiiii = Module["dynCall_iijiiii"] = function() { - return (dynCall_iijiiii = Module["dynCall_iijiiii"] = Module["asm"]["dynCall_iijiiii"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jd = Module["dynCall_jd"] = function() { - return (dynCall_jd = Module["dynCall_jd"] = Module["asm"]["dynCall_jd"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jf = Module["dynCall_jf"] = function() { - return (dynCall_jf = Module["dynCall_jf"] = Module["asm"]["dynCall_jf"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiji = Module["dynCall_jiji"] = function() { - return (dynCall_jiji = Module["dynCall_jiji"] = Module["asm"]["dynCall_jiji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viiiij = Module["dynCall_viiiij"] = function() { - return (dynCall_viiiij = Module["dynCall_viiiij"] = Module["asm"]["dynCall_viiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_viij = Module["dynCall_viij"] = function() { - return (dynCall_viij = Module["dynCall_viij"] = Module["asm"]["dynCall_viij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijji = Module["dynCall_iijji"] = function() { - return (dynCall_iijji = Module["dynCall_iijji"] = Module["asm"]["dynCall_iijji"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_iijiiij = Module["dynCall_iijiiij"] = function() { - return (dynCall_iijiiij = Module["dynCall_iijiiij"] = Module["asm"]["dynCall_iijiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jiiij = Module["dynCall_jiiij"] = function() { - return (dynCall_jiiij = Module["dynCall_jiiij"] = Module["asm"]["dynCall_jiiij"]).apply(null, arguments); -}; - -/** @type {function(...*):?} */ -var dynCall_jijj = Module["dynCall_jijj"] = function() { - return (dynCall_jijj = Module["dynCall_jijj"] = Module["asm"]["dynCall_jijj"]).apply(null, arguments); -}; - - -function invoke_vi(index,a1) { - var sp = stackSave(); - try { - wasmTable.get(index)(a1); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_ii(index,a1) { - var sp = stackSave(); - try { - return wasmTable.get(index)(a1); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_iii(index,a1,a2) { - var sp = stackSave(); - try { - return wasmTable.get(index)(a1,a2); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_vii(index,a1,a2) { - var sp = stackSave(); - try { - wasmTable.get(index)(a1,a2); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_i(index) { - var sp = stackSave(); - try { - return wasmTable.get(index)(); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_v(index) { - var sp = stackSave(); - try { - wasmTable.get(index)(); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_iiii(index,a1,a2,a3) { - var sp = stackSave(); - try { - return wasmTable.get(index)(a1,a2,a3); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - -function invoke_viii(index,a1,a2,a3) { - var sp = stackSave(); - try { - wasmTable.get(index)(a1,a2,a3); - } catch(e) { - stackRestore(sp); - if (e !== e+0 && e !== 'longjmp') throw e; - _setThrew(1, 0); - } -} - - - - -// === Auto-generated postamble setup entry stuff === - -Module["ccall"] = ccall; -Module["cwrap"] = cwrap; -Module["setValue"] = setValue; -Module["getValue"] = getValue; -Module["UTF8ArrayToString"] = UTF8ArrayToString; -Module["UTF8ToString"] = UTF8ToString; -Module["addRunDependency"] = addRunDependency; -Module["removeRunDependency"] = removeRunDependency; -Module["FS_createPath"] = FS.createPath; -Module["FS_createDataFile"] = FS.createDataFile; -Module["FS_createPreloadedFile"] = FS.createPreloadedFile; -Module["FS_createLazyFile"] = FS.createLazyFile; -Module["FS_createDevice"] = FS.createDevice; -Module["FS_unlink"] = FS.unlink; -Module["addFunction"] = addFunction; - -var calledRun; - -/** - * @constructor - * @this {ExitStatus} - */ -function ExitStatus(status) { - this.name = "ExitStatus"; - this.message = "Program terminated with exit(" + status + ")"; - this.status = status; -} - -var calledMain = false; - -dependenciesFulfilled = function runCaller() { - // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) - if (!calledRun) run(); - if (!calledRun) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled -}; - -/** @type {function(Array=)} */ -function run(args) { - args = args || arguments_; - - if (runDependencies > 0) { - return; - } - - preRun(); - - // a preRun added a dependency, run will be called later - if (runDependencies > 0) { - return; - } - - function doRun() { - // run may have just been called through dependencies being fulfilled just in this very frame, - // or while the async setStatus time below was happening - if (calledRun) return; - calledRun = true; - Module['calledRun'] = true; - - if (ABORT) return; - - initRuntime(); - - if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); - - postRun(); - } - - if (Module['setStatus']) { - Module['setStatus']('Running...'); - setTimeout(function() { - setTimeout(function() { - Module['setStatus'](''); - }, 1); - doRun(); - }, 1); - } else - { - doRun(); - } -} -Module['run'] = run; - -/** @param {boolean|number=} implicit */ -function exit(status, implicit) { - EXITSTATUS = status; - - // if this is just main exit-ing implicitly, and the status is 0, then we - // don't need to do anything here and can just leave. if the status is - // non-zero, though, then we need to report it. - // (we may have warned about this earlier, if a situation justifies doing so) - if (implicit && keepRuntimeAlive() && status === 0) { - return; - } - - if (keepRuntimeAlive()) { - } else { - - exitRuntime(); - - if (Module['onExit']) Module['onExit'](status); - - ABORT = true; - } - - quit_(status, new ExitStatus(status)); -} - -if (Module['preInit']) { - if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; - while (Module['preInit'].length > 0) { - Module['preInit'].pop()(); - } -} - -run(); - - - - - diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.wasm b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.wasm deleted file mode 100755 index fd60ede6..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.wasm and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/driver.o b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/driver.o deleted file mode 100644 index ca8ca2b7..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/driver.o and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-compile.rsp b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-compile.rsp deleted file mode 100644 index 8f00e25f..00000000 --- a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-compile.rsp +++ /dev/null @@ -1,12 +0,0 @@ --O1 --s DISABLE_EXCEPTION_CATCHING=0 --g --v --DLINK_ICALLS=1 --DCORE_BINDINGS --DGEN_PINVOKE=1 --emit-llvm -"-I/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build" -"-I/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/include/mono-2.0" -"-I/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/include/wasm" --g diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-link.rsp b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-link.rsp deleted file mode 100644 index c993c4ab..00000000 --- a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/emcc-link.rsp +++ /dev/null @@ -1,27 +0,0 @@ --O1 --s DISABLE_EXCEPTION_CATCHING=0 --g --v --s TOTAL_MEMORY=536870912 --s ERROR_ON_UNDEFINED_SYMBOLS=0 ---js-library "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/src/binding_support.js" ---js-library "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/src/dotnet_support.js" ---js-library "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/src/library_mono.js" ---js-library "/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/src/pal_random.js" -"/Users/normrasmussen/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836/buildTransitive/net6.0/../../runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a" -"/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke.o" -"/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/driver.o" -"/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/corebindings.o" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libicui18n.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libicuuc.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmono-component-debugger-static.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmono-component-diagnostics_tracing-stub-static.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmono-component-hot_reload-static.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmono-ee-interp.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmono-icall-table.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmono-ilgen.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmono-profiler-aot.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libmonosgen-2.0.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libSystem.IO.Compression.Native.a" -"/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.browser-wasm/6.0.6/runtimes/browser-wasm/native/libSystem.Native.a" --o "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/wasm/for-build/dotnet.js" diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/icall-table.h b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/icall-table.h deleted file mode 100644 index b5ff743c..00000000 --- a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/icall-table.h +++ /dev/null @@ -1,1673 +0,0 @@ -#define ICALL_TABLE_corlib 1 - -static int corlib_icall_indexes [] = { -228, -235, -237, -239, -258, -265, -266, -267, -268, -269, -270, -271, -272, -273, -276, -277, -462, -463, -465, -498, -499, -500, -520, -521, -522, -523, -524, -615, -616, -617, -618, -619, -620, -621, -624, -716, -717, -718, -719, -720, -721, -722, -723, -726, -736, -737, -739, -741, -759, -762, -767, -775, -776, -777, -778, -779, -780, -781, -782, -783, -784, -785, -786, -787, -788, -789, -790, -791, -792, -793, -795, -796, -797, -798, -799, -800, -801, -802, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -916, -917, -918, -919, -920, -921, -922, -923, -1010, -1011, -1016, -1082, -1083, -1092, -1095, -1097, -1103, -1104, -1106, -1107, -1111, -1113, -1115, -1116, -1117, -1118, -1120, -1121, -1122, -1125, -1126, -1129, -1130, -1131, -1209, -1211, -1213, -1221, -1222, -1223, -1224, -1225, -1229, -1230, -1231, -1232, -1233, -1234, -1236, -1237, -1238, -1240, -1241, -1243, -1248, -1249, -1250, -1524, -1753, -1757, -1785, -1786, -11659, -11660, -11662, -11663, -11664, -11665, -11666, -11667, -11668, -11670, -11671, -11672, -11674, -11675, -11677, -11678, -11679, -11681, -11703, -11705, -11714, -11715, -11717, -11719, -11721, -11723, -11725, -11783, -11795, -11796, -11797, -11799, -11800, -11801, -11802, -11803, -11805, -11807, -11808, -11809, -14172, -14176, -14180, -14181, -14182, -14183, -18287, -18288, -18289, -18290, -18311, -18312, -18313, -18314, -18315, -18316, -18319, -18321, -18322, -18323, -18324, -18537, -18538, -18539, -18540, -19045, -19048, -19063, -19064, -19065, -19066, -19067, -19068, -19692, -19693, -19694, -19699, -19700, -19701, -19780, -19781, -19782, -19827, -19833, -19840, -19850, -19854, -19910, -19954, -19966, -19967, -19968, -19991, -19992, -19993, -19994, -19995, -19996, -19997, -19998, -19999, -20008, -20024, -20046, -20047, -20058, -20060, -20067, -20068, -20071, -20073, -20078, -20079, -20095, -20096, -20103, -20105, -20114, -20117, -20120, -20121, -20122, -20133, -20145, -20151, -20152, -20153, -20155, -20156, -20167, -20187, -20226, -20227, -20228, -20229, -20230, -20231, -20232, -20233, -20234, -20235, -20236, -20237, -20254, -20260, -20265, -20266, -20267, -20304, -20305, -21099, -21100, -21107, -21108, -21208, -21322, -21382, -21715, -21716, -21752, -21753, -21754, -21761, -21853, -21854, -21909, -22111, -22112, -23855, -23857, -23859, -26142, -26161, -26168, -26169, -26171, -}; -void ves_icall_System_ArgIterator_Setup (int,int,int); -void ves_icall_System_ArgIterator_IntGetNextArg (int,int); -void ves_icall_System_ArgIterator_IntGetNextArgWithType (int,int,int); -int ves_icall_System_ArgIterator_IntGetNextArgType (int); -void ves_icall_System_Array_InternalCreate (int,int,int,int,int); -int ves_icall_System_Array_GetCorElementTypeOfElementType_raw (int,int); -int ves_icall_System_Array_IsValueOfElementType_raw (int,int,int); -int ves_icall_System_Array_CanChangePrimitive (int,int,int); -int ves_icall_System_Array_FastCopy_raw (int,int,int,int,int,int); -int ves_icall_System_Array_GetLength_raw (int,int,int); -int ves_icall_System_Array_GetLowerBound_raw (int,int,int); -void ves_icall_System_Array_GetGenericValue_icall (int,int,int); -int ves_icall_System_Array_GetValueImpl_raw (int,int,int); -void ves_icall_System_Array_SetGenericValue_icall (int,int,int); -void ves_icall_System_Array_SetValueImpl_raw (int,int,int,int); -void ves_icall_System_Array_SetValueRelaxedImpl_raw (int,int,int,int); -void ves_icall_System_Runtime_RuntimeImports_Memmove (int,int,int); -void ves_icall_System_Buffer_BulkMoveWithWriteBarrier (int,int,int,int); -void ves_icall_System_Runtime_RuntimeImports_ZeroMemory (int,int); -int ves_icall_System_Delegate_AllocDelegateLike_internal_raw (int,int); -int ves_icall_System_Delegate_CreateDelegate_internal_raw (int,int,int,int,int); -int ves_icall_System_Delegate_GetVirtualMethod_internal_raw (int,int); -int ves_icall_System_Enum_GetEnumValuesAndNames_raw (int,int,int,int); -int ves_icall_System_Enum_ToObject_raw (int,int64_t,int); -int ves_icall_System_Enum_InternalGetCorElementType_raw (int,int); -int ves_icall_System_Enum_get_underlying_type_raw (int,int); -int ves_icall_System_Enum_InternalHasFlag_raw (int,int,int); -int mono_environment_exitcode_get (); -void mono_environment_exitcode_set (int); -int ves_icall_System_Environment_get_ProcessorCount (); -int ves_icall_System_Environment_get_TickCount (); -int64_t ves_icall_System_Environment_get_TickCount64 (); -void ves_icall_System_Environment_Exit (int); -int ves_icall_System_Environment_GetCommandLineArgs_raw (int); -void ves_icall_System_Environment_FailFast_raw (int,int,int,int); -int ves_icall_System_GC_GetCollectionCount (int); -int ves_icall_System_GC_GetMaxGeneration (); -void ves_icall_System_GC_InternalCollect (int); -void ves_icall_System_GC_RecordPressure (int64_t); -void ves_icall_System_GC_register_ephemeron_array_raw (int,int); -int ves_icall_System_GC_get_ephemeron_tombstone_raw (int); -int64_t ves_icall_System_GC_GetAllocatedBytesForCurrentThread (); -int64_t ves_icall_System_GC_GetTotalAllocatedBytes_raw (int,int); -int ves_icall_System_GC_GetGeneration_raw (int,int); -void ves_icall_System_GC_WaitForPendingFinalizers (); -void ves_icall_System_GC_SuppressFinalize_raw (int,int); -void ves_icall_System_GC_ReRegisterForFinalize_raw (int,int); -int64_t ves_icall_System_GC_GetTotalMemory (int); -void ves_icall_System_GC_GetGCMemoryInfo (int,int,int,int,int,int); -int ves_icall_System_GC_AllocPinnedArray_raw (int,int,int); -int ves_icall_System_Object_MemberwiseClone_raw (int,int); -double ves_icall_System_Math_Abs_double (double); -float ves_icall_System_Math_Abs_single (float); -double ves_icall_System_Math_Acos (double); -double ves_icall_System_Math_Acosh (double); -double ves_icall_System_Math_Asin (double); -double ves_icall_System_Math_Asinh (double); -double ves_icall_System_Math_Atan (double); -double ves_icall_System_Math_Atan2 (double,double); -double ves_icall_System_Math_Atanh (double); -double ves_icall_System_Math_Cbrt (double); -double ves_icall_System_Math_Ceiling (double); -double ves_icall_System_Math_Cos (double); -double ves_icall_System_Math_Cosh (double); -double ves_icall_System_Math_Exp (double); -double ves_icall_System_Math_Floor (double); -double ves_icall_System_Math_Log (double); -double ves_icall_System_Math_Log10 (double); -double ves_icall_System_Math_Pow (double,double); -double ves_icall_System_Math_Sin (double); -double ves_icall_System_Math_Sinh (double); -double ves_icall_System_Math_Sqrt (double); -double ves_icall_System_Math_Tan (double); -double ves_icall_System_Math_Tanh (double); -double ves_icall_System_Math_FusedMultiplyAdd (double,double,double); -int ves_icall_System_Math_ILogB (double); -double ves_icall_System_Math_Log2 (double); -double ves_icall_System_Math_ModF (double,int); -float ves_icall_System_MathF_Acos (float); -float ves_icall_System_MathF_Acosh (float); -float ves_icall_System_MathF_Asin (float); -float ves_icall_System_MathF_Asinh (float); -float ves_icall_System_MathF_Atan (float); -float ves_icall_System_MathF_Atan2 (float,float); -float ves_icall_System_MathF_Atanh (float); -float ves_icall_System_MathF_Cbrt (float); -float ves_icall_System_MathF_Ceiling (float); -float ves_icall_System_MathF_Cos (float); -float ves_icall_System_MathF_Cosh (float); -float ves_icall_System_MathF_Exp (float); -float ves_icall_System_MathF_Floor (float); -float ves_icall_System_MathF_Log (float); -float ves_icall_System_MathF_Log10 (float); -float ves_icall_System_MathF_Pow (float,float); -float ves_icall_System_MathF_Sin (float); -float ves_icall_System_MathF_Sinh (float); -float ves_icall_System_MathF_Sqrt (float); -float ves_icall_System_MathF_Tan (float); -float ves_icall_System_MathF_Tanh (float); -float ves_icall_System_MathF_FusedMultiplyAdd (float,float,float); -int ves_icall_System_MathF_ILogB (float); -float ves_icall_System_MathF_Log2 (float); -float ves_icall_System_MathF_ModF (float,int); -int ves_icall_System_RuntimeFieldHandle_GetValueDirect_raw (int,int,int,int,int); -void ves_icall_System_RuntimeFieldHandle_SetValueDirect_raw (int,int,int,int,int,int); -int ves_icall_RuntimeMethodHandle_GetFunctionPointer_raw (int,int); -int ves_icall_RuntimeType_GetCorrespondingInflatedMethod_raw (int,int,int); -int ves_icall_RuntimeType_GetCorrespondingInflatedMethod_raw (int,int,int); -int ves_icall_RuntimeType_make_array_type_raw (int,int,int); -int ves_icall_RuntimeType_make_byref_type_raw (int,int); -int ves_icall_RuntimeType_MakePointerType_raw (int,int); -int ves_icall_RuntimeType_MakeGenericType_raw (int,int,int); -int ves_icall_RuntimeType_GetMethodsByName_native_raw (int,int,int,int,int); -int ves_icall_RuntimeType_GetPropertiesByName_native_raw (int,int,int,int,int); -int ves_icall_RuntimeType_GetConstructors_native_raw (int,int,int); -void ves_icall_RuntimeType_GetInterfaceMapData_raw (int,int,int,int,int); -void ves_icall_RuntimeType_GetPacking_raw (int,int,int,int); -int ves_icall_System_Activator_CreateInstanceInternal_raw (int,int); -int ves_icall_RuntimeType_get_DeclaringMethod_raw (int,int); -int ves_icall_System_RuntimeType_getFullName_raw (int,int,int,int); -int ves_icall_RuntimeType_GetGenericArguments_raw (int,int,int); -int ves_icall_RuntimeType_GetGenericParameterPosition_raw (int,int); -int ves_icall_RuntimeType_GetEvents_native_raw (int,int,int,int); -int ves_icall_RuntimeType_GetFields_native_raw (int,int,int,int,int); -int ves_icall_RuntimeType_GetInterfaces_raw (int,int); -int ves_icall_RuntimeType_GetNestedTypes_native_raw (int,int,int,int,int); -int ves_icall_RuntimeType_get_DeclaringType_raw (int,int); -int ves_icall_RuntimeType_get_Name_raw (int,int); -int ves_icall_RuntimeType_get_Namespace_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetAttributes_raw (int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetGenericTypeDefinition_impl_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetCorElementType_raw (int,int); -int ves_icall_RuntimeTypeHandle_HasInstantiation_raw (int,int); -int ves_icall_RuntimeTypeHandle_IsComObject_raw (int,int); -int ves_icall_RuntimeTypeHandle_IsInstanceOfType_raw (int,int,int); -int ves_icall_RuntimeTypeHandle_HasReferences_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetArrayRank_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetAssembly_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetElementType_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetModule_raw (int,int); -int ves_icall_RuntimeTypeHandle_IsGenericVariable_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetBaseType_raw (int,int); -int ves_icall_RuntimeTypeHandle_type_is_assignable_from_raw (int,int,int); -int ves_icall_RuntimeTypeHandle_IsGenericTypeDefinition_raw (int,int); -int ves_icall_RuntimeTypeHandle_GetGenericParameterInfo_raw (int,int); -int ves_icall_RuntimeTypeHandle_is_subclass_of (int,int); -int ves_icall_RuntimeTypeHandle_IsByRefLike_raw (int,int); -int ves_icall_System_RuntimeTypeHandle_internal_from_name_raw (int,int,int,int,int,int); -int ves_icall_System_String_FastAllocateString_raw (int,int); -int ves_icall_System_String_InternalIsInterned_raw (int,int); -int ves_icall_System_String_InternalIntern_raw (int,int); -int ves_icall_System_Type_internal_from_handle_raw (int,int); -void ves_icall_System_TypedReference_InternalMakeTypedReference_raw (int,int,int,int,int); -int ves_icall_System_TypedReference_ToObject_raw (int,int); -int ves_icall_System_ValueType_InternalGetHashCode_raw (int,int,int); -int ves_icall_System_ValueType_Equals_raw (int,int,int,int); -int ves_icall_System_Threading_Interlocked_CompareExchange_Int (int,int,int); -void ves_icall_System_Threading_Interlocked_CompareExchange_Object (int,int,int,int); -float ves_icall_System_Threading_Interlocked_CompareExchange_Single (int,float,float); -int ves_icall_System_Threading_Interlocked_Decrement_Int (int); -int64_t ves_icall_System_Threading_Interlocked_Decrement_Long (int); -int ves_icall_System_Threading_Interlocked_Increment_Int (int); -int64_t ves_icall_System_Threading_Interlocked_Increment_Long (int); -int ves_icall_System_Threading_Interlocked_Exchange_Int (int,int); -void ves_icall_System_Threading_Interlocked_Exchange_Object (int,int,int); -float ves_icall_System_Threading_Interlocked_Exchange_Single (int,float); -int64_t ves_icall_System_Threading_Interlocked_CompareExchange_Long (int,int64_t,int64_t); -double ves_icall_System_Threading_Interlocked_CompareExchange_Double (int,double,double); -int64_t ves_icall_System_Threading_Interlocked_Exchange_Long (int,int64_t); -double ves_icall_System_Threading_Interlocked_Exchange_Double (int,double); -int64_t ves_icall_System_Threading_Interlocked_Read_Long (int); -int ves_icall_System_Threading_Interlocked_Add_Int (int,int); -int64_t ves_icall_System_Threading_Interlocked_Add_Long (int,int64_t); -void ves_icall_System_Threading_Interlocked_MemoryBarrierProcessWide (); -void ves_icall_System_Threading_Monitor_Monitor_Enter_raw (int,int); -void mono_monitor_exit_icall_raw (int,int); -int ves_icall_System_Threading_Monitor_Monitor_test_synchronised_raw (int,int); -void ves_icall_System_Threading_Monitor_Monitor_pulse_raw (int,int); -void ves_icall_System_Threading_Monitor_Monitor_pulse_all_raw (int,int); -int ves_icall_System_Threading_Monitor_Monitor_wait_raw (int,int,int,int); -void ves_icall_System_Threading_Monitor_Monitor_try_enter_with_atomic_var_raw (int,int,int,int,int); -int ves_icall_System_Threading_Monitor_Monitor_test_owner_raw (int,int); -int64_t ves_icall_System_Threading_Monitor_Monitor_LockContentionCount (); -int ves_icall_System_Threading_Thread_GetCurrentProcessorNumber_raw (int); -uint64_t ves_icall_System_Threading_Thread_GetCurrentOSThreadId_raw (int); -void ves_icall_System_Threading_Thread_InitInternal_raw (int,int); -int ves_icall_System_Threading_Thread_GetCurrentThread (); -void ves_icall_System_Threading_InternalThread_Thread_free_internal_raw (int,int); -int ves_icall_System_Threading_Thread_GetState_raw (int,int); -void ves_icall_System_Threading_Thread_SetState_raw (int,int,int); -void ves_icall_System_Threading_Thread_ClrState_raw (int,int,int); -void ves_icall_System_Threading_Thread_SetName_icall_raw (int,int,int,int); -int ves_icall_System_Threading_Thread_YieldInternal (); -int ves_icall_System_Threading_Thread_Join_internal_raw (int,int,int); -void ves_icall_System_Threading_Thread_Interrupt_internal_raw (int,int); -void ves_icall_System_Threading_Thread_SetPriority_raw (int,int,int); -void ves_icall_System_Runtime_Loader_AssemblyLoadContext_PrepareForAssemblyLoadContextRelease_raw (int,int,int); -int ves_icall_System_Runtime_Loader_AssemblyLoadContext_GetLoadContextForAssembly_raw (int,int); -int ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalLoadFile_raw (int,int,int,int); -int ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalInitializeNativeALC_raw (int,int,int,int,int); -int ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalLoadFromStream_raw (int,int,int,int,int,int); -int ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalGetLoadedAssemblies_raw (int); -int ves_icall_System_GCHandle_InternalAlloc_raw (int,int,int); -void ves_icall_System_GCHandle_InternalFree_raw (int,int); -int ves_icall_System_GCHandle_InternalGet_raw (int,int); -void ves_icall_System_GCHandle_InternalSet_raw (int,int,int); -int ves_icall_System_Runtime_InteropServices_Marshal_GetLastPInvokeError (); -void ves_icall_System_Runtime_InteropServices_Marshal_SetLastPInvokeError (int); -void ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure_raw (int,int,int); -int ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf_raw (int,int,int); -void ves_icall_System_Runtime_InteropServices_Marshal_StructureToPtr_raw (int,int,int,int); -int ves_icall_System_Runtime_InteropServices_Marshal_IsPinnableType_raw (int,int); -void ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructureInternal_raw (int,int,int,int); -int ves_icall_System_Runtime_InteropServices_Marshal_GetDelegateForFunctionPointerInternal_raw (int,int,int); -int ves_icall_System_Runtime_InteropServices_Marshal_GetFunctionPointerForDelegateInternal_raw (int,int); -void ves_icall_System_Runtime_InteropServices_Marshal_Prelink_raw (int,int); -int ves_icall_System_Runtime_InteropServices_Marshal_SizeOfHelper_raw (int,int,int); -int ves_icall_System_Runtime_InteropServices_NativeLibrary_LoadFromPath_raw (int,int,int); -int ves_icall_System_Runtime_InteropServices_NativeLibrary_LoadByName_raw (int,int,int,int,int,int); -void ves_icall_System_Runtime_InteropServices_NativeLibrary_FreeLib_raw (int,int); -int ves_icall_System_Runtime_InteropServices_NativeLibrary_GetSymbol_raw (int,int,int,int); -int mono_object_hash_icall_raw (int,int); -int ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetObjectValue_raw (int,int); -void ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_PrepareMethod_raw (int,int,int,int); -int ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetUninitializedObjectInternal_raw (int,int); -void ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray_raw (int,int,int); -void ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor_raw (int,int); -void ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor_raw (int,int); -int ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_SufficientExecutionStack (); -int ves_icall_System_Reflection_Assembly_GetExecutingAssembly_raw (int,int); -int ves_icall_System_Reflection_Assembly_GetCallingAssembly_raw (int); -int ves_icall_System_Reflection_Assembly_GetEntryAssembly_raw (int); -int ves_icall_System_Reflection_Assembly_InternalLoad_raw (int,int,int,int); -int ves_icall_System_Reflection_Assembly_InternalGetType_raw (int,int,int,int,int,int); -void ves_icall_System_Reflection_Assembly_InternalGetAssemblyName_raw (int,int,int,int); -void mono_digest_get_public_token (int,int,int); -int ves_icall_System_Reflection_AssemblyName_GetNativeName (int); -int ves_icall_System_Reflection_AssemblyName_ParseAssemblyName (int,int,int,int); -int ves_icall_MonoCustomAttrs_GetCustomAttributesInternal_raw (int,int,int,int); -int ves_icall_MonoCustomAttrs_GetCustomAttributesDataInternal_raw (int,int); -int ves_icall_MonoCustomAttrs_IsDefinedInternal_raw (int,int,int); -int ves_icall_System_Reflection_FieldInfo_internal_from_handle_type_raw (int,int,int); -int ves_icall_System_Reflection_FieldInfo_get_marshal_info_raw (int,int); -int ves_icall_GetCurrentMethod_raw (int); -int ves_icall_System_Reflection_RuntimeAssembly_get_EntryPoint_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceNames_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_GetExportedTypes_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_GetTopLevelForwardedTypes_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_get_location_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_get_code_base_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_get_fullname_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_InternalImageRuntimeVersion_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceInfoInternal_raw (int,int,int,int); -int ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceInternal_raw (int,int,int,int,int); -int ves_icall_System_Reflection_Assembly_GetManifestModuleInternal_raw (int,int); -int ves_icall_System_Reflection_RuntimeAssembly_GetModulesInternal_raw (int,int); -int ves_icall_System_Reflection_Assembly_InternalGetReferencedAssemblies_raw (int,int); -void ves_icall_System_Reflection_RuntimeCustomAttributeData_ResolveArgumentsInternal_raw (int,int,int,int,int,int,int); -void ves_icall_RuntimeEventInfo_get_event_info_raw (int,int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_System_Reflection_EventInfo_internal_from_handle_type_raw (int,int,int); -int ves_icall_RuntimeFieldInfo_ResolveType_raw (int,int); -int ves_icall_RuntimeFieldInfo_GetParentType_raw (int,int,int); -int ves_icall_RuntimeFieldInfo_GetFieldOffset_raw (int,int); -int ves_icall_RuntimeFieldInfo_GetValueInternal_raw (int,int,int); -void ves_icall_RuntimeFieldInfo_SetValueInternal_raw (int,int,int,int); -int ves_icall_RuntimeFieldInfo_GetRawConstantValue_raw (int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_System_Reflection_FieldInfo_GetTypeModifiers_raw (int,int,int); -void ves_icall_get_method_info_raw (int,int,int); -int ves_icall_get_method_attributes (int); -int ves_icall_System_Reflection_MonoMethodInfo_get_parameter_info_raw (int,int,int); -int ves_icall_System_MonoMethodInfo_get_retval_marshal_raw (int,int); -int ves_icall_System_Reflection_RuntimeMethodInfo_GetMethodBodyInternal_raw (int,int); -int ves_icall_System_Reflection_RuntimeMethodInfo_GetMethodFromHandleInternalType_native_raw (int,int,int,int); -int ves_icall_RuntimeMethodInfo_get_name_raw (int,int); -int ves_icall_RuntimeMethodInfo_get_base_method_raw (int,int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_InternalInvoke_raw (int,int,int,int,int); -void ves_icall_RuntimeMethodInfo_GetPInvoke_raw (int,int,int,int,int); -int ves_icall_RuntimeMethodInfo_MakeGenericMethod_impl_raw (int,int,int); -int ves_icall_RuntimeMethodInfo_GetGenericArguments_raw (int,int); -int ves_icall_RuntimeMethodInfo_GetGenericMethodDefinition_raw (int,int); -int ves_icall_RuntimeMethodInfo_get_IsGenericMethodDefinition_raw (int,int); -int ves_icall_RuntimeMethodInfo_get_IsGenericMethod_raw (int,int); -int ves_icall_InternalInvoke_raw (int,int,int,int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_System_Reflection_RuntimeModule_GetMDStreamVersion_raw (int,int); -int ves_icall_System_Reflection_RuntimeModule_InternalGetTypes_raw (int,int); -void ves_icall_System_Reflection_RuntimeModule_GetGuidInternal_raw (int,int,int); -int ves_icall_System_Reflection_RuntimeModule_GetGlobalType_raw (int,int); -int ves_icall_System_Reflection_RuntimeModule_ResolveTypeToken_raw (int,int,int,int,int,int); -int ves_icall_System_Reflection_RuntimeModule_ResolveMethodToken_raw (int,int,int,int,int,int); -int ves_icall_System_Reflection_RuntimeModule_ResolveFieldToken_raw (int,int,int,int,int,int); -int ves_icall_System_Reflection_RuntimeModule_ResolveStringToken_raw (int,int,int,int); -int ves_icall_System_Reflection_RuntimeModule_ResolveMemberToken_raw (int,int,int,int,int,int); -int ves_icall_System_Reflection_RuntimeModule_ResolveSignature_raw (int,int,int,int); -void ves_icall_System_Reflection_RuntimeModule_GetPEKind_raw (int,int,int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_RuntimeParameterInfo_GetTypeModifiers_raw (int,int,int,int,int); -void ves_icall_RuntimePropertyInfo_get_property_info_raw (int,int,int,int); -int ves_icall_RuntimePropertyInfo_GetTypeModifiers_raw (int,int,int); -int ves_icall_property_info_get_default_value_raw (int,int); -int ves_icall_reflection_get_token_raw (int,int); -int ves_icall_System_Reflection_RuntimePropertyInfo_internal_from_handle_type_raw (int,int,int); -int ves_icall_AssemblyExtensions_ApplyUpdateEnabled (int); -void ves_icall_AssemblyExtensions_ApplyUpdate (int,int,int,int,int,int,int); -void ves_icall_AssemblyBuilder_basic_init_raw (int,int); -void ves_icall_AssemblyBuilder_UpdateNativeCustomAttributes_raw (int,int); -int ves_icall_CustomAttributeBuilder_GetBlob_raw (int,int,int,int,int,int,int,int); -void ves_icall_DynamicMethod_create_dynamic_method_raw (int,int); -void ves_icall_EnumBuilder_setup_enum_type_raw (int,int,int); -void ves_icall_ModuleBuilder_basic_init_raw (int,int); -void ves_icall_ModuleBuilder_set_wrappers_type_raw (int,int,int); -int ves_icall_ModuleBuilder_getUSIndex_raw (int,int,int); -int ves_icall_ModuleBuilder_getToken_raw (int,int,int,int); -int ves_icall_ModuleBuilder_getMethodToken_raw (int,int,int,int); -void ves_icall_ModuleBuilder_RegisterToken_raw (int,int,int,int); -int ves_icall_SignatureHelper_get_signature_local_raw (int,int); -int ves_icall_SignatureHelper_get_signature_field_raw (int,int); -int ves_icall_TypeBuilder_create_runtime_class_raw (int,int); -int ves_icall_System_IO_Stream_HasOverriddenBeginEndRead_raw (int,int); -int ves_icall_System_IO_Stream_HasOverriddenBeginEndWrite_raw (int,int); -int ves_icall_System_Diagnostics_Debugger_IsAttached_internal (); -int ves_icall_System_Diagnostics_Debugger_IsLogging (); -void ves_icall_System_Diagnostics_Debugger_Log (int,int,int); -int ves_icall_Mono_RuntimeClassHandle_GetTypeFromClass (int); -void ves_icall_Mono_RuntimeGPtrArrayHandle_GPtrArrayFree (int); -void ves_icall_Mono_RuntimeMarshal_FreeAssemblyName (int,int); -int ves_icall_Mono_SafeStringMarshal_StringToUtf8 (int); -void ves_icall_Mono_SafeStringMarshal_GFree (int); -static void *corlib_icall_funcs [] = { -// token 228, -ves_icall_System_ArgIterator_Setup, -// token 235, -ves_icall_System_ArgIterator_IntGetNextArg, -// token 237, -ves_icall_System_ArgIterator_IntGetNextArgWithType, -// token 239, -ves_icall_System_ArgIterator_IntGetNextArgType, -// token 258, -ves_icall_System_Array_InternalCreate, -// token 265, -ves_icall_System_Array_GetCorElementTypeOfElementType_raw, -// token 266, -ves_icall_System_Array_IsValueOfElementType_raw, -// token 267, -ves_icall_System_Array_CanChangePrimitive, -// token 268, -ves_icall_System_Array_FastCopy_raw, -// token 269, -ves_icall_System_Array_GetLength_raw, -// token 270, -ves_icall_System_Array_GetLowerBound_raw, -// token 271, -ves_icall_System_Array_GetGenericValue_icall, -// token 272, -ves_icall_System_Array_GetValueImpl_raw, -// token 273, -ves_icall_System_Array_SetGenericValue_icall, -// token 276, -ves_icall_System_Array_SetValueImpl_raw, -// token 277, -ves_icall_System_Array_SetValueRelaxedImpl_raw, -// token 462, -ves_icall_System_Runtime_RuntimeImports_Memmove, -// token 463, -ves_icall_System_Buffer_BulkMoveWithWriteBarrier, -// token 465, -ves_icall_System_Runtime_RuntimeImports_ZeroMemory, -// token 498, -ves_icall_System_Delegate_AllocDelegateLike_internal_raw, -// token 499, -ves_icall_System_Delegate_CreateDelegate_internal_raw, -// token 500, -ves_icall_System_Delegate_GetVirtualMethod_internal_raw, -// token 520, -ves_icall_System_Enum_GetEnumValuesAndNames_raw, -// token 521, -ves_icall_System_Enum_ToObject_raw, -// token 522, -ves_icall_System_Enum_InternalGetCorElementType_raw, -// token 523, -ves_icall_System_Enum_get_underlying_type_raw, -// token 524, -ves_icall_System_Enum_InternalHasFlag_raw, -// token 615, -mono_environment_exitcode_get, -// token 616, -mono_environment_exitcode_set, -// token 617, -ves_icall_System_Environment_get_ProcessorCount, -// token 618, -ves_icall_System_Environment_get_TickCount, -// token 619, -ves_icall_System_Environment_get_TickCount64, -// token 620, -ves_icall_System_Environment_Exit, -// token 621, -ves_icall_System_Environment_GetCommandLineArgs_raw, -// token 624, -ves_icall_System_Environment_FailFast_raw, -// token 716, -ves_icall_System_GC_GetCollectionCount, -// token 717, -ves_icall_System_GC_GetMaxGeneration, -// token 718, -ves_icall_System_GC_InternalCollect, -// token 719, -ves_icall_System_GC_RecordPressure, -// token 720, -ves_icall_System_GC_register_ephemeron_array_raw, -// token 721, -ves_icall_System_GC_get_ephemeron_tombstone_raw, -// token 722, -ves_icall_System_GC_GetAllocatedBytesForCurrentThread, -// token 723, -ves_icall_System_GC_GetTotalAllocatedBytes_raw, -// token 726, -ves_icall_System_GC_GetGeneration_raw, -// token 736, -ves_icall_System_GC_WaitForPendingFinalizers, -// token 737, -ves_icall_System_GC_SuppressFinalize_raw, -// token 739, -ves_icall_System_GC_ReRegisterForFinalize_raw, -// token 741, -ves_icall_System_GC_GetTotalMemory, -// token 759, -ves_icall_System_GC_GetGCMemoryInfo, -// token 762, -ves_icall_System_GC_AllocPinnedArray_raw, -// token 767, -ves_icall_System_Object_MemberwiseClone_raw, -// token 775, -ves_icall_System_Math_Abs_double, -// token 776, -ves_icall_System_Math_Abs_single, -// token 777, -ves_icall_System_Math_Acos, -// token 778, -ves_icall_System_Math_Acosh, -// token 779, -ves_icall_System_Math_Asin, -// token 780, -ves_icall_System_Math_Asinh, -// token 781, -ves_icall_System_Math_Atan, -// token 782, -ves_icall_System_Math_Atan2, -// token 783, -ves_icall_System_Math_Atanh, -// token 784, -ves_icall_System_Math_Cbrt, -// token 785, -ves_icall_System_Math_Ceiling, -// token 786, -ves_icall_System_Math_Cos, -// token 787, -ves_icall_System_Math_Cosh, -// token 788, -ves_icall_System_Math_Exp, -// token 789, -ves_icall_System_Math_Floor, -// token 790, -ves_icall_System_Math_Log, -// token 791, -ves_icall_System_Math_Log10, -// token 792, -ves_icall_System_Math_Pow, -// token 793, -ves_icall_System_Math_Sin, -// token 795, -ves_icall_System_Math_Sinh, -// token 796, -ves_icall_System_Math_Sqrt, -// token 797, -ves_icall_System_Math_Tan, -// token 798, -ves_icall_System_Math_Tanh, -// token 799, -ves_icall_System_Math_FusedMultiplyAdd, -// token 800, -ves_icall_System_Math_ILogB, -// token 801, -ves_icall_System_Math_Log2, -// token 802, -ves_icall_System_Math_ModF, -// token 898, -ves_icall_System_MathF_Acos, -// token 899, -ves_icall_System_MathF_Acosh, -// token 900, -ves_icall_System_MathF_Asin, -// token 901, -ves_icall_System_MathF_Asinh, -// token 902, -ves_icall_System_MathF_Atan, -// token 903, -ves_icall_System_MathF_Atan2, -// token 904, -ves_icall_System_MathF_Atanh, -// token 905, -ves_icall_System_MathF_Cbrt, -// token 906, -ves_icall_System_MathF_Ceiling, -// token 907, -ves_icall_System_MathF_Cos, -// token 908, -ves_icall_System_MathF_Cosh, -// token 909, -ves_icall_System_MathF_Exp, -// token 910, -ves_icall_System_MathF_Floor, -// token 911, -ves_icall_System_MathF_Log, -// token 912, -ves_icall_System_MathF_Log10, -// token 913, -ves_icall_System_MathF_Pow, -// token 914, -ves_icall_System_MathF_Sin, -// token 916, -ves_icall_System_MathF_Sinh, -// token 917, -ves_icall_System_MathF_Sqrt, -// token 918, -ves_icall_System_MathF_Tan, -// token 919, -ves_icall_System_MathF_Tanh, -// token 920, -ves_icall_System_MathF_FusedMultiplyAdd, -// token 921, -ves_icall_System_MathF_ILogB, -// token 922, -ves_icall_System_MathF_Log2, -// token 923, -ves_icall_System_MathF_ModF, -// token 1010, -ves_icall_System_RuntimeFieldHandle_GetValueDirect_raw, -// token 1011, -ves_icall_System_RuntimeFieldHandle_SetValueDirect_raw, -// token 1016, -ves_icall_RuntimeMethodHandle_GetFunctionPointer_raw, -// token 1082, -ves_icall_RuntimeType_GetCorrespondingInflatedMethod_raw, -// token 1083, -ves_icall_RuntimeType_GetCorrespondingInflatedMethod_raw, -// token 1092, -ves_icall_RuntimeType_make_array_type_raw, -// token 1095, -ves_icall_RuntimeType_make_byref_type_raw, -// token 1097, -ves_icall_RuntimeType_MakePointerType_raw, -// token 1103, -ves_icall_RuntimeType_MakeGenericType_raw, -// token 1104, -ves_icall_RuntimeType_GetMethodsByName_native_raw, -// token 1106, -ves_icall_RuntimeType_GetPropertiesByName_native_raw, -// token 1107, -ves_icall_RuntimeType_GetConstructors_native_raw, -// token 1111, -ves_icall_RuntimeType_GetInterfaceMapData_raw, -// token 1113, -ves_icall_RuntimeType_GetPacking_raw, -// token 1115, -ves_icall_System_Activator_CreateInstanceInternal_raw, -// token 1116, -ves_icall_RuntimeType_get_DeclaringMethod_raw, -// token 1117, -ves_icall_System_RuntimeType_getFullName_raw, -// token 1118, -ves_icall_RuntimeType_GetGenericArguments_raw, -// token 1120, -ves_icall_RuntimeType_GetGenericParameterPosition_raw, -// token 1121, -ves_icall_RuntimeType_GetEvents_native_raw, -// token 1122, -ves_icall_RuntimeType_GetFields_native_raw, -// token 1125, -ves_icall_RuntimeType_GetInterfaces_raw, -// token 1126, -ves_icall_RuntimeType_GetNestedTypes_native_raw, -// token 1129, -ves_icall_RuntimeType_get_DeclaringType_raw, -// token 1130, -ves_icall_RuntimeType_get_Name_raw, -// token 1131, -ves_icall_RuntimeType_get_Namespace_raw, -// token 1209, -ves_icall_RuntimeTypeHandle_GetAttributes_raw, -// token 1211, -ves_icall_reflection_get_token_raw, -// token 1213, -ves_icall_RuntimeTypeHandle_GetGenericTypeDefinition_impl_raw, -// token 1221, -ves_icall_RuntimeTypeHandle_GetCorElementType_raw, -// token 1222, -ves_icall_RuntimeTypeHandle_HasInstantiation_raw, -// token 1223, -ves_icall_RuntimeTypeHandle_IsComObject_raw, -// token 1224, -ves_icall_RuntimeTypeHandle_IsInstanceOfType_raw, -// token 1225, -ves_icall_RuntimeTypeHandle_HasReferences_raw, -// token 1229, -ves_icall_RuntimeTypeHandle_GetArrayRank_raw, -// token 1230, -ves_icall_RuntimeTypeHandle_GetAssembly_raw, -// token 1231, -ves_icall_RuntimeTypeHandle_GetElementType_raw, -// token 1232, -ves_icall_RuntimeTypeHandle_GetModule_raw, -// token 1233, -ves_icall_RuntimeTypeHandle_IsGenericVariable_raw, -// token 1234, -ves_icall_RuntimeTypeHandle_GetBaseType_raw, -// token 1236, -ves_icall_RuntimeTypeHandle_type_is_assignable_from_raw, -// token 1237, -ves_icall_RuntimeTypeHandle_IsGenericTypeDefinition_raw, -// token 1238, -ves_icall_RuntimeTypeHandle_GetGenericParameterInfo_raw, -// token 1240, -ves_icall_RuntimeTypeHandle_is_subclass_of, -// token 1241, -ves_icall_RuntimeTypeHandle_IsByRefLike_raw, -// token 1243, -ves_icall_System_RuntimeTypeHandle_internal_from_name_raw, -// token 1248, -ves_icall_System_String_FastAllocateString_raw, -// token 1249, -ves_icall_System_String_InternalIsInterned_raw, -// token 1250, -ves_icall_System_String_InternalIntern_raw, -// token 1524, -ves_icall_System_Type_internal_from_handle_raw, -// token 1753, -ves_icall_System_TypedReference_InternalMakeTypedReference_raw, -// token 1757, -ves_icall_System_TypedReference_ToObject_raw, -// token 1785, -ves_icall_System_ValueType_InternalGetHashCode_raw, -// token 1786, -ves_icall_System_ValueType_Equals_raw, -// token 11659, -ves_icall_System_Threading_Interlocked_CompareExchange_Int, -// token 11660, -ves_icall_System_Threading_Interlocked_CompareExchange_Object, -// token 11662, -ves_icall_System_Threading_Interlocked_CompareExchange_Single, -// token 11663, -ves_icall_System_Threading_Interlocked_Decrement_Int, -// token 11664, -ves_icall_System_Threading_Interlocked_Decrement_Long, -// token 11665, -ves_icall_System_Threading_Interlocked_Increment_Int, -// token 11666, -ves_icall_System_Threading_Interlocked_Increment_Long, -// token 11667, -ves_icall_System_Threading_Interlocked_Exchange_Int, -// token 11668, -ves_icall_System_Threading_Interlocked_Exchange_Object, -// token 11670, -ves_icall_System_Threading_Interlocked_Exchange_Single, -// token 11671, -ves_icall_System_Threading_Interlocked_CompareExchange_Long, -// token 11672, -ves_icall_System_Threading_Interlocked_CompareExchange_Double, -// token 11674, -ves_icall_System_Threading_Interlocked_Exchange_Long, -// token 11675, -ves_icall_System_Threading_Interlocked_Exchange_Double, -// token 11677, -ves_icall_System_Threading_Interlocked_Read_Long, -// token 11678, -ves_icall_System_Threading_Interlocked_Add_Int, -// token 11679, -ves_icall_System_Threading_Interlocked_Add_Long, -// token 11681, -ves_icall_System_Threading_Interlocked_MemoryBarrierProcessWide, -// token 11703, -ves_icall_System_Threading_Monitor_Monitor_Enter_raw, -// token 11705, -mono_monitor_exit_icall_raw, -// token 11714, -ves_icall_System_Threading_Monitor_Monitor_test_synchronised_raw, -// token 11715, -ves_icall_System_Threading_Monitor_Monitor_pulse_raw, -// token 11717, -ves_icall_System_Threading_Monitor_Monitor_pulse_all_raw, -// token 11719, -ves_icall_System_Threading_Monitor_Monitor_wait_raw, -// token 11721, -ves_icall_System_Threading_Monitor_Monitor_try_enter_with_atomic_var_raw, -// token 11723, -ves_icall_System_Threading_Monitor_Monitor_test_owner_raw, -// token 11725, -ves_icall_System_Threading_Monitor_Monitor_LockContentionCount, -// token 11783, -ves_icall_System_Threading_Thread_GetCurrentProcessorNumber_raw, -// token 11795, -ves_icall_System_Threading_Thread_GetCurrentOSThreadId_raw, -// token 11796, -ves_icall_System_Threading_Thread_InitInternal_raw, -// token 11797, -ves_icall_System_Threading_Thread_GetCurrentThread, -// token 11799, -ves_icall_System_Threading_InternalThread_Thread_free_internal_raw, -// token 11800, -ves_icall_System_Threading_Thread_GetState_raw, -// token 11801, -ves_icall_System_Threading_Thread_SetState_raw, -// token 11802, -ves_icall_System_Threading_Thread_ClrState_raw, -// token 11803, -ves_icall_System_Threading_Thread_SetName_icall_raw, -// token 11805, -ves_icall_System_Threading_Thread_YieldInternal, -// token 11807, -ves_icall_System_Threading_Thread_Join_internal_raw, -// token 11808, -ves_icall_System_Threading_Thread_Interrupt_internal_raw, -// token 11809, -ves_icall_System_Threading_Thread_SetPriority_raw, -// token 14172, -ves_icall_System_Runtime_Loader_AssemblyLoadContext_PrepareForAssemblyLoadContextRelease_raw, -// token 14176, -ves_icall_System_Runtime_Loader_AssemblyLoadContext_GetLoadContextForAssembly_raw, -// token 14180, -ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalLoadFile_raw, -// token 14181, -ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalInitializeNativeALC_raw, -// token 14182, -ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalLoadFromStream_raw, -// token 14183, -ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalGetLoadedAssemblies_raw, -// token 18287, -ves_icall_System_GCHandle_InternalAlloc_raw, -// token 18288, -ves_icall_System_GCHandle_InternalFree_raw, -// token 18289, -ves_icall_System_GCHandle_InternalGet_raw, -// token 18290, -ves_icall_System_GCHandle_InternalSet_raw, -// token 18311, -ves_icall_System_Runtime_InteropServices_Marshal_GetLastPInvokeError, -// token 18312, -ves_icall_System_Runtime_InteropServices_Marshal_SetLastPInvokeError, -// token 18313, -ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure_raw, -// token 18314, -ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf_raw, -// token 18315, -ves_icall_System_Runtime_InteropServices_Marshal_StructureToPtr_raw, -// token 18316, -ves_icall_System_Runtime_InteropServices_Marshal_IsPinnableType_raw, -// token 18319, -ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructureInternal_raw, -// token 18321, -ves_icall_System_Runtime_InteropServices_Marshal_GetDelegateForFunctionPointerInternal_raw, -// token 18322, -ves_icall_System_Runtime_InteropServices_Marshal_GetFunctionPointerForDelegateInternal_raw, -// token 18323, -ves_icall_System_Runtime_InteropServices_Marshal_Prelink_raw, -// token 18324, -ves_icall_System_Runtime_InteropServices_Marshal_SizeOfHelper_raw, -// token 18537, -ves_icall_System_Runtime_InteropServices_NativeLibrary_LoadFromPath_raw, -// token 18538, -ves_icall_System_Runtime_InteropServices_NativeLibrary_LoadByName_raw, -// token 18539, -ves_icall_System_Runtime_InteropServices_NativeLibrary_FreeLib_raw, -// token 18540, -ves_icall_System_Runtime_InteropServices_NativeLibrary_GetSymbol_raw, -// token 19045, -mono_object_hash_icall_raw, -// token 19048, -ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetObjectValue_raw, -// token 19063, -ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_PrepareMethod_raw, -// token 19064, -ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetUninitializedObjectInternal_raw, -// token 19065, -ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray_raw, -// token 19066, -ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor_raw, -// token 19067, -ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor_raw, -// token 19068, -ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_SufficientExecutionStack, -// token 19692, -ves_icall_System_Reflection_Assembly_GetExecutingAssembly_raw, -// token 19693, -ves_icall_System_Reflection_Assembly_GetCallingAssembly_raw, -// token 19694, -ves_icall_System_Reflection_Assembly_GetEntryAssembly_raw, -// token 19699, -ves_icall_System_Reflection_Assembly_InternalLoad_raw, -// token 19700, -ves_icall_System_Reflection_Assembly_InternalGetType_raw, -// token 19701, -ves_icall_System_Reflection_Assembly_InternalGetAssemblyName_raw, -// token 19780, -mono_digest_get_public_token, -// token 19781, -ves_icall_System_Reflection_AssemblyName_GetNativeName, -// token 19782, -ves_icall_System_Reflection_AssemblyName_ParseAssemblyName, -// token 19827, -ves_icall_MonoCustomAttrs_GetCustomAttributesInternal_raw, -// token 19833, -ves_icall_MonoCustomAttrs_GetCustomAttributesDataInternal_raw, -// token 19840, -ves_icall_MonoCustomAttrs_IsDefinedInternal_raw, -// token 19850, -ves_icall_System_Reflection_FieldInfo_internal_from_handle_type_raw, -// token 19854, -ves_icall_System_Reflection_FieldInfo_get_marshal_info_raw, -// token 19910, -ves_icall_GetCurrentMethod_raw, -// token 19954, -ves_icall_System_Reflection_RuntimeAssembly_get_EntryPoint_raw, -// token 19966, -ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceNames_raw, -// token 19967, -ves_icall_System_Reflection_RuntimeAssembly_GetExportedTypes_raw, -// token 19968, -ves_icall_System_Reflection_RuntimeAssembly_GetTopLevelForwardedTypes_raw, -// token 19991, -ves_icall_System_Reflection_RuntimeAssembly_get_location_raw, -// token 19992, -ves_icall_System_Reflection_RuntimeAssembly_get_code_base_raw, -// token 19993, -ves_icall_System_Reflection_RuntimeAssembly_get_fullname_raw, -// token 19994, -ves_icall_System_Reflection_RuntimeAssembly_InternalImageRuntimeVersion_raw, -// token 19995, -ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceInfoInternal_raw, -// token 19996, -ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceInternal_raw, -// token 19997, -ves_icall_System_Reflection_Assembly_GetManifestModuleInternal_raw, -// token 19998, -ves_icall_System_Reflection_RuntimeAssembly_GetModulesInternal_raw, -// token 19999, -ves_icall_System_Reflection_Assembly_InternalGetReferencedAssemblies_raw, -// token 20008, -ves_icall_System_Reflection_RuntimeCustomAttributeData_ResolveArgumentsInternal_raw, -// token 20024, -ves_icall_RuntimeEventInfo_get_event_info_raw, -// token 20046, -ves_icall_reflection_get_token_raw, -// token 20047, -ves_icall_System_Reflection_EventInfo_internal_from_handle_type_raw, -// token 20058, -ves_icall_RuntimeFieldInfo_ResolveType_raw, -// token 20060, -ves_icall_RuntimeFieldInfo_GetParentType_raw, -// token 20067, -ves_icall_RuntimeFieldInfo_GetFieldOffset_raw, -// token 20068, -ves_icall_RuntimeFieldInfo_GetValueInternal_raw, -// token 20071, -ves_icall_RuntimeFieldInfo_SetValueInternal_raw, -// token 20073, -ves_icall_RuntimeFieldInfo_GetRawConstantValue_raw, -// token 20078, -ves_icall_reflection_get_token_raw, -// token 20079, -ves_icall_System_Reflection_FieldInfo_GetTypeModifiers_raw, -// token 20095, -ves_icall_get_method_info_raw, -// token 20096, -ves_icall_get_method_attributes, -// token 20103, -ves_icall_System_Reflection_MonoMethodInfo_get_parameter_info_raw, -// token 20105, -ves_icall_System_MonoMethodInfo_get_retval_marshal_raw, -// token 20114, -ves_icall_System_Reflection_RuntimeMethodInfo_GetMethodBodyInternal_raw, -// token 20117, -ves_icall_System_Reflection_RuntimeMethodInfo_GetMethodFromHandleInternalType_native_raw, -// token 20120, -ves_icall_RuntimeMethodInfo_get_name_raw, -// token 20121, -ves_icall_RuntimeMethodInfo_get_base_method_raw, -// token 20122, -ves_icall_reflection_get_token_raw, -// token 20133, -ves_icall_InternalInvoke_raw, -// token 20145, -ves_icall_RuntimeMethodInfo_GetPInvoke_raw, -// token 20151, -ves_icall_RuntimeMethodInfo_MakeGenericMethod_impl_raw, -// token 20152, -ves_icall_RuntimeMethodInfo_GetGenericArguments_raw, -// token 20153, -ves_icall_RuntimeMethodInfo_GetGenericMethodDefinition_raw, -// token 20155, -ves_icall_RuntimeMethodInfo_get_IsGenericMethodDefinition_raw, -// token 20156, -ves_icall_RuntimeMethodInfo_get_IsGenericMethod_raw, -// token 20167, -ves_icall_InternalInvoke_raw, -// token 20187, -ves_icall_reflection_get_token_raw, -// token 20226, -ves_icall_reflection_get_token_raw, -// token 20227, -ves_icall_System_Reflection_RuntimeModule_GetMDStreamVersion_raw, -// token 20228, -ves_icall_System_Reflection_RuntimeModule_InternalGetTypes_raw, -// token 20229, -ves_icall_System_Reflection_RuntimeModule_GetGuidInternal_raw, -// token 20230, -ves_icall_System_Reflection_RuntimeModule_GetGlobalType_raw, -// token 20231, -ves_icall_System_Reflection_RuntimeModule_ResolveTypeToken_raw, -// token 20232, -ves_icall_System_Reflection_RuntimeModule_ResolveMethodToken_raw, -// token 20233, -ves_icall_System_Reflection_RuntimeModule_ResolveFieldToken_raw, -// token 20234, -ves_icall_System_Reflection_RuntimeModule_ResolveStringToken_raw, -// token 20235, -ves_icall_System_Reflection_RuntimeModule_ResolveMemberToken_raw, -// token 20236, -ves_icall_System_Reflection_RuntimeModule_ResolveSignature_raw, -// token 20237, -ves_icall_System_Reflection_RuntimeModule_GetPEKind_raw, -// token 20254, -ves_icall_reflection_get_token_raw, -// token 20260, -ves_icall_RuntimeParameterInfo_GetTypeModifiers_raw, -// token 20265, -ves_icall_RuntimePropertyInfo_get_property_info_raw, -// token 20266, -ves_icall_RuntimePropertyInfo_GetTypeModifiers_raw, -// token 20267, -ves_icall_property_info_get_default_value_raw, -// token 20304, -ves_icall_reflection_get_token_raw, -// token 20305, -ves_icall_System_Reflection_RuntimePropertyInfo_internal_from_handle_type_raw, -// token 21099, -ves_icall_AssemblyExtensions_ApplyUpdateEnabled, -// token 21100, -ves_icall_AssemblyExtensions_ApplyUpdate, -// token 21107, -ves_icall_AssemblyBuilder_basic_init_raw, -// token 21108, -ves_icall_AssemblyBuilder_UpdateNativeCustomAttributes_raw, -// token 21208, -ves_icall_CustomAttributeBuilder_GetBlob_raw, -// token 21322, -ves_icall_DynamicMethod_create_dynamic_method_raw, -// token 21382, -ves_icall_EnumBuilder_setup_enum_type_raw, -// token 21715, -ves_icall_ModuleBuilder_basic_init_raw, -// token 21716, -ves_icall_ModuleBuilder_set_wrappers_type_raw, -// token 21752, -ves_icall_ModuleBuilder_getUSIndex_raw, -// token 21753, -ves_icall_ModuleBuilder_getToken_raw, -// token 21754, -ves_icall_ModuleBuilder_getMethodToken_raw, -// token 21761, -ves_icall_ModuleBuilder_RegisterToken_raw, -// token 21853, -ves_icall_SignatureHelper_get_signature_local_raw, -// token 21854, -ves_icall_SignatureHelper_get_signature_field_raw, -// token 21909, -ves_icall_TypeBuilder_create_runtime_class_raw, -// token 22111, -ves_icall_System_IO_Stream_HasOverriddenBeginEndRead_raw, -// token 22112, -ves_icall_System_IO_Stream_HasOverriddenBeginEndWrite_raw, -// token 23855, -ves_icall_System_Diagnostics_Debugger_IsAttached_internal, -// token 23857, -ves_icall_System_Diagnostics_Debugger_IsLogging, -// token 23859, -ves_icall_System_Diagnostics_Debugger_Log, -// token 26142, -ves_icall_Mono_RuntimeClassHandle_GetTypeFromClass, -// token 26161, -ves_icall_Mono_RuntimeGPtrArrayHandle_GPtrArrayFree, -// token 26168, -ves_icall_Mono_RuntimeMarshal_FreeAssemblyName, -// token 26169, -ves_icall_Mono_SafeStringMarshal_StringToUtf8, -// token 26171, -ves_icall_Mono_SafeStringMarshal_GFree, -}; -static uint8_t corlib_icall_handles [] = { -0, -0, -0, -0, -0, -1, -1, -0, -1, -1, -1, -0, -1, -0, -1, -1, -0, -0, -0, -1, -1, -1, -1, -1, -1, -1, -1, -0, -0, -0, -0, -0, -0, -1, -1, -0, -0, -0, -0, -1, -1, -0, -1, -1, -0, -1, -1, -0, -0, -1, -1, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -0, -1, -1, -1, -1, -1, -1, -1, -1, -0, -1, -1, -1, -0, -1, -1, -1, -1, -1, -0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0, -0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0, -1, -1, -1, -1, -1, -1, -0, -0, -0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0, -0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0, -0, -0, -0, -0, -0, -0, -0, -}; diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke-table.h b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke-table.h deleted file mode 100644 index c5079f68..00000000 --- a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke-table.h +++ /dev/null @@ -1,621 +0,0 @@ -// GENERATED FILE, DO NOT MODIFY - -int CompressionNative_Crc32 (int,int,int); -int CompressionNative_Deflate (int,int); -int CompressionNative_DeflateEnd (int); -int CompressionNative_DeflateInit2_ (int,int,int,int,int,int); -int CompressionNative_Inflate (int,int); -int CompressionNative_InflateEnd (int); -int CompressionNative_InflateInit2_ (int,int); -void GlobalizationNative_ChangeCase (int,int,int,int,int); -void GlobalizationNative_ChangeCaseInvariant (int,int,int,int,int); -void GlobalizationNative_ChangeCaseTurkish (int,int,int,int,int); -void GlobalizationNative_CloseSortHandle (int); -int GlobalizationNative_CompareString (int,int,int,int,int,int); -int GlobalizationNative_EndsWith (int,int,int,int,int,int,int); -int GlobalizationNative_EnumCalendarInfo (int, int, int, int, int); -int GlobalizationNative_GetCalendarInfo (int,int,int,int,int); -int GlobalizationNative_GetCalendars (int,int,int); -int GlobalizationNative_GetDefaultLocaleName (int,int); -int GlobalizationNative_GetICUVersion (); -int GlobalizationNative_GetJapaneseEraStartDate (int,int,int,int); -int GlobalizationNative_GetLatestJapaneseEra (); -int GlobalizationNative_GetLocaleInfoGroupingSizes (int,int,int,int); -int GlobalizationNative_GetLocaleInfoInt (int,int,int); -int GlobalizationNative_GetLocaleInfoString (int,int,int,int,int); -int GlobalizationNative_GetLocaleName (int,int,int); -int GlobalizationNative_GetLocales (int,int); -int GlobalizationNative_GetLocaleTimeFormat (int,int,int,int); -int GlobalizationNative_GetSortHandle (int,int); -int GlobalizationNative_GetSortKey (int,int,int,int,int,int); -int GlobalizationNative_GetSortVersion (int); -int GlobalizationNative_IndexOf (int,int,int,int,int,int,int); -void GlobalizationNative_InitICUFunctions (int,int,int,int); -void GlobalizationNative_InitOrdinalCasingPage (int,int); -int GlobalizationNative_IsNormalized (int,int,int); -int GlobalizationNative_IsPredefinedLocale (int); -int GlobalizationNative_LastIndexOf (int,int,int,int,int,int,int); -int GlobalizationNative_LoadICU (); -int GlobalizationNative_NormalizeString (int,int,int,int,int); -int GlobalizationNative_StartsWith (int,int,int,int,int,int,int); -int GlobalizationNative_ToAscii (int,int,int,int,int); -int GlobalizationNative_ToUnicode (int,int,int,int,int); -int sqlite3_aggregate_context (int,int); -int sqlite3_aggregate_count (int); -int sqlite3_backup_finish (int); -int sqlite3_backup_init (int,int,int,int); -int sqlite3_backup_pagecount (int); -int sqlite3_backup_remaining (int); -int sqlite3_backup_step (int,int); -int sqlite3_bind_blob (int,int,int,int,int); -int sqlite3_bind_double (int,int,double); -int sqlite3_bind_int (int,int,int); -int sqlite3_bind_int64 (int,int,int64_t); -int sqlite3_bind_null (int,int); -int sqlite3_bind_parameter_count (int); -int sqlite3_bind_parameter_index (int,int); -int sqlite3_bind_parameter_name (int,int); -int sqlite3_bind_text (int,int,int,int,int); -int sqlite3_bind_text16 (int,int,int,int,int); -int sqlite3_bind_zeroblob (int,int,int); -int sqlite3_blob_bytes (int); -int sqlite3_blob_close (int); -int sqlite3_blob_open (int,int,int,int,int64_t,int,int); -int sqlite3_blob_read (int,int,int,int); -int sqlite3_blob_reopen (int,int64_t); -int sqlite3_blob_write (int,int,int,int); -int sqlite3_busy_timeout (int,int); -int sqlite3_changes (int); -int sqlite3_clear_bindings (int); -int sqlite3_close (int); -int sqlite3_close_v2 (int); -int sqlite3_column_blob (int,int); -int sqlite3_column_bytes (int,int); -int sqlite3_column_count (int); -int sqlite3_column_database_name (int,int); -int sqlite3_column_decltype (int,int); -double sqlite3_column_double (int,int); -int sqlite3_column_int (int,int); -int64_t sqlite3_column_int64 (int,int); -int sqlite3_column_name (int,int); -int sqlite3_column_origin_name (int,int); -int sqlite3_column_table_name (int,int); -int sqlite3_column_text (int,int); -int sqlite3_column_type (int,int); -int sqlite3_commit_hook (int,int,int); -int sqlite3_compileoption_get (int); -int sqlite3_compileoption_used (int); -int sqlite3_complete (int); -int sqlite3_create_collation (int,int,int,int,int); -int sqlite3_create_function_v2 (int,int,int,int,int,int,int,int,int); -int sqlite3_data_count (int); -int sqlite3_db_filename (int,int); -int sqlite3_db_handle (int); -int sqlite3_db_readonly (int,int); -int sqlite3_db_status (int,int,int,int,int); -int sqlite3_enable_load_extension (int,int); -int sqlite3_enable_shared_cache (int); -int sqlite3_errcode (int); -int sqlite3_errmsg (int); -int sqlite3_errstr (int); -int sqlite3_exec (int,int,int,int,int); -int sqlite3_extended_errcode (int); -int sqlite3_extended_result_codes (int,int); -int sqlite3_file_control (int,int,int,int); -int sqlite3_finalize (int); -void sqlite3_free (int); -int sqlite3_get_autocommit (int); -int64_t sqlite3_hard_heap_limit64 (int64_t); -int sqlite3_initialize (); -void sqlite3_interrupt (int); -int sqlite3_keyword_count (); -int sqlite3_keyword_name (int,int,int); -int64_t sqlite3_last_insert_rowid (int); -int sqlite3_libversion (); -int sqlite3_libversion_number (); -int sqlite3_limit (int,int,int); -void sqlite3_log (int,int); -int sqlite3_malloc (int); -int64_t sqlite3_memory_highwater (int); -int64_t sqlite3_memory_used (); -int sqlite3_next_stmt (int,int); -int sqlite3_open (int,int); -int sqlite3_open_v2 (int,int,int,int); -int sqlite3_prepare_v2 (int,int,int,int,int); -int sqlite3_prepare_v3 (int,int,int,int,int,int); -int sqlite3_profile (int,int,int); -void sqlite3_progress_handler (int,int,int,int); -int sqlite3_realloc (int,int); -int sqlite3_reset (int); -void sqlite3_result_blob (int,int,int,int); -void sqlite3_result_double (int,double); -void sqlite3_result_error (int,int,int); -void sqlite3_result_error_code (int,int); -void sqlite3_result_error_nomem (int); -void sqlite3_result_error_toobig (int); -void sqlite3_result_int (int,int); -void sqlite3_result_int64 (int,int64_t); -void sqlite3_result_null (int); -void sqlite3_result_text (int,int,int,int); -void sqlite3_result_zeroblob (int,int); -int sqlite3_rollback_hook (int,int,int); -int sqlite3_set_authorizer (int,int,int); -int sqlite3_shutdown (); -int sqlite3_snapshot_cmp (int,int); -void sqlite3_snapshot_free (int); -int sqlite3_snapshot_get (int,int,int); -int sqlite3_snapshot_open (int,int,int); -int sqlite3_snapshot_recover (int,int); -int64_t sqlite3_soft_heap_limit64 (int64_t); -int sqlite3_sourceid (); -int sqlite3_sql (int); -int sqlite3_status (int,int,int,int); -int sqlite3_step (int); -int sqlite3_stmt_busy (int); -int sqlite3_stmt_isexplain (int); -int sqlite3_stmt_readonly (int); -int sqlite3_stmt_status (int,int,int); -int sqlite3_stricmp (int,int); -int sqlite3_strnicmp (int,int,int); -int sqlite3_table_column_metadata (int,int,int,int,int,int,int,int,int); -int sqlite3_threadsafe (); -int sqlite3_total_changes (int); -int sqlite3_trace (int,int,int); -int sqlite3_update_hook (int,int,int); -int sqlite3_user_data (int); -int sqlite3_value_blob (int); -int sqlite3_value_bytes (int); -double sqlite3_value_double (int); -int sqlite3_value_int (int); -int64_t sqlite3_value_int64 (int); -int sqlite3_value_text (int); -int sqlite3_value_type (int); -int sqlite3_vfs_find (int); -int sqlite3_wal_autocheckpoint (int,int); -int sqlite3_wal_checkpoint (int,int); -int sqlite3_wal_checkpoint_v2 (int,int,int,int,int); -int SystemNative_Access (int,int); -int SystemNative_AlignedAlloc (int,int); -void SystemNative_AlignedFree (int); -int SystemNative_AlignedRealloc (int,int,int); -int SystemNative_Calloc (int,int); -int SystemNative_ChDir (int); -int SystemNative_ChMod (int,int); -int SystemNative_Close (int); -int SystemNative_CloseDir (int); -int SystemNative_ConvertErrorPalToPlatform (int); -int SystemNative_ConvertErrorPlatformToPal (int); -int SystemNative_CopyFile (int,int); -int SystemNative_Dup (int); -int SystemNative_FAllocate (int,int64_t,int64_t); -int SystemNative_FChMod (int,int); -int SystemNative_FcntlSetFD (int,int); -int SystemNative_FLock (int,int); -void SystemNative_Free (int); -void SystemNative_FreeEnviron (int); -int SystemNative_FStat (int,int); -int SystemNative_FSync (int); -int SystemNative_FTruncate (int,int64_t); -int SystemNative_GetAddressFamily (int,int,int); -int SystemNative_GetCpuUtilization (int); -int SystemNative_GetCryptographicallySecureRandomBytes (int,int); -int SystemNative_GetCwd (int,int); -int SystemNative_GetEnv (int); -int SystemNative_GetEnviron (); -int SystemNative_GetErrNo (); -int64_t SystemNative_GetFileSystemType (int); -int SystemNative_GetIPSocketAddressSizes (int,int); -int SystemNative_GetIPv4Address (int,int,int); -int SystemNative_GetIPv6Address (int,int,int,int,int); -void SystemNative_GetNonCryptographicallySecureRandomBytes (int,int); -int SystemNative_GetPort (int,int,int); -int SystemNative_GetReadDirRBufferSize (); -int64_t SystemNative_GetSystemTimeAsTicks (); -uint64_t SystemNative_GetTimestamp (); -int SystemNative_LChflags (int,int); -int SystemNative_LChflagsCanSetHiddenFlag (); -int SystemNative_Link (int,int); -int SystemNative_LockFileRegion (int,int64_t,int64_t,int); -void SystemNative_Log (int,int); -void SystemNative_LowLevelMonitor_Acquire (int); -int SystemNative_LowLevelMonitor_Create (); -void SystemNative_LowLevelMonitor_Destroy (int); -void SystemNative_LowLevelMonitor_Release (int); -void SystemNative_LowLevelMonitor_Signal_Release (int); -int SystemNative_LowLevelMonitor_TimedWait (int,int); -void SystemNative_LowLevelMonitor_Wait (int); -int64_t SystemNative_LSeek (int,int64_t,int); -int SystemNative_LStat (int,int); -int SystemNative_MAdvise (int,uint64_t,int); -int SystemNative_Malloc (int); -int SystemNative_MkDir (int,int); -int SystemNative_MksTemps (int,int); -int SystemNative_MMap (int,uint64_t,int,int,int,int64_t); -int SystemNative_MSync (int,uint64_t,int); -int SystemNative_MUnmap (int,uint64_t); -int SystemNative_Open (int,int,int); -int SystemNative_OpenDir (int); -int SystemNative_PosixFAdvise (int,int64_t,int64_t,int); -int SystemNative_PRead (int,int,int,int64_t); -int64_t SystemNative_PReadV (int,int,int,int64_t); -int SystemNative_PWrite (int,int,int,int64_t); -int64_t SystemNative_PWriteV (int,int,int,int64_t); -int SystemNative_Read (int,int,int); -int SystemNative_ReadDirR (int,int,int,int); -int SystemNative_ReadLink (int,int,int); -int SystemNative_Realloc (int,int); -int SystemNative_Rename (int,int); -int SystemNative_RmDir (int); -int SystemNative_SetAddressFamily (int,int,int); -void SystemNative_SetErrNo (int); -int SystemNative_SetIPv4Address (int,int,int); -int SystemNative_SetIPv6Address (int,int,int,int,int); -int SystemNative_SetPort (int,int,int); -int SystemNative_ShmOpen (int,int,int); -int SystemNative_ShmUnlink (int); -int SystemNative_Stat (int,int); -int SystemNative_StrErrorR (int,int,int); -int SystemNative_SymLink (int,int); -int64_t SystemNative_SysConf (int); -void SystemNative_SysLog (int,int,int); -int SystemNative_Unlink (int); -int SystemNative_UTimensat (int,int); -int SystemNative_Write (int,int,int); -static PinvokeImport e_sqlite3_imports [] = { -{"sqlite3_aggregate_context", sqlite3_aggregate_context}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_aggregate_count", sqlite3_aggregate_count}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_backup_finish", sqlite3_backup_finish}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_backup_init", sqlite3_backup_init}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_backup_pagecount", sqlite3_backup_pagecount}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_backup_remaining", sqlite3_backup_remaining}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_backup_step", sqlite3_backup_step}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_blob", sqlite3_bind_blob}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_double", sqlite3_bind_double}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_int", sqlite3_bind_int}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_int64", sqlite3_bind_int64}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_null", sqlite3_bind_null}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_parameter_count", sqlite3_bind_parameter_count}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_parameter_index", sqlite3_bind_parameter_index}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_parameter_name", sqlite3_bind_parameter_name}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_text", sqlite3_bind_text}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_text16", sqlite3_bind_text16}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_bind_zeroblob", sqlite3_bind_zeroblob}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_blob_bytes", sqlite3_blob_bytes}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_blob_close", sqlite3_blob_close}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_blob_open", sqlite3_blob_open}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_blob_read", sqlite3_blob_read}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_blob_reopen", sqlite3_blob_reopen}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_blob_write", sqlite3_blob_write}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_busy_timeout", sqlite3_busy_timeout}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_changes", sqlite3_changes}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_clear_bindings", sqlite3_clear_bindings}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_close", sqlite3_close}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_close_v2", sqlite3_close_v2}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_blob", sqlite3_column_blob}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_bytes", sqlite3_column_bytes}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_count", sqlite3_column_count}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_database_name", sqlite3_column_database_name}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_decltype", sqlite3_column_decltype}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_double", sqlite3_column_double}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_int", sqlite3_column_int}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_int64", sqlite3_column_int64}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_name", sqlite3_column_name}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_origin_name", sqlite3_column_origin_name}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_table_name", sqlite3_column_table_name}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_text", sqlite3_column_text}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_column_type", sqlite3_column_type}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_commit_hook", sqlite3_commit_hook}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_compileoption_get", sqlite3_compileoption_get}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_compileoption_used", sqlite3_compileoption_used}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_complete", sqlite3_complete}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_create_collation", sqlite3_create_collation}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_create_function_v2", sqlite3_create_function_v2}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_data_count", sqlite3_data_count}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_db_filename", sqlite3_db_filename}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_db_handle", sqlite3_db_handle}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_db_readonly", sqlite3_db_readonly}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_db_status", sqlite3_db_status}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_enable_load_extension", sqlite3_enable_load_extension}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_enable_shared_cache", sqlite3_enable_shared_cache}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_errcode", sqlite3_errcode}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_errmsg", sqlite3_errmsg}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_errstr", sqlite3_errstr}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_exec", sqlite3_exec}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_extended_errcode", sqlite3_extended_errcode}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_extended_result_codes", sqlite3_extended_result_codes}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_file_control", sqlite3_file_control}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_finalize", sqlite3_finalize}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_free", sqlite3_free}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_get_autocommit", sqlite3_get_autocommit}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_hard_heap_limit64", sqlite3_hard_heap_limit64}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_initialize", sqlite3_initialize}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_interrupt", sqlite3_interrupt}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_keyword_count", sqlite3_keyword_count}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_keyword_name", sqlite3_keyword_name}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_last_insert_rowid", sqlite3_last_insert_rowid}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_libversion", sqlite3_libversion}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_libversion_number", sqlite3_libversion_number}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_limit", sqlite3_limit}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_log", sqlite3_log}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_malloc", sqlite3_malloc}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_memory_highwater", sqlite3_memory_highwater}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_memory_used", sqlite3_memory_used}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_next_stmt", sqlite3_next_stmt}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_open", sqlite3_open}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_open_v2", sqlite3_open_v2}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_prepare_v2", sqlite3_prepare_v2}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_prepare_v3", sqlite3_prepare_v3}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_profile", sqlite3_profile}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_progress_handler", sqlite3_progress_handler}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_realloc", sqlite3_realloc}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_reset", sqlite3_reset}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_blob", sqlite3_result_blob}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_double", sqlite3_result_double}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_error", sqlite3_result_error}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_error_code", sqlite3_result_error_code}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_error_nomem", sqlite3_result_error_nomem}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_error_toobig", sqlite3_result_error_toobig}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_int", sqlite3_result_int}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_int64", sqlite3_result_int64}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_null", sqlite3_result_null}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_text", sqlite3_result_text}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_result_zeroblob", sqlite3_result_zeroblob}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_rollback_hook", sqlite3_rollback_hook}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_set_authorizer", sqlite3_set_authorizer}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_shutdown", sqlite3_shutdown}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_snapshot_cmp", sqlite3_snapshot_cmp}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_snapshot_free", sqlite3_snapshot_free}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_snapshot_get", sqlite3_snapshot_get}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_snapshot_open", sqlite3_snapshot_open}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_snapshot_recover", sqlite3_snapshot_recover}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_soft_heap_limit64", sqlite3_soft_heap_limit64}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_sourceid", sqlite3_sourceid}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_sql", sqlite3_sql}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_status", sqlite3_status}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_step", sqlite3_step}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_stmt_busy", sqlite3_stmt_busy}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_stmt_isexplain", sqlite3_stmt_isexplain}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_stmt_readonly", sqlite3_stmt_readonly}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_stmt_status", sqlite3_stmt_status}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_stricmp", sqlite3_stricmp}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_strnicmp", sqlite3_strnicmp}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_table_column_metadata", sqlite3_table_column_metadata}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_threadsafe", sqlite3_threadsafe}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_total_changes", sqlite3_total_changes}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_trace", sqlite3_trace}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_update_hook", sqlite3_update_hook}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_user_data", sqlite3_user_data}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_value_blob", sqlite3_value_blob}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_value_bytes", sqlite3_value_bytes}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_value_double", sqlite3_value_double}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_value_int", sqlite3_value_int}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_value_int64", sqlite3_value_int64}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_value_text", sqlite3_value_text}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_value_type", sqlite3_value_type}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_vfs_find", sqlite3_vfs_find}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_wal_autocheckpoint", sqlite3_wal_autocheckpoint}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_wal_checkpoint", sqlite3_wal_checkpoint}, // SQLitePCLRaw.provider.e_sqlite3 -{"sqlite3_wal_checkpoint_v2", sqlite3_wal_checkpoint_v2}, // SQLitePCLRaw.provider.e_sqlite3 -{NULL, NULL} -}; -static PinvokeImport libSystem_Native_imports [] = { -{"SystemNative_Access", SystemNative_Access}, // System.Private.CoreLib -{"SystemNative_AlignedAlloc", SystemNative_AlignedAlloc}, // System.Private.CoreLib -{"SystemNative_AlignedFree", SystemNative_AlignedFree}, // System.Private.CoreLib -{"SystemNative_AlignedRealloc", SystemNative_AlignedRealloc}, // System.Private.CoreLib -{"SystemNative_Calloc", SystemNative_Calloc}, // System.Private.CoreLib -{"SystemNative_ChDir", SystemNative_ChDir}, // System.Private.CoreLib -{"SystemNative_ChMod", SystemNative_ChMod}, // System.Private.CoreLib -{"SystemNative_Close", SystemNative_Close}, // System.Private.CoreLib -{"SystemNative_CloseDir", SystemNative_CloseDir}, // System.Private.CoreLib -{"SystemNative_ConvertErrorPalToPlatform", SystemNative_ConvertErrorPalToPlatform}, // System.Console, System.IO.Compression.ZipFile, System.IO.MemoryMappedFiles, System.Net.Primitives, System.Private.CoreLib -{"SystemNative_ConvertErrorPlatformToPal", SystemNative_ConvertErrorPlatformToPal}, // System.Console, System.IO.Compression.ZipFile, System.IO.MemoryMappedFiles, System.Net.Primitives, System.Private.CoreLib -{"SystemNative_CopyFile", SystemNative_CopyFile}, // System.Private.CoreLib -{"SystemNative_Dup", SystemNative_Dup}, // System.Console -{"SystemNative_FAllocate", SystemNative_FAllocate}, // System.Private.CoreLib -{"SystemNative_FChMod", SystemNative_FChMod}, // System.IO.Compression.ZipFile -{"SystemNative_FcntlSetFD", SystemNative_FcntlSetFD}, // System.IO.MemoryMappedFiles -{"SystemNative_FLock", SystemNative_FLock}, // System.Private.CoreLib -{"SystemNative_Free", SystemNative_Free}, // System.Private.CoreLib -{"SystemNative_FreeEnviron", SystemNative_FreeEnviron}, // System.Private.CoreLib -{"SystemNative_FStat", SystemNative_FStat}, // System.IO.Compression.ZipFile, System.IO.MemoryMappedFiles, System.Private.CoreLib -{"SystemNative_FSync", SystemNative_FSync}, // System.Private.CoreLib -{"SystemNative_FTruncate", SystemNative_FTruncate}, // System.IO.MemoryMappedFiles, System.Private.CoreLib -{"SystemNative_GetAddressFamily", SystemNative_GetAddressFamily}, // System.Net.Primitives -{"SystemNative_GetCpuUtilization", SystemNative_GetCpuUtilization}, // System.Private.CoreLib -{"SystemNative_GetCryptographicallySecureRandomBytes", SystemNative_GetCryptographicallySecureRandomBytes}, // System.Private.CoreLib, System.Security.Cryptography.Algorithms -{"SystemNative_GetCwd", SystemNative_GetCwd}, // System.Private.CoreLib -{"SystemNative_GetEnv", SystemNative_GetEnv}, // System.Private.CoreLib -{"SystemNative_GetEnviron", SystemNative_GetEnviron}, // System.Private.CoreLib -{"SystemNative_GetErrNo", SystemNative_GetErrNo}, // System.Private.CoreLib -{"SystemNative_GetFileSystemType", SystemNative_GetFileSystemType}, // System.Private.CoreLib -{"SystemNative_GetIPSocketAddressSizes", SystemNative_GetIPSocketAddressSizes}, // System.Net.Primitives -{"SystemNative_GetIPv4Address", SystemNative_GetIPv4Address}, // System.Net.Primitives -{"SystemNative_GetIPv6Address", SystemNative_GetIPv6Address}, // System.Net.Primitives -{"SystemNative_GetNonCryptographicallySecureRandomBytes", SystemNative_GetNonCryptographicallySecureRandomBytes}, // System.Private.CoreLib -{"SystemNative_GetPort", SystemNative_GetPort}, // System.Net.Primitives -{"SystemNative_GetReadDirRBufferSize", SystemNative_GetReadDirRBufferSize}, // System.Private.CoreLib -{"SystemNative_GetSystemTimeAsTicks", SystemNative_GetSystemTimeAsTicks}, // System.Private.CoreLib -{"SystemNative_GetTimestamp", SystemNative_GetTimestamp}, // System.Private.CoreLib -{"SystemNative_LChflags", SystemNative_LChflags}, // System.Private.CoreLib -{"SystemNative_LChflagsCanSetHiddenFlag", SystemNative_LChflagsCanSetHiddenFlag}, // System.Private.CoreLib -{"SystemNative_Link", SystemNative_Link}, // System.Private.CoreLib -{"SystemNative_LockFileRegion", SystemNative_LockFileRegion}, // System.Private.CoreLib -{"SystemNative_Log", SystemNative_Log}, // System.Private.CoreLib -{"SystemNative_LowLevelMonitor_Acquire", SystemNative_LowLevelMonitor_Acquire}, // System.Private.CoreLib -{"SystemNative_LowLevelMonitor_Create", SystemNative_LowLevelMonitor_Create}, // System.Private.CoreLib -{"SystemNative_LowLevelMonitor_Destroy", SystemNative_LowLevelMonitor_Destroy}, // System.Private.CoreLib -{"SystemNative_LowLevelMonitor_Release", SystemNative_LowLevelMonitor_Release}, // System.Private.CoreLib -{"SystemNative_LowLevelMonitor_Signal_Release", SystemNative_LowLevelMonitor_Signal_Release}, // System.Private.CoreLib -{"SystemNative_LowLevelMonitor_TimedWait", SystemNative_LowLevelMonitor_TimedWait}, // System.Private.CoreLib -{"SystemNative_LowLevelMonitor_Wait", SystemNative_LowLevelMonitor_Wait}, // System.Private.CoreLib -{"SystemNative_LSeek", SystemNative_LSeek}, // System.Private.CoreLib -{"SystemNative_LStat", SystemNative_LStat}, // System.Private.CoreLib -{"SystemNative_MAdvise", SystemNative_MAdvise}, // System.IO.MemoryMappedFiles -{"SystemNative_Malloc", SystemNative_Malloc}, // System.Private.CoreLib -{"SystemNative_MkDir", SystemNative_MkDir}, // System.Private.CoreLib -{"SystemNative_MksTemps", SystemNative_MksTemps}, // System.Private.CoreLib -{"SystemNative_MMap", SystemNative_MMap}, // System.IO.MemoryMappedFiles -{"SystemNative_MSync", SystemNative_MSync}, // System.IO.MemoryMappedFiles -{"SystemNative_MUnmap", SystemNative_MUnmap}, // System.IO.MemoryMappedFiles -{"SystemNative_Open", SystemNative_Open}, // System.Private.CoreLib -{"SystemNative_OpenDir", SystemNative_OpenDir}, // System.Private.CoreLib -{"SystemNative_PosixFAdvise", SystemNative_PosixFAdvise}, // System.Private.CoreLib -{"SystemNative_PRead", SystemNative_PRead}, // System.Private.CoreLib -{"SystemNative_PReadV", SystemNative_PReadV}, // System.Private.CoreLib -{"SystemNative_PWrite", SystemNative_PWrite}, // System.Private.CoreLib -{"SystemNative_PWriteV", SystemNative_PWriteV}, // System.Private.CoreLib -{"SystemNative_Read", SystemNative_Read}, // System.Private.CoreLib -{"SystemNative_ReadDirR", SystemNative_ReadDirR}, // System.Private.CoreLib -{"SystemNative_ReadLink", SystemNative_ReadLink}, // System.Private.CoreLib -{"SystemNative_Realloc", SystemNative_Realloc}, // System.Private.CoreLib -{"SystemNative_Rename", SystemNative_Rename}, // System.Private.CoreLib -{"SystemNative_RmDir", SystemNative_RmDir}, // System.Private.CoreLib -{"SystemNative_SetAddressFamily", SystemNative_SetAddressFamily}, // System.Net.Primitives -{"SystemNative_SetErrNo", SystemNative_SetErrNo}, // System.Private.CoreLib -{"SystemNative_SetIPv4Address", SystemNative_SetIPv4Address}, // System.Net.Primitives -{"SystemNative_SetIPv6Address", SystemNative_SetIPv6Address}, // System.Net.Primitives -{"SystemNative_SetPort", SystemNative_SetPort}, // System.Net.Primitives -{"SystemNative_ShmOpen", SystemNative_ShmOpen}, // System.IO.MemoryMappedFiles -{"SystemNative_ShmUnlink", SystemNative_ShmUnlink}, // System.IO.MemoryMappedFiles -{"SystemNative_Stat", SystemNative_Stat}, // System.Private.CoreLib -{"SystemNative_StrErrorR", SystemNative_StrErrorR}, // Microsoft.Win32.Primitives, System.Console, System.IO.Compression.ZipFile, System.IO.MemoryMappedFiles, System.Net.Primitives, System.Private.CoreLib -{"SystemNative_SymLink", SystemNative_SymLink}, // System.Private.CoreLib -{"SystemNative_SysConf", SystemNative_SysConf}, // System.IO.MemoryMappedFiles, System.Private.CoreLib -{"SystemNative_SysLog", SystemNative_SysLog}, // System.Private.CoreLib -{"SystemNative_Unlink", SystemNative_Unlink}, // System.IO.MemoryMappedFiles, System.Private.CoreLib -{"SystemNative_UTimensat", SystemNative_UTimensat}, // System.Private.CoreLib -{"SystemNative_Write", SystemNative_Write}, // System.Console, System.Private.CoreLib -{NULL, NULL} -}; -static PinvokeImport libSystem_IO_Compression_Native_imports [] = { -{"CompressionNative_Crc32", CompressionNative_Crc32}, // System.IO.Compression -{"CompressionNative_Deflate", CompressionNative_Deflate}, // System.IO.Compression, System.Net.WebSockets -{"CompressionNative_DeflateEnd", CompressionNative_DeflateEnd}, // System.IO.Compression, System.Net.WebSockets -{"CompressionNative_DeflateInit2_", CompressionNative_DeflateInit2_}, // System.IO.Compression, System.Net.WebSockets -{"CompressionNative_Inflate", CompressionNative_Inflate}, // System.IO.Compression, System.Net.WebSockets -{"CompressionNative_InflateEnd", CompressionNative_InflateEnd}, // System.IO.Compression, System.Net.WebSockets -{"CompressionNative_InflateInit2_", CompressionNative_InflateInit2_}, // System.IO.Compression, System.Net.WebSockets -{NULL, NULL} -}; -static PinvokeImport libSystem_Globalization_Native_imports [] = { -{"GlobalizationNative_ChangeCase", GlobalizationNative_ChangeCase}, // System.Private.CoreLib -{"GlobalizationNative_ChangeCaseInvariant", GlobalizationNative_ChangeCaseInvariant}, // System.Private.CoreLib -{"GlobalizationNative_ChangeCaseTurkish", GlobalizationNative_ChangeCaseTurkish}, // System.Private.CoreLib -{"GlobalizationNative_CloseSortHandle", GlobalizationNative_CloseSortHandle}, // System.Private.CoreLib -{"GlobalizationNative_CompareString", GlobalizationNative_CompareString}, // System.Private.CoreLib -{"GlobalizationNative_EndsWith", GlobalizationNative_EndsWith}, // System.Private.CoreLib -{"GlobalizationNative_EnumCalendarInfo", GlobalizationNative_EnumCalendarInfo}, // System.Private.CoreLib -{"GlobalizationNative_GetCalendarInfo", GlobalizationNative_GetCalendarInfo}, // System.Private.CoreLib -{"GlobalizationNative_GetCalendars", GlobalizationNative_GetCalendars}, // System.Private.CoreLib -{"GlobalizationNative_GetDefaultLocaleName", GlobalizationNative_GetDefaultLocaleName}, // System.Private.CoreLib -{"GlobalizationNative_GetICUVersion", GlobalizationNative_GetICUVersion}, // System.Private.CoreLib -{"GlobalizationNative_GetJapaneseEraStartDate", GlobalizationNative_GetJapaneseEraStartDate}, // System.Private.CoreLib -{"GlobalizationNative_GetLatestJapaneseEra", GlobalizationNative_GetLatestJapaneseEra}, // System.Private.CoreLib -{"GlobalizationNative_GetLocaleInfoGroupingSizes", GlobalizationNative_GetLocaleInfoGroupingSizes}, // System.Private.CoreLib -{"GlobalizationNative_GetLocaleInfoInt", GlobalizationNative_GetLocaleInfoInt}, // System.Private.CoreLib -{"GlobalizationNative_GetLocaleInfoString", GlobalizationNative_GetLocaleInfoString}, // System.Private.CoreLib -{"GlobalizationNative_GetLocaleName", GlobalizationNative_GetLocaleName}, // System.Private.CoreLib -{"GlobalizationNative_GetLocales", GlobalizationNative_GetLocales}, // System.Private.CoreLib -{"GlobalizationNative_GetLocaleTimeFormat", GlobalizationNative_GetLocaleTimeFormat}, // System.Private.CoreLib -{"GlobalizationNative_GetSortHandle", GlobalizationNative_GetSortHandle}, // System.Private.CoreLib -{"GlobalizationNative_GetSortKey", GlobalizationNative_GetSortKey}, // System.Private.CoreLib -{"GlobalizationNative_GetSortVersion", GlobalizationNative_GetSortVersion}, // System.Private.CoreLib -{"GlobalizationNative_IndexOf", GlobalizationNative_IndexOf}, // System.Private.CoreLib -{"GlobalizationNative_InitICUFunctions", GlobalizationNative_InitICUFunctions}, // System.Private.CoreLib -{"GlobalizationNative_InitOrdinalCasingPage", GlobalizationNative_InitOrdinalCasingPage}, // System.Private.CoreLib -{"GlobalizationNative_IsNormalized", GlobalizationNative_IsNormalized}, // System.Private.CoreLib -{"GlobalizationNative_IsPredefinedLocale", GlobalizationNative_IsPredefinedLocale}, // System.Private.CoreLib -{"GlobalizationNative_LastIndexOf", GlobalizationNative_LastIndexOf}, // System.Private.CoreLib -{"GlobalizationNative_LoadICU", GlobalizationNative_LoadICU}, // System.Private.CoreLib -{"GlobalizationNative_NormalizeString", GlobalizationNative_NormalizeString}, // System.Private.CoreLib -{"GlobalizationNative_StartsWith", GlobalizationNative_StartsWith}, // System.Private.CoreLib -{"GlobalizationNative_ToAscii", GlobalizationNative_ToAscii}, // System.Private.CoreLib -{"GlobalizationNative_ToUnicode", GlobalizationNative_ToUnicode}, // System.Private.CoreLib -{NULL, NULL} -}; -static void *pinvoke_tables[] = { e_sqlite3_imports,libSystem_Native_imports,libSystem_IO_Compression_Native_imports,libSystem_Globalization_Native_imports,}; -static char *pinvoke_names[] = { "e_sqlite3","libSystem.Native","libSystem.IO.Compression.Native","libSystem.Globalization.Native",}; -InterpFtnDesc wasm_native_to_interp_ftndescs[14]; -typedef void (*WasmInterpEntrySig_0) (int*,int*,int*,int*,int*,int*); -int wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_exec_hook_bridge_impl (int arg0,int arg1,int arg2,int arg3) { -int res; -((WasmInterpEntrySig_0)wasm_native_to_interp_ftndescs [0].func) (&res, &arg0, &arg1, &arg2, &arg3, wasm_native_to_interp_ftndescs [0].arg); -return res; -} -typedef void (*WasmInterpEntrySig_1) (int*,int*,int*); -int wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_commit_hook_bridge_impl (int arg0) { -int res; -((WasmInterpEntrySig_1)wasm_native_to_interp_ftndescs [1].func) (&res, &arg0, wasm_native_to_interp_ftndescs [1].arg); -return res; -} -typedef void (*WasmInterpEntrySig_2) (int*,int*,int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_scalar_function_hook_bridge_impl (int arg0,int arg1,int arg2) { -((WasmInterpEntrySig_2)wasm_native_to_interp_ftndescs [2].func) (&arg0, &arg1, &arg2, wasm_native_to_interp_ftndescs [2].arg); -} -typedef void (*WasmInterpEntrySig_3) (int*,int*,int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_log_hook_bridge_impl (int arg0,int arg1,int arg2) { -((WasmInterpEntrySig_3)wasm_native_to_interp_ftndescs [3].func) (&arg0, &arg1, &arg2, wasm_native_to_interp_ftndescs [3].arg); -} -typedef void (*WasmInterpEntrySig_4) (int*,int*,int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_agg_function_step_hook_bridge_impl (int arg0,int arg1,int arg2) { -((WasmInterpEntrySig_4)wasm_native_to_interp_ftndescs [4].func) (&arg0, &arg1, &arg2, wasm_native_to_interp_ftndescs [4].arg); -} -typedef void (*WasmInterpEntrySig_5) (int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_agg_function_final_hook_bridge_impl (int arg0) { -((WasmInterpEntrySig_5)wasm_native_to_interp_ftndescs [5].func) (&arg0, wasm_native_to_interp_ftndescs [5].arg); -} -typedef void (*WasmInterpEntrySig_6) (int*,int*,int*,int*,int*,int*,int*); -int wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_collation_hook_bridge_impl (int arg0,int arg1,int arg2,int arg3,int arg4) { -int res; -((WasmInterpEntrySig_6)wasm_native_to_interp_ftndescs [6].func) (&res, &arg0, &arg1, &arg2, &arg3, &arg4, wasm_native_to_interp_ftndescs [6].arg); -return res; -} -typedef void (*WasmInterpEntrySig_7) (int*,int*,int*,int*,int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_update_hook_bridge_impl (int arg0,int arg1,int arg2,int arg3,int64_t arg4) { -((WasmInterpEntrySig_7)wasm_native_to_interp_ftndescs [7].func) (&arg0, &arg1, &arg2, &arg3, &arg4, wasm_native_to_interp_ftndescs [7].arg); -} -typedef void (*WasmInterpEntrySig_8) (int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_rollback_hook_bridge_impl (int arg0) { -((WasmInterpEntrySig_8)wasm_native_to_interp_ftndescs [8].func) (&arg0, wasm_native_to_interp_ftndescs [8].arg); -} -typedef void (*WasmInterpEntrySig_9) (int*,int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_trace_hook_bridge_impl (int arg0,int arg1) { -((WasmInterpEntrySig_9)wasm_native_to_interp_ftndescs [9].func) (&arg0, &arg1, wasm_native_to_interp_ftndescs [9].arg); -} -typedef void (*WasmInterpEntrySig_10) (int*,int*,int*,int*); -void wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_profile_hook_bridge_impl (int arg0,int arg1,int64_t arg2) { -((WasmInterpEntrySig_10)wasm_native_to_interp_ftndescs [10].func) (&arg0, &arg1, &arg2, wasm_native_to_interp_ftndescs [10].arg); -} -typedef void (*WasmInterpEntrySig_11) (int*,int*,int*); -int wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_progress_handler_hook_bridge_impl (int arg0) { -int res; -((WasmInterpEntrySig_11)wasm_native_to_interp_ftndescs [11].func) (&res, &arg0, wasm_native_to_interp_ftndescs [11].arg); -return res; -} -typedef void (*WasmInterpEntrySig_12) (int*,int*,int*,int*,int*,int*,int*,int*); -int wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_authorizer_hook_bridge_impl (int arg0,int arg1,int arg2,int arg3,int arg4,int arg5) { -int res; -((WasmInterpEntrySig_12)wasm_native_to_interp_ftndescs [12].func) (&res, &arg0, &arg1, &arg2, &arg3, &arg4, &arg5, wasm_native_to_interp_ftndescs [12].arg); -return res; -} -typedef void (*WasmInterpEntrySig_13) (int*,int*,int*); -void wasm_native_to_interp_System_Private_CoreLib_CalendarData_EnumCalendarInfoCallback (int arg0,int arg1) { -((WasmInterpEntrySig_13)wasm_native_to_interp_ftndescs [13].func) (&arg0, &arg1, wasm_native_to_interp_ftndescs [13].arg); -} -static void *wasm_native_to_interp_funcs[] = { wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_exec_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_commit_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_scalar_function_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_log_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_agg_function_step_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_agg_function_final_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_collation_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_update_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_rollback_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_trace_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_profile_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_progress_handler_hook_bridge_impl,wasm_native_to_interp_SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_authorizer_hook_bridge_impl,wasm_native_to_interp_System_Private_CoreLib_CalendarData_EnumCalendarInfoCallback,}; -static const char *wasm_native_to_interp_map[] = { "SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_exec_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_commit_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_scalar_function_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_log_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_agg_function_step_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_agg_function_final_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_collation_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_update_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_rollback_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_trace_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_profile_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_progress_handler_hook_bridge_impl", -"SQLitePCLRaw_provider_e_sqlite3_SQLite3Provider_e_sqlite3_authorizer_hook_bridge_impl", -"System_Private_CoreLib_CalendarData_EnumCalendarInfoCallback", -}; diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke.o b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke.o deleted file mode 100644 index ad28cf9f..00000000 Binary files a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/pinvoke.o and /dev/null differ diff --git a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/runtime-icall-table.h b/Account_SQLite/obj/Debug/net6.0/wasm/for-build/runtime-icall-table.h deleted file mode 100644 index 734fd7ca..00000000 --- a/Account_SQLite/obj/Debug/net6.0/wasm/for-build/runtime-icall-table.h +++ /dev/null @@ -1,454 +0,0 @@ -[ -{ "klass": "", "icalls": []}, - { "klass":"Mono.Runtime", "icalls": [{} ,{ "name": "AnnotateMicrosoftTelemetry_internal", "func": "ves_icall_Mono_Runtime_AnnotateMicrosoftTelemetry", "handles": false } - ,{ "name": "CheckCrashReportLog_internal", "func": "ves_icall_Mono_Runtime_CheckCrashReportingLog", "handles": false } - ,{ "name": "DisableMicrosoftTelemetry", "func": "ves_icall_Mono_Runtime_DisableMicrosoftTelemetry", "handles": false } - ,{ "name": "DumpStateSingle_internal", "func": "ves_icall_Mono_Runtime_DumpStateSingle_raw", "handles": true } - ,{ "name": "DumpStateTotal_internal", "func": "ves_icall_Mono_Runtime_DumpStateTotal_raw", "handles": true } - ,{ "name": "EnableCrashReportLog_internal", "func": "ves_icall_Mono_Runtime_EnableCrashReportingLog", "handles": false } - ,{ "name": "EnableMicrosoftTelemetry_internal", "func": "ves_icall_Mono_Runtime_EnableMicrosoftTelemetry_raw", "handles": true } - ,{ "name": "ExceptionToState_internal", "func": "ves_icall_Mono_Runtime_ExceptionToState_raw", "handles": true } - ,{ "name": "GetDisplayName", "func": "ves_icall_Mono_Runtime_GetDisplayName_raw", "handles": true } - ,{ "name": "GetNativeStackTrace", "func": "ves_icall_Mono_Runtime_GetNativeStackTrace_raw", "handles": true } - ,{ "name": "RegisterReportingForAllNativeLibs_internal", "func": "ves_icall_Mono_Runtime_RegisterReportingForAllNativeLibs", "handles": false } - ,{ "name": "RegisterReportingForNativeLib_internal", "func": "ves_icall_Mono_Runtime_RegisterReportingForNativeLib", "handles": false } - ,{ "name": "SendMicrosoftTelemetry_internal", "func": "ves_icall_Mono_Runtime_SendMicrosoftTelemetry_raw", "handles": true } - ,{ "name": "WriteStateToFile_internal", "func": "ves_icall_Mono_Runtime_DumpTelemetry_raw", "handles": true } -]}, - { "klass":"Mono.RuntimeClassHandle", "icalls": [{} ,{ "name": "GetTypeFromClass", "func": "ves_icall_Mono_RuntimeClassHandle_GetTypeFromClass", "handles": false } -]}, - { "klass":"Mono.RuntimeGPtrArrayHandle", "icalls": [{} ,{ "name": "GPtrArrayFree", "func": "ves_icall_Mono_RuntimeGPtrArrayHandle_GPtrArrayFree", "handles": false } -]}, - { "klass":"Mono.RuntimeMarshal", "icalls": [{} ,{ "name": "FreeAssemblyName", "func": "ves_icall_Mono_RuntimeMarshal_FreeAssemblyName", "handles": false } -]}, - { "klass":"Mono.SafeStringMarshal", "icalls": [{} ,{ "name": "GFree", "func": "ves_icall_Mono_SafeStringMarshal_GFree", "handles": false } - ,{ "name": "StringToUtf8_icall", "func": "ves_icall_Mono_SafeStringMarshal_StringToUtf8", "handles": false } -]}, - { "klass":"System.ArgIterator", "icalls": [{} ,{ "name": "IntGetNextArg", "func": "ves_icall_System_ArgIterator_IntGetNextArg", "handles": false } - ,{ "name": "IntGetNextArgType", "func": "ves_icall_System_ArgIterator_IntGetNextArgType", "handles": false } - ,{ "name": "IntGetNextArgWithType", "func": "ves_icall_System_ArgIterator_IntGetNextArgWithType", "handles": false } - ,{ "name": "Setup", "func": "ves_icall_System_ArgIterator_Setup", "handles": false } -]}, - { "klass":"System.Array", "icalls": [{} ,{ "name": "CanChangePrimitive", "func": "ves_icall_System_Array_CanChangePrimitive", "handles": false } - ,{ "name": "FastCopy", "func": "ves_icall_System_Array_FastCopy_raw", "handles": true } - ,{ "name": "GetCorElementTypeOfElementType", "func": "ves_icall_System_Array_GetCorElementTypeOfElementType_raw", "handles": true } - ,{ "name": "GetGenericValue_icall", "func": "ves_icall_System_Array_GetGenericValue_icall", "handles": false } - ,{ "name": "GetLength", "func": "ves_icall_System_Array_GetLength_raw", "handles": true } - ,{ "name": "GetLowerBound", "func": "ves_icall_System_Array_GetLowerBound_raw", "handles": true } - ,{ "name": "GetValueImpl", "func": "ves_icall_System_Array_GetValueImpl_raw", "handles": true } - ,{ "name": "InternalCreate", "func": "ves_icall_System_Array_InternalCreate", "handles": false } - ,{ "name": "IsValueOfElementType", "func": "ves_icall_System_Array_IsValueOfElementType_raw", "handles": true } - ,{ "name": "SetGenericValue_icall", "func": "ves_icall_System_Array_SetGenericValue_icall", "handles": false } - ,{ "name": "SetValueImpl", "func": "ves_icall_System_Array_SetValueImpl_raw", "handles": true } - ,{ "name": "SetValueRelaxedImpl", "func": "ves_icall_System_Array_SetValueRelaxedImpl_raw", "handles": true } -]}, - { "klass":"System.Buffer", "icalls": [{} ,{ "name": "BulkMoveWithWriteBarrier", "func": "ves_icall_System_Buffer_BulkMoveWithWriteBarrier", "handles": false } - ,{ "name": "__Memmove", "func": "ves_icall_System_Runtime_RuntimeImports_Memmove", "handles": false } - ,{ "name": "__ZeroMemory", "func": "ves_icall_System_Runtime_RuntimeImports_ZeroMemory", "handles": false } -]}, - { "klass":"System.Delegate", "icalls": [{} ,{ "name": "AllocDelegateLike_internal", "func": "ves_icall_System_Delegate_AllocDelegateLike_internal_raw", "handles": true } - ,{ "name": "CreateDelegate_internal", "func": "ves_icall_System_Delegate_CreateDelegate_internal_raw", "handles": true } - ,{ "name": "GetVirtualMethod_internal", "func": "ves_icall_System_Delegate_GetVirtualMethod_internal_raw", "handles": true } -]}, - { "klass":"System.Diagnostics.Debugger", "icalls": [{} ,{ "name": "IsAttached_internal", "func": "ves_icall_System_Diagnostics_Debugger_IsAttached_internal", "handles": false } - ,{ "name": "IsLogging", "func": "ves_icall_System_Diagnostics_Debugger_IsLogging", "handles": false } - ,{ "name": "Log_icall", "func": "ves_icall_System_Diagnostics_Debugger_Log", "handles": false } -]}, - { "klass":"System.Diagnostics.Tracing.EventPipeInternal", "icalls": [{} ,{ "name": "CreateProvider", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_CreateProvider_raw", "handles": true } - ,{ "name": "DefineEvent", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_DefineEvent", "handles": false } - ,{ "name": "DeleteProvider", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_DeleteProvider", "handles": false } - ,{ "name": "Disable", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_Disable", "handles": false } - ,{ "name": "Enable", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_Enable", "handles": false } - ,{ "name": "EventActivityIdControl", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_EventActivityIdControl", "handles": false } - ,{ "name": "GetNextEvent", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_GetNextEvent", "handles": false } - ,{ "name": "GetProvider", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_GetProvider", "handles": false } - ,{ "name": "GetRuntimeCounterValue", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_GetRuntimeCounterValue", "handles": false } - ,{ "name": "GetSessionInfo", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_GetSessionInfo", "handles": false } - ,{ "name": "GetWaitHandle", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_GetWaitHandle", "handles": false } - ,{ "name": "WriteEventData", "func": "ves_icall_System_Diagnostics_Tracing_EventPipeInternal_WriteEventData", "handles": false } -]}, - { "klass":"System.Diagnostics.Tracing.NativeRuntimeEventSource", "icalls": [{} ,{ "name": "LogThreadPoolIODequeue", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolIODequeue", "handles": false } - ,{ "name": "LogThreadPoolIOEnqueue", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolIOEnqueue", "handles": false } - ,{ "name": "LogThreadPoolWorkerThreadAdjustmentAdjustment", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolWorkerThreadAdjustmentAdjustment", "handles": false } - ,{ "name": "LogThreadPoolWorkerThreadAdjustmentSample", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolWorkerThreadAdjustmentSample", "handles": false } - ,{ "name": "LogThreadPoolWorkerThreadAdjustmentStats", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolWorkerThreadAdjustmentStats", "handles": false } - ,{ "name": "LogThreadPoolWorkerThreadStart", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolWorkerThreadStart", "handles": false } - ,{ "name": "LogThreadPoolWorkerThreadStop", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolWorkerThreadStop", "handles": false } - ,{ "name": "LogThreadPoolWorkerThreadWait", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolWorkerThreadWait", "handles": false } - ,{ "name": "LogThreadPoolWorkingThreadCount", "func": "ves_icall_System_Diagnostics_Tracing_NativeRuntimeEventSource_LogThreadPoolWorkingThreadCount", "handles": false } -]}, - { "klass":"System.Enum", "icalls": [{} ,{ "name": "GetEnumValuesAndNames", "func": "ves_icall_System_Enum_GetEnumValuesAndNames_raw", "handles": true } - ,{ "name": "InternalBoxEnum", "func": "ves_icall_System_Enum_ToObject_raw", "handles": true } - ,{ "name": "InternalGetCorElementType", "func": "ves_icall_System_Enum_InternalGetCorElementType_raw", "handles": true } - ,{ "name": "InternalGetUnderlyingType", "func": "ves_icall_System_Enum_get_underlying_type_raw", "handles": true } - ,{ "name": "InternalHasFlag", "func": "ves_icall_System_Enum_InternalHasFlag_raw", "handles": true } -]}, - { "klass":"System.Environment", "icalls": [{} ,{ "name": "Exit", "func": "ves_icall_System_Environment_Exit", "handles": false } - ,{ "name": "FailFast", "func": "ves_icall_System_Environment_FailFast_raw", "handles": true } - ,{ "name": "GetCommandLineArgs", "func": "ves_icall_System_Environment_GetCommandLineArgs_raw", "handles": true } - ,{ "name": "GetProcessorCount", "func": "ves_icall_System_Environment_get_ProcessorCount", "handles": false } - ,{ "name": "get_ExitCode", "func": "mono_environment_exitcode_get", "handles": false } - ,{ "name": "get_TickCount", "func": "ves_icall_System_Environment_get_TickCount", "handles": false } - ,{ "name": "get_TickCount64", "func": "ves_icall_System_Environment_get_TickCount64", "handles": false } - ,{ "name": "set_ExitCode", "func": "mono_environment_exitcode_set", "handles": false } -]}, - { "klass":"System.GC", "icalls": [{} ,{ "name": "AllocPinnedArray", "func": "ves_icall_System_GC_AllocPinnedArray_raw", "handles": true } - ,{ "name": "GetAllocatedBytesForCurrentThread", "func": "ves_icall_System_GC_GetAllocatedBytesForCurrentThread", "handles": false } - ,{ "name": "GetCollectionCount", "func": "ves_icall_System_GC_GetCollectionCount", "handles": false } - ,{ "name": "GetGeneration", "func": "ves_icall_System_GC_GetGeneration_raw", "handles": true } - ,{ "name": "GetMaxGeneration", "func": "ves_icall_System_GC_GetMaxGeneration", "handles": false } - ,{ "name": "GetTotalAllocatedBytes", "func": "ves_icall_System_GC_GetTotalAllocatedBytes_raw", "handles": true } - ,{ "name": "GetTotalMemory", "func": "ves_icall_System_GC_GetTotalMemory", "handles": false } - ,{ "name": "InternalCollect", "func": "ves_icall_System_GC_InternalCollect", "handles": false } - ,{ "name": "RecordPressure", "func": "ves_icall_System_GC_RecordPressure", "handles": false } - ,{ "name": "WaitForPendingFinalizers", "func": "ves_icall_System_GC_WaitForPendingFinalizers", "handles": false } - ,{ "name": "_GetGCMemoryInfo", "func": "ves_icall_System_GC_GetGCMemoryInfo", "handles": false } - ,{ "name": "_ReRegisterForFinalize", "func": "ves_icall_System_GC_ReRegisterForFinalize_raw", "handles": true } - ,{ "name": "_SuppressFinalize", "func": "ves_icall_System_GC_SuppressFinalize_raw", "handles": true } - ,{ "name": "get_ephemeron_tombstone", "func": "ves_icall_System_GC_get_ephemeron_tombstone_raw", "handles": true } - ,{ "name": "register_ephemeron_array", "func": "ves_icall_System_GC_register_ephemeron_array_raw", "handles": true } -]}, - { "klass":"System.IO.Stream", "icalls": [{} ,{ "name": "HasOverriddenBeginEndRead", "func": "ves_icall_System_IO_Stream_HasOverriddenBeginEndRead_raw", "handles": true } - ,{ "name": "HasOverriddenBeginEndWrite", "func": "ves_icall_System_IO_Stream_HasOverriddenBeginEndWrite_raw", "handles": true } -]}, - { "klass":"System.Math", "icalls": [{} ,{ "name": "Abs(double)", "func": "ves_icall_System_Math_Abs_double", "handles": false } - ,{ "name": "Abs(single)", "func": "ves_icall_System_Math_Abs_single", "handles": false } - ,{ "name": "Acos", "func": "ves_icall_System_Math_Acos", "handles": false } - ,{ "name": "Acosh", "func": "ves_icall_System_Math_Acosh", "handles": false } - ,{ "name": "Asin", "func": "ves_icall_System_Math_Asin", "handles": false } - ,{ "name": "Asinh", "func": "ves_icall_System_Math_Asinh", "handles": false } - ,{ "name": "Atan", "func": "ves_icall_System_Math_Atan", "handles": false } - ,{ "name": "Atan2", "func": "ves_icall_System_Math_Atan2", "handles": false } - ,{ "name": "Atanh", "func": "ves_icall_System_Math_Atanh", "handles": false } - ,{ "name": "Cbrt", "func": "ves_icall_System_Math_Cbrt", "handles": false } - ,{ "name": "Ceiling", "func": "ves_icall_System_Math_Ceiling", "handles": false } - ,{ "name": "Cos", "func": "ves_icall_System_Math_Cos", "handles": false } - ,{ "name": "Cosh", "func": "ves_icall_System_Math_Cosh", "handles": false } - ,{ "name": "Exp", "func": "ves_icall_System_Math_Exp", "handles": false } - ,{ "name": "FMod", "func": "ves_icall_System_Math_FMod", "handles": false } - ,{ "name": "Floor", "func": "ves_icall_System_Math_Floor", "handles": false } - ,{ "name": "FusedMultiplyAdd", "func": "ves_icall_System_Math_FusedMultiplyAdd", "handles": false } - ,{ "name": "ILogB", "func": "ves_icall_System_Math_ILogB", "handles": false } - ,{ "name": "Log", "func": "ves_icall_System_Math_Log", "handles": false } - ,{ "name": "Log10", "func": "ves_icall_System_Math_Log10", "handles": false } - ,{ "name": "Log2", "func": "ves_icall_System_Math_Log2", "handles": false } - ,{ "name": "ModF", "func": "ves_icall_System_Math_ModF", "handles": false } - ,{ "name": "Pow", "func": "ves_icall_System_Math_Pow", "handles": false } - ,{ "name": "Round", "func": "ves_icall_System_Math_Round", "handles": false } - ,{ "name": "Sin", "func": "ves_icall_System_Math_Sin", "handles": false } - ,{ "name": "Sinh", "func": "ves_icall_System_Math_Sinh", "handles": false } - ,{ "name": "Sqrt", "func": "ves_icall_System_Math_Sqrt", "handles": false } - ,{ "name": "Tan", "func": "ves_icall_System_Math_Tan", "handles": false } - ,{ "name": "Tanh", "func": "ves_icall_System_Math_Tanh", "handles": false } -]}, - { "klass":"System.MathF", "icalls": [{} ,{ "name": "Acos", "func": "ves_icall_System_MathF_Acos", "handles": false } - ,{ "name": "Acosh", "func": "ves_icall_System_MathF_Acosh", "handles": false } - ,{ "name": "Asin", "func": "ves_icall_System_MathF_Asin", "handles": false } - ,{ "name": "Asinh", "func": "ves_icall_System_MathF_Asinh", "handles": false } - ,{ "name": "Atan", "func": "ves_icall_System_MathF_Atan", "handles": false } - ,{ "name": "Atan2", "func": "ves_icall_System_MathF_Atan2", "handles": false } - ,{ "name": "Atanh", "func": "ves_icall_System_MathF_Atanh", "handles": false } - ,{ "name": "Cbrt", "func": "ves_icall_System_MathF_Cbrt", "handles": false } - ,{ "name": "Ceiling", "func": "ves_icall_System_MathF_Ceiling", "handles": false } - ,{ "name": "Cos", "func": "ves_icall_System_MathF_Cos", "handles": false } - ,{ "name": "Cosh", "func": "ves_icall_System_MathF_Cosh", "handles": false } - ,{ "name": "Exp", "func": "ves_icall_System_MathF_Exp", "handles": false } - ,{ "name": "FMod", "func": "ves_icall_System_MathF_FMod", "handles": false } - ,{ "name": "Floor", "func": "ves_icall_System_MathF_Floor", "handles": false } - ,{ "name": "FusedMultiplyAdd", "func": "ves_icall_System_MathF_FusedMultiplyAdd", "handles": false } - ,{ "name": "ILogB", "func": "ves_icall_System_MathF_ILogB", "handles": false } - ,{ "name": "Log", "func": "ves_icall_System_MathF_Log", "handles": false } - ,{ "name": "Log10", "func": "ves_icall_System_MathF_Log10", "handles": false } - ,{ "name": "Log2", "func": "ves_icall_System_MathF_Log2", "handles": false } - ,{ "name": "ModF(single,single*)", "func": "ves_icall_System_MathF_ModF", "handles": false } - ,{ "name": "Pow", "func": "ves_icall_System_MathF_Pow", "handles": false } - ,{ "name": "Sin", "func": "ves_icall_System_MathF_Sin", "handles": false } - ,{ "name": "Sinh", "func": "ves_icall_System_MathF_Sinh", "handles": false } - ,{ "name": "Sqrt", "func": "ves_icall_System_MathF_Sqrt", "handles": false } - ,{ "name": "Tan", "func": "ves_icall_System_MathF_Tan", "handles": false } - ,{ "name": "Tanh", "func": "ves_icall_System_MathF_Tanh", "handles": false } -]}, - { "klass":"System.Object", "icalls": [{} ,{ "name": "MemberwiseClone", "func": "ves_icall_System_Object_MemberwiseClone_raw", "handles": true } -]}, - { "klass":"System.Reflection.Assembly", "icalls": [{} ,{ "name": "GetCallingAssembly", "func": "ves_icall_System_Reflection_Assembly_GetCallingAssembly_raw", "handles": true } - ,{ "name": "GetEntryAssemblyNative", "func": "ves_icall_System_Reflection_Assembly_GetEntryAssembly_raw", "handles": true } - ,{ "name": "GetExecutingAssembly", "func": "ves_icall_System_Reflection_Assembly_GetExecutingAssembly_raw", "handles": true } - ,{ "name": "InternalGetAssemblyName", "func": "ves_icall_System_Reflection_Assembly_InternalGetAssemblyName_raw", "handles": true } - ,{ "name": "InternalGetType", "func": "ves_icall_System_Reflection_Assembly_InternalGetType_raw", "handles": true } - ,{ "name": "InternalLoad", "func": "ves_icall_System_Reflection_Assembly_InternalLoad_raw", "handles": true } -]}, - { "klass":"System.Reflection.AssemblyName", "icalls": [{} ,{ "name": "GetNativeName", "func": "ves_icall_System_Reflection_AssemblyName_GetNativeName", "handles": false } - ,{ "name": "ParseAssemblyName", "func": "ves_icall_System_Reflection_AssemblyName_ParseAssemblyName", "handles": false } - ,{ "name": "get_public_token", "func": "mono_digest_get_public_token", "handles": false } -]}, - { "klass":"System.Reflection.CustomAttribute", "icalls": [{} ,{ "name": "GetCustomAttributesDataInternal", "func": "ves_icall_MonoCustomAttrs_GetCustomAttributesDataInternal_raw", "handles": true } - ,{ "name": "GetCustomAttributesInternal", "func": "ves_icall_MonoCustomAttrs_GetCustomAttributesInternal_raw", "handles": true } - ,{ "name": "IsDefinedInternal", "func": "ves_icall_MonoCustomAttrs_IsDefinedInternal_raw", "handles": true } -]}, - { "klass":"System.Reflection.Emit.AssemblyBuilder", "icalls": [{} ,{ "name": "UpdateNativeCustomAttributes", "func": "ves_icall_AssemblyBuilder_UpdateNativeCustomAttributes_raw", "handles": true } - ,{ "name": "basic_init", "func": "ves_icall_AssemblyBuilder_basic_init_raw", "handles": true } -]}, - { "klass":"System.Reflection.Emit.CustomAttributeBuilder", "icalls": [{} ,{ "name": "GetBlob", "func": "ves_icall_CustomAttributeBuilder_GetBlob_raw", "handles": true } -]}, - { "klass":"System.Reflection.Emit.DynamicMethod", "icalls": [{} ,{ "name": "create_dynamic_method", "func": "ves_icall_DynamicMethod_create_dynamic_method_raw", "handles": true } -]}, - { "klass":"System.Reflection.Emit.EnumBuilder", "icalls": [{} ,{ "name": "setup_enum_type", "func": "ves_icall_EnumBuilder_setup_enum_type_raw", "handles": true } -]}, - { "klass":"System.Reflection.Emit.ModuleBuilder", "icalls": [{} ,{ "name": "GetRegisteredToken", "func": "ves_icall_ModuleBuilder_GetRegisteredToken_raw", "handles": true } - ,{ "name": "RegisterToken", "func": "ves_icall_ModuleBuilder_RegisterToken_raw", "handles": true } - ,{ "name": "basic_init", "func": "ves_icall_ModuleBuilder_basic_init_raw", "handles": true } - ,{ "name": "getMethodToken", "func": "ves_icall_ModuleBuilder_getMethodToken_raw", "handles": true } - ,{ "name": "getToken", "func": "ves_icall_ModuleBuilder_getToken_raw", "handles": true } - ,{ "name": "getUSIndex", "func": "ves_icall_ModuleBuilder_getUSIndex_raw", "handles": true } - ,{ "name": "set_wrappers_type", "func": "ves_icall_ModuleBuilder_set_wrappers_type_raw", "handles": true } -]}, - { "klass":"System.Reflection.Emit.SignatureHelper", "icalls": [{} ,{ "name": "get_signature_field", "func": "ves_icall_SignatureHelper_get_signature_field_raw", "handles": true } - ,{ "name": "get_signature_local", "func": "ves_icall_SignatureHelper_get_signature_local_raw", "handles": true } -]}, - { "klass":"System.Reflection.Emit.TypeBuilder", "icalls": [{} ,{ "name": "create_runtime_class", "func": "ves_icall_TypeBuilder_create_runtime_class_raw", "handles": true } -]}, - { "klass":"System.Reflection.FieldInfo", "icalls": [{} ,{ "name": "get_marshal_info", "func": "ves_icall_System_Reflection_FieldInfo_get_marshal_info_raw", "handles": true } - ,{ "name": "internal_from_handle_type", "func": "ves_icall_System_Reflection_FieldInfo_internal_from_handle_type_raw", "handles": true } -]}, - { "klass":"System.Reflection.Metadata.MetadataUpdater", "icalls": [{} ,{ "name": "ApplyUpdateEnabled", "func": "ves_icall_AssemblyExtensions_ApplyUpdateEnabled", "handles": false } - ,{ "name": "ApplyUpdate_internal", "func": "ves_icall_AssemblyExtensions_ApplyUpdate", "handles": false } -]}, - { "klass":"System.Reflection.MethodBase", "icalls": [{} ,{ "name": "GetCurrentMethod", "func": "ves_icall_GetCurrentMethod_raw", "handles": true } -]}, - { "klass":"System.Reflection.MonoMethodInfo", "icalls": [{} ,{ "name": "get_method_attributes", "func": "ves_icall_get_method_attributes", "handles": false } - ,{ "name": "get_method_info", "func": "ves_icall_get_method_info_raw", "handles": true } - ,{ "name": "get_parameter_info", "func": "ves_icall_System_Reflection_MonoMethodInfo_get_parameter_info_raw", "handles": true } - ,{ "name": "get_retval_marshal", "func": "ves_icall_System_MonoMethodInfo_get_retval_marshal_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeAssembly", "icalls": [{} ,{ "name": "GetExportedTypes", "func": "ves_icall_System_Reflection_RuntimeAssembly_GetExportedTypes_raw", "handles": true } - ,{ "name": "GetFilesInternal", "func": "ves_icall_System_Reflection_RuntimeAssembly_GetFilesInternal_raw", "handles": true } - ,{ "name": "GetManifestModuleInternal", "func": "ves_icall_System_Reflection_Assembly_GetManifestModuleInternal_raw", "handles": true } - ,{ "name": "GetManifestResourceInfoInternal", "func": "ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceInfoInternal_raw", "handles": true } - ,{ "name": "GetManifestResourceInternal", "func": "ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceInternal_raw", "handles": true } - ,{ "name": "GetManifestResourceNames", "func": "ves_icall_System_Reflection_RuntimeAssembly_GetManifestResourceNames_raw", "handles": true } - ,{ "name": "GetModulesInternal", "func": "ves_icall_System_Reflection_RuntimeAssembly_GetModulesInternal_raw", "handles": true } - ,{ "name": "GetTopLevelForwardedTypes", "func": "ves_icall_System_Reflection_RuntimeAssembly_GetTopLevelForwardedTypes_raw", "handles": true } - ,{ "name": "InternalGetReferencedAssemblies", "func": "ves_icall_System_Reflection_Assembly_InternalGetReferencedAssemblies_raw", "handles": true } - ,{ "name": "InternalImageRuntimeVersion", "func": "ves_icall_System_Reflection_RuntimeAssembly_InternalImageRuntimeVersion_raw", "handles": true } - ,{ "name": "get_EntryPoint", "func": "ves_icall_System_Reflection_RuntimeAssembly_get_EntryPoint_raw", "handles": true } - ,{ "name": "get_code_base", "func": "ves_icall_System_Reflection_RuntimeAssembly_get_code_base_raw", "handles": true } - ,{ "name": "get_fullname", "func": "ves_icall_System_Reflection_RuntimeAssembly_get_fullname_raw", "handles": true } - ,{ "name": "get_location", "func": "ves_icall_System_Reflection_RuntimeAssembly_get_location_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeConstructorInfo", "icalls": [{} ,{ "name": "GetGenericMethodDefinition_impl", "func": "ves_icall_RuntimeMethodInfo_GetGenericMethodDefinition_raw", "handles": true } - ,{ "name": "InternalInvoke", "func": "ves_icall_InternalInvoke_raw", "handles": true } - ,{ "name": "get_metadata_token", "func": "ves_icall_reflection_get_token_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeCustomAttributeData", "icalls": [{} ,{ "name": "ResolveArgumentsInternal", "func": "ves_icall_System_Reflection_RuntimeCustomAttributeData_ResolveArgumentsInternal_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeEventInfo", "icalls": [{} ,{ "name": "get_event_info", "func": "ves_icall_RuntimeEventInfo_get_event_info_raw", "handles": true } - ,{ "name": "get_metadata_token", "func": "ves_icall_reflection_get_token_raw", "handles": true } - ,{ "name": "internal_from_handle_type", "func": "ves_icall_System_Reflection_EventInfo_internal_from_handle_type_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeFieldInfo", "icalls": [{} ,{ "name": "GetFieldOffset", "func": "ves_icall_RuntimeFieldInfo_GetFieldOffset_raw", "handles": true } - ,{ "name": "GetParentType", "func": "ves_icall_RuntimeFieldInfo_GetParentType_raw", "handles": true } - ,{ "name": "GetRawConstantValue", "func": "ves_icall_RuntimeFieldInfo_GetRawConstantValue_raw", "handles": true } - ,{ "name": "GetTypeModifiers", "func": "ves_icall_System_Reflection_FieldInfo_GetTypeModifiers_raw", "handles": true } - ,{ "name": "GetValueInternal", "func": "ves_icall_RuntimeFieldInfo_GetValueInternal_raw", "handles": true } - ,{ "name": "ResolveType", "func": "ves_icall_RuntimeFieldInfo_ResolveType_raw", "handles": true } - ,{ "name": "SetValueInternal", "func": "ves_icall_RuntimeFieldInfo_SetValueInternal_raw", "handles": true } - ,{ "name": "UnsafeGetValue", "func": "ves_icall_RuntimeFieldInfo_GetValueInternal_raw", "handles": true } - ,{ "name": "get_metadata_token", "func": "ves_icall_reflection_get_token_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeMethodInfo", "icalls": [{} ,{ "name": "GetGenericArguments", "func": "ves_icall_RuntimeMethodInfo_GetGenericArguments_raw", "handles": true } - ,{ "name": "GetGenericMethodDefinition_impl", "func": "ves_icall_RuntimeMethodInfo_GetGenericMethodDefinition_raw", "handles": true } - ,{ "name": "GetMethodBodyInternal", "func": "ves_icall_System_Reflection_RuntimeMethodInfo_GetMethodBodyInternal_raw", "handles": true } - ,{ "name": "GetMethodFromHandleInternalType_native", "func": "ves_icall_System_Reflection_RuntimeMethodInfo_GetMethodFromHandleInternalType_native_raw", "handles": true } - ,{ "name": "GetPInvoke", "func": "ves_icall_RuntimeMethodInfo_GetPInvoke_raw", "handles": true } - ,{ "name": "InternalInvoke", "func": "ves_icall_InternalInvoke_raw", "handles": true } - ,{ "name": "MakeGenericMethod_impl", "func": "ves_icall_RuntimeMethodInfo_MakeGenericMethod_impl_raw", "handles": true } - ,{ "name": "get_IsGenericMethod", "func": "ves_icall_RuntimeMethodInfo_get_IsGenericMethod_raw", "handles": true } - ,{ "name": "get_IsGenericMethodDefinition", "func": "ves_icall_RuntimeMethodInfo_get_IsGenericMethodDefinition_raw", "handles": true } - ,{ "name": "get_base_method", "func": "ves_icall_RuntimeMethodInfo_get_base_method_raw", "handles": true } - ,{ "name": "get_metadata_token", "func": "ves_icall_reflection_get_token_raw", "handles": true } - ,{ "name": "get_name", "func": "ves_icall_RuntimeMethodInfo_get_name_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeModule", "icalls": [{} ,{ "name": "GetGlobalType", "func": "ves_icall_System_Reflection_RuntimeModule_GetGlobalType_raw", "handles": true } - ,{ "name": "GetGuidInternal", "func": "ves_icall_System_Reflection_RuntimeModule_GetGuidInternal_raw", "handles": true } - ,{ "name": "GetMDStreamVersion", "func": "ves_icall_System_Reflection_RuntimeModule_GetMDStreamVersion_raw", "handles": true } - ,{ "name": "GetPEKind", "func": "ves_icall_System_Reflection_RuntimeModule_GetPEKind_raw", "handles": true } - ,{ "name": "InternalGetTypes", "func": "ves_icall_System_Reflection_RuntimeModule_InternalGetTypes_raw", "handles": true } - ,{ "name": "ResolveFieldToken", "func": "ves_icall_System_Reflection_RuntimeModule_ResolveFieldToken_raw", "handles": true } - ,{ "name": "ResolveMemberToken", "func": "ves_icall_System_Reflection_RuntimeModule_ResolveMemberToken_raw", "handles": true } - ,{ "name": "ResolveMethodToken", "func": "ves_icall_System_Reflection_RuntimeModule_ResolveMethodToken_raw", "handles": true } - ,{ "name": "ResolveSignature", "func": "ves_icall_System_Reflection_RuntimeModule_ResolveSignature_raw", "handles": true } - ,{ "name": "ResolveStringToken", "func": "ves_icall_System_Reflection_RuntimeModule_ResolveStringToken_raw", "handles": true } - ,{ "name": "ResolveTypeToken", "func": "ves_icall_System_Reflection_RuntimeModule_ResolveTypeToken_raw", "handles": true } - ,{ "name": "get_MetadataToken", "func": "ves_icall_reflection_get_token_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimeParameterInfo", "icalls": [{} ,{ "name": "GetMetadataToken", "func": "ves_icall_reflection_get_token_raw", "handles": true } - ,{ "name": "GetTypeModifiers", "func": "ves_icall_RuntimeParameterInfo_GetTypeModifiers_raw", "handles": true } -]}, - { "klass":"System.Reflection.RuntimePropertyInfo", "icalls": [{} ,{ "name": "GetTypeModifiers", "func": "ves_icall_RuntimePropertyInfo_GetTypeModifiers_raw", "handles": true } - ,{ "name": "get_default_value", "func": "ves_icall_property_info_get_default_value_raw", "handles": true } - ,{ "name": "get_metadata_token", "func": "ves_icall_reflection_get_token_raw", "handles": true } - ,{ "name": "get_property_info", "func": "ves_icall_RuntimePropertyInfo_get_property_info_raw", "handles": true } - ,{ "name": "internal_from_handle_type", "func": "ves_icall_System_Reflection_RuntimePropertyInfo_internal_from_handle_type_raw", "handles": true } -]}, - { "klass":"System.Runtime.CompilerServices.RuntimeHelpers", "icalls": [{} ,{ "name": "GetObjectValue", "func": "ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetObjectValue_raw", "handles": true } - ,{ "name": "GetUninitializedObjectInternal", "func": "ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetUninitializedObjectInternal_raw", "handles": true } - ,{ "name": "InitializeArray", "func": "ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray_raw", "handles": true } - ,{ "name": "InternalGetHashCode", "func": "mono_object_hash_icall_raw", "handles": true } - ,{ "name": "PrepareMethod", "func": "ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_PrepareMethod_raw", "handles": true } - ,{ "name": "RunClassConstructor", "func": "ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor_raw", "handles": true } - ,{ "name": "RunModuleConstructor", "func": "ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor_raw", "handles": true } - ,{ "name": "SufficientExecutionStack", "func": "ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_SufficientExecutionStack", "handles": false } -]}, - { "klass":"System.Runtime.InteropServices.GCHandle", "icalls": [{} ,{ "name": "InternalAlloc", "func": "ves_icall_System_GCHandle_InternalAlloc_raw", "handles": true } - ,{ "name": "InternalFree", "func": "ves_icall_System_GCHandle_InternalFree_raw", "handles": true } - ,{ "name": "InternalGet", "func": "ves_icall_System_GCHandle_InternalGet_raw", "handles": true } - ,{ "name": "InternalSet", "func": "ves_icall_System_GCHandle_InternalSet_raw", "handles": true } -]}, - { "klass":"System.Runtime.InteropServices.Marshal", "icalls": [{} ,{ "name": "DestroyStructure", "func": "ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure_raw", "handles": true } - ,{ "name": "GetDelegateForFunctionPointerInternal", "func": "ves_icall_System_Runtime_InteropServices_Marshal_GetDelegateForFunctionPointerInternal_raw", "handles": true } - ,{ "name": "GetFunctionPointerForDelegateInternal", "func": "ves_icall_System_Runtime_InteropServices_Marshal_GetFunctionPointerForDelegateInternal_raw", "handles": true } - ,{ "name": "GetLastPInvokeError", "func": "ves_icall_System_Runtime_InteropServices_Marshal_GetLastPInvokeError", "handles": false } - ,{ "name": "IsPinnableType", "func": "ves_icall_System_Runtime_InteropServices_Marshal_IsPinnableType_raw", "handles": true } - ,{ "name": "OffsetOf", "func": "ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf_raw", "handles": true } - ,{ "name": "PrelinkInternal", "func": "ves_icall_System_Runtime_InteropServices_Marshal_Prelink_raw", "handles": true } - ,{ "name": "PtrToStructureInternal", "func": "ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructureInternal_raw", "handles": true } - ,{ "name": "SetLastPInvokeError", "func": "ves_icall_System_Runtime_InteropServices_Marshal_SetLastPInvokeError", "handles": false } - ,{ "name": "SizeOf", "func": "ves_icall_System_Runtime_InteropServices_Marshal_SizeOf_raw", "handles": true } - ,{ "name": "SizeOfHelper", "func": "ves_icall_System_Runtime_InteropServices_Marshal_SizeOfHelper_raw", "handles": true } - ,{ "name": "StructureToPtr", "func": "ves_icall_System_Runtime_InteropServices_Marshal_StructureToPtr_raw", "handles": true } -]}, - { "klass":"System.Runtime.InteropServices.NativeLibrary", "icalls": [{} ,{ "name": "FreeLib", "func": "ves_icall_System_Runtime_InteropServices_NativeLibrary_FreeLib_raw", "handles": true } - ,{ "name": "GetSymbol", "func": "ves_icall_System_Runtime_InteropServices_NativeLibrary_GetSymbol_raw", "handles": true } - ,{ "name": "LoadByName", "func": "ves_icall_System_Runtime_InteropServices_NativeLibrary_LoadByName_raw", "handles": true } - ,{ "name": "LoadFromPath", "func": "ves_icall_System_Runtime_InteropServices_NativeLibrary_LoadFromPath_raw", "handles": true } -]}, - { "klass":"System.Runtime.Loader.AssemblyLoadContext", "icalls": [{} ,{ "name": "GetLoadContextForAssembly", "func": "ves_icall_System_Runtime_Loader_AssemblyLoadContext_GetLoadContextForAssembly_raw", "handles": true } - ,{ "name": "InternalGetLoadedAssemblies", "func": "ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalGetLoadedAssemblies_raw", "handles": true } - ,{ "name": "InternalInitializeNativeALC", "func": "ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalInitializeNativeALC_raw", "handles": true } - ,{ "name": "InternalLoadFile", "func": "ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalLoadFile_raw", "handles": true } - ,{ "name": "InternalLoadFromStream", "func": "ves_icall_System_Runtime_Loader_AssemblyLoadContext_InternalLoadFromStream_raw", "handles": true } - ,{ "name": "PrepareForAssemblyLoadContextRelease", "func": "ves_icall_System_Runtime_Loader_AssemblyLoadContext_PrepareForAssemblyLoadContextRelease_raw", "handles": true } -]}, - { "klass":"System.RuntimeFieldHandle", "icalls": [{} ,{ "name": "GetValueDirect", "func": "ves_icall_System_RuntimeFieldHandle_GetValueDirect_raw", "handles": true } - ,{ "name": "SetValueDirect", "func": "ves_icall_System_RuntimeFieldHandle_SetValueDirect_raw", "handles": true } - ,{ "name": "SetValueInternal", "func": "ves_icall_RuntimeFieldInfo_SetValueInternal_raw", "handles": true } -]}, - { "klass":"System.RuntimeMethodHandle", "icalls": [{} ,{ "name": "GetFunctionPointer", "func": "ves_icall_RuntimeMethodHandle_GetFunctionPointer_raw", "handles": true } -]}, - { "klass":"System.RuntimeType", "icalls": [{} ,{ "name": "CreateInstanceInternal", "func": "ves_icall_System_Activator_CreateInstanceInternal_raw", "handles": true } - ,{ "name": "GetConstructors_native", "func": "ves_icall_RuntimeType_GetConstructors_native_raw", "handles": true } - ,{ "name": "GetCorrespondingInflatedConstructor", "func": "ves_icall_RuntimeType_GetCorrespondingInflatedMethod_raw", "handles": true } - ,{ "name": "GetCorrespondingInflatedMethod", "func": "ves_icall_RuntimeType_GetCorrespondingInflatedMethod_raw", "handles": true } - ,{ "name": "GetEvents_native", "func": "ves_icall_RuntimeType_GetEvents_native_raw", "handles": true } - ,{ "name": "GetFields_native", "func": "ves_icall_RuntimeType_GetFields_native_raw", "handles": true } - ,{ "name": "GetGenericArgumentsInternal", "func": "ves_icall_RuntimeType_GetGenericArguments_raw", "handles": true } - ,{ "name": "GetGenericParameterPosition", "func": "ves_icall_RuntimeType_GetGenericParameterPosition_raw", "handles": true } - ,{ "name": "GetInterfaceMapData", "func": "ves_icall_RuntimeType_GetInterfaceMapData_raw", "handles": true } - ,{ "name": "GetInterfaces", "func": "ves_icall_RuntimeType_GetInterfaces_raw", "handles": true } - ,{ "name": "GetMethodsByName_native", "func": "ves_icall_RuntimeType_GetMethodsByName_native_raw", "handles": true } - ,{ "name": "GetNestedTypes_native", "func": "ves_icall_RuntimeType_GetNestedTypes_native_raw", "handles": true } - ,{ "name": "GetPacking", "func": "ves_icall_RuntimeType_GetPacking_raw", "handles": true } - ,{ "name": "GetPropertiesByName_native", "func": "ves_icall_RuntimeType_GetPropertiesByName_native_raw", "handles": true } - ,{ "name": "MakeGenericType", "func": "ves_icall_RuntimeType_MakeGenericType_raw", "handles": true } - ,{ "name": "MakePointerType", "func": "ves_icall_RuntimeType_MakePointerType_raw", "handles": true } - ,{ "name": "getFullName", "func": "ves_icall_System_RuntimeType_getFullName_raw", "handles": true } - ,{ "name": "get_DeclaringMethod", "func": "ves_icall_RuntimeType_get_DeclaringMethod_raw", "handles": true } - ,{ "name": "get_DeclaringType", "func": "ves_icall_RuntimeType_get_DeclaringType_raw", "handles": true } - ,{ "name": "get_Name", "func": "ves_icall_RuntimeType_get_Name_raw", "handles": true } - ,{ "name": "get_Namespace", "func": "ves_icall_RuntimeType_get_Namespace_raw", "handles": true } - ,{ "name": "make_array_type", "func": "ves_icall_RuntimeType_make_array_type_raw", "handles": true } - ,{ "name": "make_byref_type", "func": "ves_icall_RuntimeType_make_byref_type_raw", "handles": true } -]}, - { "klass":"System.RuntimeTypeHandle", "icalls": [{} ,{ "name": "GetArrayRank", "func": "ves_icall_RuntimeTypeHandle_GetArrayRank_raw", "handles": true } - ,{ "name": "GetAssembly", "func": "ves_icall_RuntimeTypeHandle_GetAssembly_raw", "handles": true } - ,{ "name": "GetAttributes", "func": "ves_icall_RuntimeTypeHandle_GetAttributes_raw", "handles": true } - ,{ "name": "GetBaseType", "func": "ves_icall_RuntimeTypeHandle_GetBaseType_raw", "handles": true } - ,{ "name": "GetCorElementType", "func": "ves_icall_RuntimeTypeHandle_GetCorElementType_raw", "handles": true } - ,{ "name": "GetElementType", "func": "ves_icall_RuntimeTypeHandle_GetElementType_raw", "handles": true } - ,{ "name": "GetGenericParameterInfo", "func": "ves_icall_RuntimeTypeHandle_GetGenericParameterInfo_raw", "handles": true } - ,{ "name": "GetGenericTypeDefinition_impl", "func": "ves_icall_RuntimeTypeHandle_GetGenericTypeDefinition_impl_raw", "handles": true } - ,{ "name": "GetMetadataToken", "func": "ves_icall_reflection_get_token_raw", "handles": true } - ,{ "name": "GetModule", "func": "ves_icall_RuntimeTypeHandle_GetModule_raw", "handles": true } - ,{ "name": "HasInstantiation", "func": "ves_icall_RuntimeTypeHandle_HasInstantiation_raw", "handles": true } - ,{ "name": "HasReferences", "func": "ves_icall_RuntimeTypeHandle_HasReferences_raw", "handles": true } - ,{ "name": "IsByRefLike", "func": "ves_icall_RuntimeTypeHandle_IsByRefLike_raw", "handles": true } - ,{ "name": "IsComObject", "func": "ves_icall_RuntimeTypeHandle_IsComObject_raw", "handles": true } - ,{ "name": "IsGenericTypeDefinition", "func": "ves_icall_RuntimeTypeHandle_IsGenericTypeDefinition_raw", "handles": true } - ,{ "name": "IsGenericVariable", "func": "ves_icall_RuntimeTypeHandle_IsGenericVariable_raw", "handles": true } - ,{ "name": "IsInstanceOfType", "func": "ves_icall_RuntimeTypeHandle_IsInstanceOfType_raw", "handles": true } - ,{ "name": "internal_from_name", "func": "ves_icall_System_RuntimeTypeHandle_internal_from_name_raw", "handles": true } - ,{ "name": "is_subclass_of", "func": "ves_icall_RuntimeTypeHandle_is_subclass_of", "handles": false } - ,{ "name": "type_is_assignable_from", "func": "ves_icall_RuntimeTypeHandle_type_is_assignable_from_raw", "handles": true } -]}, - { "klass":"System.String", "icalls": [{} ,{ "name": ".ctor(System.ReadOnlySpan`1)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(char*)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(char*,int,int)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(char,int)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(char[])", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(char[],int,int)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(sbyte*)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(sbyte*,int,int)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": ".ctor(sbyte*,int,int,System.Text.Encoding)", "func": "ves_icall_System_String_ctor_RedirectToCreateString", "handles": false } - ,{ "name": "FastAllocateString", "func": "ves_icall_System_String_FastAllocateString_raw", "handles": true } - ,{ "name": "InternalIntern", "func": "ves_icall_System_String_InternalIntern_raw", "handles": true } - ,{ "name": "InternalIsInterned", "func": "ves_icall_System_String_InternalIsInterned_raw", "handles": true } -]}, - { "klass":"System.Threading.Interlocked", "icalls": [{} ,{ "name": "Add(int&,int)", "func": "ves_icall_System_Threading_Interlocked_Add_Int", "handles": false } - ,{ "name": "Add(long&,long)", "func": "ves_icall_System_Threading_Interlocked_Add_Long", "handles": false } - ,{ "name": "CompareExchange(double&,double,double)", "func": "ves_icall_System_Threading_Interlocked_CompareExchange_Double", "handles": false } - ,{ "name": "CompareExchange(int&,int,int)", "func": "ves_icall_System_Threading_Interlocked_CompareExchange_Int", "handles": false } - ,{ "name": "CompareExchange(int&,int,int,bool&)", "func": "ves_icall_System_Threading_Interlocked_CompareExchange_Int_Success", "handles": false } - ,{ "name": "CompareExchange(long&,long,long)", "func": "ves_icall_System_Threading_Interlocked_CompareExchange_Long", "handles": false } - ,{ "name": "CompareExchange(object&,object&,object&,object&)", "func": "ves_icall_System_Threading_Interlocked_CompareExchange_Object", "handles": false } - ,{ "name": "CompareExchange(single&,single,single)", "func": "ves_icall_System_Threading_Interlocked_CompareExchange_Single", "handles": false } - ,{ "name": "Decrement(int&)", "func": "ves_icall_System_Threading_Interlocked_Decrement_Int", "handles": false } - ,{ "name": "Decrement(long&)", "func": "ves_icall_System_Threading_Interlocked_Decrement_Long", "handles": false } - ,{ "name": "Exchange(double&,double)", "func": "ves_icall_System_Threading_Interlocked_Exchange_Double", "handles": false } - ,{ "name": "Exchange(int&,int)", "func": "ves_icall_System_Threading_Interlocked_Exchange_Int", "handles": false } - ,{ "name": "Exchange(long&,long)", "func": "ves_icall_System_Threading_Interlocked_Exchange_Long", "handles": false } - ,{ "name": "Exchange(object&,object&,object&)", "func": "ves_icall_System_Threading_Interlocked_Exchange_Object", "handles": false } - ,{ "name": "Exchange(single&,single)", "func": "ves_icall_System_Threading_Interlocked_Exchange_Single", "handles": false } - ,{ "name": "Increment(int&)", "func": "ves_icall_System_Threading_Interlocked_Increment_Int", "handles": false } - ,{ "name": "Increment(long&)", "func": "ves_icall_System_Threading_Interlocked_Increment_Long", "handles": false } - ,{ "name": "MemoryBarrierProcessWide", "func": "ves_icall_System_Threading_Interlocked_MemoryBarrierProcessWide", "handles": false } - ,{ "name": "Read(long&)", "func": "ves_icall_System_Threading_Interlocked_Read_Long", "handles": false } -]}, - { "klass":"System.Threading.LowLevelLifoSemaphore", "icalls": [{} ,{ "name": "DeleteInternal", "func": "ves_icall_System_Threading_LowLevelLifoSemaphore_DeleteInternal", "handles": false } - ,{ "name": "InitInternal", "func": "ves_icall_System_Threading_LowLevelLifoSemaphore_InitInternal", "handles": false } - ,{ "name": "ReleaseInternal", "func": "ves_icall_System_Threading_LowLevelLifoSemaphore_ReleaseInternal", "handles": false } - ,{ "name": "TimedWaitInternal", "func": "ves_icall_System_Threading_LowLevelLifoSemaphore_TimedWaitInternal", "handles": false } -]}, - { "klass":"System.Threading.Monitor", "icalls": [{} ,{ "name": "Enter", "func": "ves_icall_System_Threading_Monitor_Monitor_Enter_raw", "handles": true } - ,{ "name": "Exit", "func": "mono_monitor_exit_icall_raw", "handles": true } - ,{ "name": "Monitor_pulse", "func": "ves_icall_System_Threading_Monitor_Monitor_pulse_raw", "handles": true } - ,{ "name": "Monitor_pulse_all", "func": "ves_icall_System_Threading_Monitor_Monitor_pulse_all_raw", "handles": true } - ,{ "name": "Monitor_test_owner", "func": "ves_icall_System_Threading_Monitor_Monitor_test_owner_raw", "handles": true } - ,{ "name": "Monitor_test_synchronised", "func": "ves_icall_System_Threading_Monitor_Monitor_test_synchronised_raw", "handles": true } - ,{ "name": "Monitor_wait", "func": "ves_icall_System_Threading_Monitor_Monitor_wait_raw", "handles": true } - ,{ "name": "get_LockContentionCount", "func": "ves_icall_System_Threading_Monitor_Monitor_LockContentionCount", "handles": false } - ,{ "name": "try_enter_with_atomic_var", "func": "ves_icall_System_Threading_Monitor_Monitor_try_enter_with_atomic_var_raw", "handles": true } -]}, - { "klass":"System.Threading.Thread", "icalls": [{} ,{ "name": "ClrState", "func": "ves_icall_System_Threading_Thread_ClrState_raw", "handles": true } - ,{ "name": "FreeInternal", "func": "ves_icall_System_Threading_InternalThread_Thread_free_internal_raw", "handles": true } - ,{ "name": "GetCurrentOSThreadId", "func": "ves_icall_System_Threading_Thread_GetCurrentOSThreadId_raw", "handles": true } - ,{ "name": "GetCurrentProcessorNumber", "func": "ves_icall_System_Threading_Thread_GetCurrentProcessorNumber_raw", "handles": true } - ,{ "name": "GetCurrentThread", "func": "ves_icall_System_Threading_Thread_GetCurrentThread", "handles": false } - ,{ "name": "GetState", "func": "ves_icall_System_Threading_Thread_GetState_raw", "handles": true } - ,{ "name": "InitInternal", "func": "ves_icall_System_Threading_Thread_InitInternal_raw", "handles": true } - ,{ "name": "InterruptInternal", "func": "ves_icall_System_Threading_Thread_Interrupt_internal_raw", "handles": true } - ,{ "name": "JoinInternal", "func": "ves_icall_System_Threading_Thread_Join_internal_raw", "handles": true } - ,{ "name": "SetName_icall", "func": "ves_icall_System_Threading_Thread_SetName_icall_raw", "handles": true } - ,{ "name": "SetPriority", "func": "ves_icall_System_Threading_Thread_SetPriority_raw", "handles": true } - ,{ "name": "SetState", "func": "ves_icall_System_Threading_Thread_SetState_raw", "handles": true } - ,{ "name": "StartInternal", "func": "ves_icall_System_Threading_Thread_StartInternal_raw", "handles": true } - ,{ "name": "YieldInternal", "func": "ves_icall_System_Threading_Thread_YieldInternal", "handles": false } -]}, - { "klass":"System.Type", "icalls": [{} ,{ "name": "internal_from_handle", "func": "ves_icall_System_Type_internal_from_handle_raw", "handles": true } -]}, - { "klass":"System.TypedReference", "icalls": [{} ,{ "name": "InternalMakeTypedReference", "func": "ves_icall_System_TypedReference_InternalMakeTypedReference_raw", "handles": true } - ,{ "name": "InternalToObject", "func": "ves_icall_System_TypedReference_ToObject_raw", "handles": true } -]}, - { "klass":"System.ValueType", "icalls": [{} ,{ "name": "InternalEquals", "func": "ves_icall_System_ValueType_Equals_raw", "handles": true } - ,{ "name": "InternalGetHashCode", "func": "ves_icall_System_ValueType_InternalGetHashCode_raw", "handles": true } -]} -] diff --git a/Account_SQLite/obj/project.assets.json b/Account_SQLite/obj/project.assets.json deleted file mode 100644 index 1ab986be..00000000 --- a/Account_SQLite/obj/project.assets.json +++ /dev/null @@ -1,8850 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "LibSassBuilder/2.0.1": { - "type": "package", - "build": { - "build/_._": {} - } - }, - "Microsoft.AspNetCore.Authorization/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Metadata": "6.0.4", - "Microsoft.Extensions.Logging.Abstractions": "6.0.1", - "Microsoft.Extensions.Options": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} - } - }, - "Microsoft.AspNetCore.Components/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authorization": "6.0.4", - "Microsoft.AspNetCore.Components.Analyzers": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} - } - }, - "Microsoft.AspNetCore.Components.Analyzers/6.0.4": { - "type": "package", - "build": { - "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} - } - }, - "Microsoft.AspNetCore.Components.Forms/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} - } - }, - "Microsoft.AspNetCore.Components.Web/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components": "6.0.4", - "Microsoft.AspNetCore.Components.Forms": "6.0.4", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.JSInterop": "6.0.4", - "System.IO.Pipelines": "6.0.2" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} - } - }, - "Microsoft.AspNetCore.Components.WebAssembly/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components.Web": "6.0.4", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.JSInterop.WebAssembly": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} - }, - "build": { - "build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} - } - }, - "Microsoft.AspNetCore.Components.WebAssembly.DevServer/6.0.4": { - "type": "package", - "build": { - "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {} - } - }, - "Microsoft.AspNetCore.Metadata/6.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.Data.Sqlite.Core/6.0.4": { - "type": "package", - "dependencies": { - "SQLitePCLRaw.core": "2.0.6" - }, - "compile": { - "lib/net6.0/Microsoft.Data.Sqlite.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Data.Sqlite.dll": {} - } - }, - "Microsoft.EntityFrameworkCore/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "6.0.4", - "Microsoft.EntityFrameworkCore.Analyzers": "6.0.4", - "Microsoft.Extensions.Caching.Memory": "6.0.1", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "System.Collections.Immutable": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/6.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/6.0.4": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "6.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Data.Sqlite.Core": "6.0.4", - "Microsoft.EntityFrameworkCore.Relational": "6.0.4", - "Microsoft.Extensions.DependencyModel": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/6.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Text.Json": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.DependencyModel/6.0.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.1": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.JSInterop/6.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.JSInterop.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.JSInterop.dll": {} - } - }, - "Microsoft.JSInterop.WebAssembly/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.JSInterop": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Radzen.Blazor/3.18.15": { - "type": "package", - "dependencies": { - "LibSassBuilder": "2.0.1", - "Microsoft.AspNetCore.Components": "5.0.0", - "Microsoft.AspNetCore.Components.Web": "5.0.0", - "Microsoft.CSharp": "4.7.0", - "System.Linq.Dynamic.Core": "1.2.12" - }, - "compile": { - "lib/net5.0/Radzen.Blazor.dll": {} - }, - "runtime": { - "lib/net5.0/Radzen.Blazor.dll": {} - }, - "build": { - "buildTransitive/Radzen.Blazor.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Radzen.Blazor.props": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-x64" - } - } - }, - "sqlite-helper/1.3.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "SQLitePCLRaw.bundle_e_sqlite3": "1.1.8" - }, - "compile": { - "lib/netstandard1.4/SQLite.Net.dll": {} - }, - "runtime": { - "lib/netstandard1.4/SQLite.Net.dll": {} - } - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.0-pre20220318192836": { - "type": "package", - "dependencies": { - "SQLitePCLRaw.lib.e_sqlite3": "2.1.0-pre20220318192836", - "SQLitePCLRaw.provider.e_sqlite3": "2.1.0-pre20220318192836" - }, - "compile": { - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} - } - }, - "SQLitePCLRaw.core/2.1.0-pre20220318192836": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.3" - }, - "compile": { - "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} - } - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.0-pre20220318192836": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - }, - "build": { - "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} - }, - "runtimeTargets": { - "runtimes/alpine-arm/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "alpine-arm" - }, - "runtimes/alpine-arm64/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "alpine-arm64" - }, - "runtimes/alpine-x64/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "alpine-x64" - }, - "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a": { - "assetType": "native", - "rid": "browser-wasm" - }, - "runtimes/linux-arm/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-arm" - }, - "runtimes/linux-arm64/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-arm64" - }, - "runtimes/linux-armel/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-armel" - }, - "runtimes/linux-mips64/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-mips64" - }, - "runtimes/linux-musl-arm/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-musl-arm" - }, - "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-musl-arm64" - }, - "runtimes/linux-musl-x64/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-musl-x64" - }, - "runtimes/linux-s390x/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-s390x" - }, - "runtimes/linux-x64/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/linux-x86/native/libe_sqlite3.so": { - "assetType": "native", - "rid": "linux-x86" - }, - "runtimes/osx-arm64/native/libe_sqlite3.dylib": { - "assetType": "native", - "rid": "osx-arm64" - }, - "runtimes/osx-x64/native/libe_sqlite3.dylib": { - "assetType": "native", - "rid": "osx-x64" - }, - "runtimes/win-arm/native/e_sqlite3.dll": { - "assetType": "native", - "rid": "win-arm" - }, - "runtimes/win-arm64/native/e_sqlite3.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-x64/native/e_sqlite3.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x86/native/e_sqlite3.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.0-pre20220318192836": { - "type": "package", - "dependencies": { - "SQLitePCLRaw.core": "2.1.0-pre20220318192836" - }, - "compile": { - "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} - }, - "runtime": { - "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} - } - }, - "SqliteWasmHelper/1.0.43-beta-g31b50d1f54": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components.Web": "6.0.4", - "Microsoft.EntityFrameworkCore.Sqlite.Core": "6.0.4", - "SQLitePCLRaw.bundle_e_sqlite3": "2.1.0-pre20220318192836" - }, - "compile": { - "lib/net6.0/SqliteWasmHelper.dll": {} - }, - "runtime": { - "lib/net6.0/SqliteWasmHelper.dll": {} - }, - "contentFiles": { - "contentFiles/any/net6.0/wwwroot/browserCache.js": { - "buildAction": "Content", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "buildTransitive/SqliteWasmHelper.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/SqliteWasmHelper.props": {} - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/net6.0/System.Collections.Immutable.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Pipelines/6.0.2": { - "type": "package", - "compile": { - "lib/net6.0/System.IO.Pipelines.dll": {} - }, - "runtime": { - "lib/net6.0/System.IO.Pipelines.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "compile": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": {} - }, - "runtime": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { - "assetType": "runtime", - "rid": "browser" - } - } - }, - "System.Text.Json/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Text.Json.dll": {} - }, - "runtime": { - "lib/net6.0/System.Text.Json.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.2/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - } - }, - "net6.0/browser-wasm": { - "LibSassBuilder/2.0.1": { - "type": "package", - "build": { - "build/_._": {} - } - }, - "Microsoft.AspNetCore.Authorization/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Metadata": "6.0.4", - "Microsoft.Extensions.Logging.Abstractions": "6.0.1", - "Microsoft.Extensions.Options": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} - } - }, - "Microsoft.AspNetCore.Components/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authorization": "6.0.4", - "Microsoft.AspNetCore.Components.Analyzers": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} - } - }, - "Microsoft.AspNetCore.Components.Analyzers/6.0.4": { - "type": "package", - "build": { - "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} - } - }, - "Microsoft.AspNetCore.Components.Forms/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} - } - }, - "Microsoft.AspNetCore.Components.Web/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components": "6.0.4", - "Microsoft.AspNetCore.Components.Forms": "6.0.4", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.JSInterop": "6.0.4", - "System.IO.Pipelines": "6.0.2" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} - } - }, - "Microsoft.AspNetCore.Components.WebAssembly/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components.Web": "6.0.4", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.JSInterop.WebAssembly": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} - }, - "build": { - "build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} - } - }, - "Microsoft.AspNetCore.Components.WebAssembly.DevServer/6.0.4": { - "type": "package", - "build": { - "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {} - } - }, - "Microsoft.AspNetCore.Metadata/6.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.Data.Sqlite.Core/6.0.4": { - "type": "package", - "dependencies": { - "SQLitePCLRaw.core": "2.0.6" - }, - "compile": { - "lib/net6.0/Microsoft.Data.Sqlite.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Data.Sqlite.dll": {} - } - }, - "Microsoft.EntityFrameworkCore/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "6.0.4", - "Microsoft.EntityFrameworkCore.Analyzers": "6.0.4", - "Microsoft.Extensions.Caching.Memory": "6.0.1", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "System.Collections.Immutable": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/6.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/6.0.4": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "6.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Data.Sqlite.Core": "6.0.4", - "Microsoft.EntityFrameworkCore.Relational": "6.0.4", - "Microsoft.Extensions.DependencyModel": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/6.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Text.Json": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.DependencyModel/6.0.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.4", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.1": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.JSInterop/6.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.JSInterop.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.JSInterop.dll": {} - } - }, - "Microsoft.JSInterop.WebAssembly/6.0.4": { - "type": "package", - "dependencies": { - "Microsoft.JSInterop": "6.0.4" - }, - "compile": { - "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Radzen.Blazor/3.18.15": { - "type": "package", - "dependencies": { - "LibSassBuilder": "2.0.1", - "Microsoft.AspNetCore.Components": "5.0.0", - "Microsoft.AspNetCore.Components.Web": "5.0.0", - "Microsoft.CSharp": "4.7.0", - "System.Linq.Dynamic.Core": "1.2.12" - }, - "compile": { - "lib/net5.0/Radzen.Blazor.dll": {} - }, - "runtime": { - "lib/net5.0/Radzen.Blazor.dll": {} - }, - "build": { - "buildTransitive/Radzen.Blazor.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Radzen.Blazor.props": {} - } - }, - "runtime.any.System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "sqlite-helper/1.3.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "SQLitePCLRaw.bundle_e_sqlite3": "1.1.8" - }, - "compile": { - "lib/netstandard1.4/SQLite.Net.dll": {} - }, - "runtime": { - "lib/netstandard1.4/SQLite.Net.dll": {} - } - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.0-pre20220318192836": { - "type": "package", - "dependencies": { - "SQLitePCLRaw.lib.e_sqlite3": "2.1.0-pre20220318192836", - "SQLitePCLRaw.provider.e_sqlite3": "2.1.0-pre20220318192836" - }, - "compile": { - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} - } - }, - "SQLitePCLRaw.core/2.1.0-pre20220318192836": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.3" - }, - "compile": { - "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} - } - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.0-pre20220318192836": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - }, - "native": { - "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a": {} - }, - "build": { - "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} - } - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.0-pre20220318192836": { - "type": "package", - "dependencies": { - "SQLitePCLRaw.core": "2.1.0-pre20220318192836" - }, - "compile": { - "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} - }, - "runtime": { - "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} - } - }, - "SqliteWasmHelper/1.0.43-beta-g31b50d1f54": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components.Web": "6.0.4", - "Microsoft.EntityFrameworkCore.Sqlite.Core": "6.0.4", - "SQLitePCLRaw.bundle_e_sqlite3": "2.1.0-pre20220318192836" - }, - "compile": { - "lib/net6.0/SqliteWasmHelper.dll": {} - }, - "runtime": { - "lib/net6.0/SqliteWasmHelper.dll": {} - }, - "contentFiles": { - "contentFiles/any/net6.0/wwwroot/browserCache.js": { - "buildAction": "Content", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "buildTransitive/SqliteWasmHelper.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/SqliteWasmHelper.props": {} - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/net6.0/System.Collections.Immutable.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Pipelines/6.0.2": { - "type": "package", - "compile": { - "lib/net6.0/System.IO.Pipelines.dll": {} - }, - "runtime": { - "lib/net6.0/System.IO.Pipelines.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "compile": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": {} - }, - "runtime": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Text.Json/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Text.Json.dll": {} - }, - "runtime": { - "lib/net6.0/System.Text.Json.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netstandard1.2/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - } - } - }, - "libraries": { - "LibSassBuilder/2.0.1": { - "sha512": "f+7TWQtCirW94VdzKL9SaAfeSF96TeEqdtDztmTGbndrcUlZZlL6uJLZKQCXQgj1BB3OqX0584OCvqFHrkAusA==", - "type": "package", - "path": "libsassbuilder/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LibSassBuilder.csproj", - "build/DesignTime/LibSassBuilder.DesignTime.targets", - "build/DesignTime/Rules/ProjectItemsSchema.xaml", - "build/DesignTime/Rules/SassFileType.xaml", - "build/LibSassBuilder.props", - "build/LibSassBuilder.targets", - "libsassbuilder.2.0.1.nupkg.sha512", - "libsassbuilder.nuspec", - "sass.png", - "tool/AdvancedStringBuilder.dll", - "tool/CommandLine.dll", - "tool/LibSassBuilder.deps.json", - "tool/LibSassBuilder.dll", - "tool/LibSassBuilder.exe", - "tool/LibSassBuilder.pdb", - "tool/LibSassBuilder.runtimeconfig.json", - "tool/LibSassHost.dll", - "tool/runtimes/linux-x64/native/libsass.so", - "tool/runtimes/osx-x64/native/libsass.dylib", - "tool/runtimes/win-x64/native/libsass.dll", - "tool/x64/libsass.dll" - ] - }, - "Microsoft.AspNetCore.Authorization/6.0.4": { - "sha512": "ZufyK5u4rneCu7Xq9Dan4XggNANWgGpj4BvHhOof5tIZQgjWTU18oRlg5xtuBDHsfl03BwnxxWgNjN5TO59wEw==", - "type": "package", - "path": "microsoft.aspnetcore.authorization/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.AspNetCore.Authorization.dll", - "lib/net461/Microsoft.AspNetCore.Authorization.xml", - "lib/net6.0/Microsoft.AspNetCore.Authorization.dll", - "lib/net6.0/Microsoft.AspNetCore.Authorization.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", - "microsoft.aspnetcore.authorization.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.authorization.nuspec" - ] - }, - "Microsoft.AspNetCore.Components/6.0.4": { - "sha512": "QX8RhqjKQEBmAIzgmKLVYcw1HUION9tWUz0bQTDeHj9F05/YfohR8YiSPlTK4mTDk6S8WTi70qxNuGTWvgO1PQ==", - "type": "package", - "path": "microsoft.aspnetcore.components/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "lib/net6.0/Microsoft.AspNetCore.Components.dll", - "lib/net6.0/Microsoft.AspNetCore.Components.xml", - "microsoft.aspnetcore.components.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.components.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.Analyzers/6.0.4": { - "sha512": "xwzDR3aObo+Lhz3Ff7j9NQRukvklIeMlig2lANZ0VULSwXB0aW+W7xl7ssSe3xLDMpyhCjOTgcA/1zXIPdMTyg==", - "type": "package", - "path": "microsoft.aspnetcore.components.analyzers/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", - "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", - "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", - "microsoft.aspnetcore.components.analyzers.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.components.analyzers.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.Forms/6.0.4": { - "sha512": "HDRfrmQYrkRwAWOYgQL6EXwNE7vU6+IcnVXet0lIbPqITbeZiPWCQ6SUEzFz806f/h4ozXaN4Bn3/Ce+RjuZxw==", - "type": "package", - "path": "microsoft.aspnetcore.components.forms/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll", - "lib/net6.0/Microsoft.AspNetCore.Components.Forms.xml", - "microsoft.aspnetcore.components.forms.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.components.forms.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.Web/6.0.4": { - "sha512": "w1IDipPk1gEvLX3HG8HBB1idcyyBJtnb6I/xygzWlYSenpOVSyyjvk8UC0a5TsbPgmjNy4jMtpXVkOFAOkQopw==", - "type": "package", - "path": "microsoft.aspnetcore.components.web/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll", - "lib/net6.0/Microsoft.AspNetCore.Components.Web.xml", - "microsoft.aspnetcore.components.web.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.components.web.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.WebAssembly/6.0.4": { - "sha512": "pR9MTi8MVzFMbdlO+6uA0gOOU/nA4V6pzUHDHn4vLf/cHLtTVkeX+ZC4GztrwQGQDnayVGMmExkZ6jd5Gp9B9g==", - "type": "package", - "path": "microsoft.aspnetcore.components.webassembly/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props", - "build/net6.0/blazor.webassembly.js", - "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll", - "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.xml", - "microsoft.aspnetcore.components.webassembly.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.components.webassembly.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.WebAssembly.DevServer/6.0.4": { - "sha512": "W0Y3zeyhTsRpEQi3uAJL2k3bx9wIHPkYTXEyEyL+0PZqY5+FxWgKJ3kHwpmBsumNW1MgiESOwt8Qwx87cBPg3g==", - "type": "package", - "path": "microsoft.aspnetcore.components.webassembly.devserver/6.0.4", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets", - "microsoft.aspnetcore.components.webassembly.devserver.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.components.webassembly.devserver.nuspec", - "tools/BlazorDebugProxy/BrowserDebugHost.dll", - "tools/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json", - "tools/BlazorDebugProxy/BrowserDebugProxy.dll", - "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll", - "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.dll", - "tools/BlazorDebugProxy/Newtonsoft.Json.dll", - "tools/Microsoft.AspNetCore.Authentication.Abstractions.dll", - "tools/Microsoft.AspNetCore.Authentication.Abstractions.xml", - "tools/Microsoft.AspNetCore.Authentication.Core.dll", - "tools/Microsoft.AspNetCore.Authentication.Core.xml", - "tools/Microsoft.AspNetCore.Authorization.dll", - "tools/Microsoft.AspNetCore.Authorization.xml", - "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.dll", - "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.xml", - "tools/Microsoft.AspNetCore.Connections.Abstractions.dll", - "tools/Microsoft.AspNetCore.Connections.Abstractions.xml", - "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", - "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.xml", - "tools/Microsoft.AspNetCore.Diagnostics.dll", - "tools/Microsoft.AspNetCore.Diagnostics.xml", - "tools/Microsoft.AspNetCore.HostFiltering.dll", - "tools/Microsoft.AspNetCore.HostFiltering.xml", - "tools/Microsoft.AspNetCore.Hosting.Abstractions.dll", - "tools/Microsoft.AspNetCore.Hosting.Abstractions.xml", - "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", - "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", - "tools/Microsoft.AspNetCore.Hosting.dll", - "tools/Microsoft.AspNetCore.Hosting.xml", - "tools/Microsoft.AspNetCore.Http.Abstractions.dll", - "tools/Microsoft.AspNetCore.Http.Abstractions.xml", - "tools/Microsoft.AspNetCore.Http.Extensions.dll", - "tools/Microsoft.AspNetCore.Http.Extensions.xml", - "tools/Microsoft.AspNetCore.Http.Features.dll", - "tools/Microsoft.AspNetCore.Http.Features.xml", - "tools/Microsoft.AspNetCore.Http.dll", - "tools/Microsoft.AspNetCore.Http.xml", - "tools/Microsoft.AspNetCore.HttpOverrides.dll", - "tools/Microsoft.AspNetCore.HttpOverrides.xml", - "tools/Microsoft.AspNetCore.Metadata.dll", - "tools/Microsoft.AspNetCore.Metadata.xml", - "tools/Microsoft.AspNetCore.Routing.Abstractions.dll", - "tools/Microsoft.AspNetCore.Routing.Abstractions.xml", - "tools/Microsoft.AspNetCore.Routing.dll", - "tools/Microsoft.AspNetCore.Routing.xml", - "tools/Microsoft.AspNetCore.Server.IIS.dll", - "tools/Microsoft.AspNetCore.Server.IIS.xml", - "tools/Microsoft.AspNetCore.Server.IISIntegration.dll", - "tools/Microsoft.AspNetCore.Server.IISIntegration.xml", - "tools/Microsoft.AspNetCore.Server.Kestrel.Core.dll", - "tools/Microsoft.AspNetCore.Server.Kestrel.Core.xml", - "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll", - "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.xml", - "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", - "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml", - "tools/Microsoft.AspNetCore.Server.Kestrel.dll", - "tools/Microsoft.AspNetCore.Server.Kestrel.xml", - "tools/Microsoft.AspNetCore.StaticFiles.dll", - "tools/Microsoft.AspNetCore.StaticFiles.xml", - "tools/Microsoft.AspNetCore.WebUtilities.dll", - "tools/Microsoft.AspNetCore.WebUtilities.xml", - "tools/Microsoft.AspNetCore.dll", - "tools/Microsoft.AspNetCore.xml", - "tools/Microsoft.Extensions.Configuration.Abstractions.dll", - "tools/Microsoft.Extensions.Configuration.Binder.dll", - "tools/Microsoft.Extensions.Configuration.CommandLine.dll", - "tools/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "tools/Microsoft.Extensions.Configuration.FileExtensions.dll", - "tools/Microsoft.Extensions.Configuration.Json.dll", - "tools/Microsoft.Extensions.Configuration.UserSecrets.dll", - "tools/Microsoft.Extensions.Configuration.dll", - "tools/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "tools/Microsoft.Extensions.DependencyInjection.dll", - "tools/Microsoft.Extensions.Features.dll", - "tools/Microsoft.Extensions.Features.xml", - "tools/Microsoft.Extensions.FileProviders.Abstractions.dll", - "tools/Microsoft.Extensions.FileProviders.Composite.dll", - "tools/Microsoft.Extensions.FileProviders.Physical.dll", - "tools/Microsoft.Extensions.FileSystemGlobbing.dll", - "tools/Microsoft.Extensions.Hosting.Abstractions.dll", - "tools/Microsoft.Extensions.Hosting.dll", - "tools/Microsoft.Extensions.Logging.Abstractions.dll", - "tools/Microsoft.Extensions.Logging.Configuration.dll", - "tools/Microsoft.Extensions.Logging.Console.dll", - "tools/Microsoft.Extensions.Logging.Debug.dll", - "tools/Microsoft.Extensions.Logging.EventLog.dll", - "tools/Microsoft.Extensions.Logging.EventSource.dll", - "tools/Microsoft.Extensions.Logging.dll", - "tools/Microsoft.Extensions.ObjectPool.dll", - "tools/Microsoft.Extensions.ObjectPool.xml", - "tools/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "tools/Microsoft.Extensions.Options.dll", - "tools/Microsoft.Extensions.Primitives.dll", - "tools/Microsoft.Extensions.WebEncoders.dll", - "tools/Microsoft.Extensions.WebEncoders.xml", - "tools/Microsoft.Net.Http.Headers.dll", - "tools/Microsoft.Net.Http.Headers.xml", - "tools/System.Diagnostics.EventLog.dll", - "tools/System.IO.Pipelines.dll", - "tools/blazor-devserver.deps.json", - "tools/blazor-devserver.dll", - "tools/blazor-devserver.exe", - "tools/blazor-devserver.runtimeconfig.json", - "tools/blazor-devserver.xml", - "tools/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", - "tools/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", - "tools/x64/aspnetcorev2_inprocess.dll", - "tools/x86/aspnetcorev2_inprocess.dll" - ] - }, - "Microsoft.AspNetCore.Metadata/6.0.4": { - "sha512": "/zyy+N/8155mbDqKCVrXLA4fNQYRbQe6jduA0WnZYMrSfLfrt0/QmQ+KaYGBir9w0xHrWtZ3LY8zAE1RLJYvYw==", - "type": "package", - "path": "microsoft.aspnetcore.metadata/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.AspNetCore.Metadata.dll", - "lib/net461/Microsoft.AspNetCore.Metadata.xml", - "lib/net6.0/Microsoft.AspNetCore.Metadata.dll", - "lib/net6.0/Microsoft.AspNetCore.Metadata.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", - "microsoft.aspnetcore.metadata.6.0.4.nupkg.sha512", - "microsoft.aspnetcore.metadata.nuspec" - ] - }, - "Microsoft.CSharp/4.7.0": { - "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "type": "package", - "path": "microsoft.csharp/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.xml", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.7.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Data.Sqlite.Core/6.0.4": { - "sha512": "3TZX7R2aX1TX5m4A5Kj+SY633NJDeHDP6JiDRCwUnJGKC3IrHgnO8p+oT2hRZpN168qx4Ixe4T9C+xZdZc26gw==", - "type": "package", - "path": "microsoft.data.sqlite.core/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.Data.Sqlite.dll", - "lib/net6.0/Microsoft.Data.Sqlite.xml", - "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", - "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", - "microsoft.data.sqlite.core.6.0.4.nupkg.sha512", - "microsoft.data.sqlite.core.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/6.0.4": { - "sha512": "gTh3SJsF5WNjEmG32kYc3U4tjeTIv55QOrwHAJcF/xtrIVMteDHMArGC35N0dw86WFY0v8yFkKYKOIOln4jkfQ==", - "type": "package", - "path": "microsoft.entityframeworkcore/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.EntityFrameworkCore.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.6.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/6.0.4": { - "sha512": "jycTQF0FUJp10cGWBmtsyFhQNeISU9CltDRKCaNiX4QRSEFzgRgaFN4vAFK0T+G5etmXugyddijE4NWCGtgznQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.6.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/6.0.4": { - "sha512": "t12WodVyGGP2CuLo7R1qwcawHY5zlg+GiQzvkceZpsjcFJVyTFFBFDPg1isBtzurLzWsl+G3z5fVXeic90mPxg==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.6.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/6.0.4": { - "sha512": "E867NbEXYRTElBF5ff+1AN5Awa1jkORy/Rrm0ueibaTAV5uw89LsLoH6yTe+b9urZTWMHtLfGd1RDdNjk8+KzA==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.6.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.4": { - "sha512": "yO6XZA8FQkBLiTtClesWClL3Z1QEqT9vRoDDf/IOPkmsjzjedg2GzkNCauRGk/XnsZZ1qcz55TuJBO+1jNDIaA==", - "type": "package", - "path": "microsoft.entityframeworkcore.sqlite.core/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.xml", - "microsoft.entityframeworkcore.sqlite.core.6.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.sqlite.core.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { - "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/6.0.1": { - "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==", - "type": "package", - "path": "microsoft.extensions.caching.memory/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Memory.dll", - "lib/net461/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration/6.0.0": { - "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", - "type": "package", - "path": "microsoft.extensions.configuration/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.dll", - "lib/net461/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.6.0.0.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { - "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "type": "package", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", - "microsoft.extensions.configuration.fileextensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "type": "package", - "path": "microsoft.extensions.configuration.json/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Json.dll", - "lib/net461/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", - "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", - "microsoft.extensions.configuration.json.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyModel/6.0.0": { - "sha512": "TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyModel.dll", - "lib/net461/Microsoft.Extensions.DependencyModel.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", - "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "type": "package", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "type": "package", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", - "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.physical.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "type": "package", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", - "microsoft.extensions.filesystemglobbing.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/6.0.0": { - "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "type": "package", - "path": "microsoft.extensions.logging/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.6.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.1": { - "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "build/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/6.0.0": { - "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "type": "package", - "path": "microsoft.extensions.options/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.6.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "type": "package", - "path": "microsoft.extensions.primitives/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.JSInterop/6.0.4": { - "sha512": "ul/BI4XudxeR1JROdq0FnMTT1YAN74q2iGeeWAzabuYyFVHtxVa8j+cYE+0KphS0c0+JkSupKCQRjhZsDw5NUg==", - "type": "package", - "path": "microsoft.jsinterop/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net6.0/Microsoft.JSInterop.dll", - "lib/net6.0/Microsoft.JSInterop.xml", - "microsoft.jsinterop.6.0.4.nupkg.sha512", - "microsoft.jsinterop.nuspec" - ] - }, - "Microsoft.JSInterop.WebAssembly/6.0.4": { - "sha512": "+EZnnpxDfHwFwxJY9IifDH4sXdh4uKvHjEeTkZT+vBr1YC4FCzempsEwmGFH5SGMZqz+VghbuVY1Dc1Jxtgycw==", - "type": "package", - "path": "microsoft.jsinterop.webassembly/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll", - "lib/net6.0/Microsoft.JSInterop.WebAssembly.xml", - "microsoft.jsinterop.webassembly.6.0.4.nupkg.sha512", - "microsoft.jsinterop.webassembly.nuspec" - ] - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "type": "package", - "path": "microsoft.netcore.platforms/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "NETStandard.Library/1.6.1": { - "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "type": "package", - "path": "netstandard.library/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "netstandard.library.1.6.1.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Radzen.Blazor/3.18.15": { - "sha512": "72ELk9fRC+1b41tiL9yfR0zoU/8RWRgaDBvoCt0l09MdLXgCkDEI/q3eURZ+hPK2gI0MIBY9mT9YIaSgZg5wBg==", - "type": "package", - "path": "radzen.blazor/3.18.15", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "build/Microsoft.AspNetCore.StaticWebAssets.props", - "build/Radzen.Blazor.props", - "buildMultiTargeting/Radzen.Blazor.props", - "buildTransitive/Radzen.Blazor.props", - "icon.png", - "lib/net5.0/Radzen.Blazor.dll", - "lib/net5.0/Radzen.Blazor.xml", - "lib/netstandard2.1/Radzen.Blazor.dll", - "lib/netstandard2.1/Radzen.Blazor.xml", - "radzen.blazor.3.18.15.nupkg.sha512", - "radzen.blazor.nuspec", - "staticwebassets/Radzen.Blazor.js", - "staticwebassets/css/dark-base.css", - "staticwebassets/css/dark.css", - "staticwebassets/css/default-base.css", - "staticwebassets/css/default.css", - "staticwebassets/css/humanistic-base.css", - "staticwebassets/css/humanistic.css", - "staticwebassets/css/software-base.css", - "staticwebassets/css/software.css", - "staticwebassets/css/standard-base.css", - "staticwebassets/css/standard.css", - "staticwebassets/fonts/MaterialIcons-Regular.woff", - "staticwebassets/fonts/SourceSansPro-Black.woff", - "staticwebassets/fonts/SourceSansPro-BlackIt.woff", - "staticwebassets/fonts/SourceSansPro-Bold.woff", - "staticwebassets/fonts/SourceSansPro-BoldIt.woff", - "staticwebassets/fonts/SourceSansPro-ExtraLight.woff", - "staticwebassets/fonts/SourceSansPro-ExtraLightIt.woff", - "staticwebassets/fonts/SourceSansPro-It.woff", - "staticwebassets/fonts/SourceSansPro-Light.woff", - "staticwebassets/fonts/SourceSansPro-LightIt.woff", - "staticwebassets/fonts/SourceSansPro-Regular.woff", - "staticwebassets/fonts/SourceSansPro-Semibold.woff", - "staticwebassets/fonts/SourceSansPro-SemiboldIt.woff", - "staticwebassets/fonts/roboto-v15-latin-300.woff", - "staticwebassets/fonts/roboto-v15-latin-700.woff", - "staticwebassets/fonts/roboto-v15-latin-regular.woff" - ] - }, - "runtime.any.System.Collections/4.3.0": { - "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", - "type": "package", - "path": "runtime.any.system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/netstandard1.3/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.collections.4.3.0.nupkg.sha512", - "runtime.any.system.collections.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "sha512": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", - "type": "package", - "path": "runtime.any.system.diagnostics.tools/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/netstandard1.3/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", - "runtime.any.system.diagnostics.tools.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", - "type": "package", - "path": "runtime.any.system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/netstandard1.5/System.Diagnostics.Tracing.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", - "runtime.any.system.diagnostics.tracing.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization/4.3.0": { - "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", - "type": "package", - "path": "runtime.any.system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/netstandard1.3/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.4.3.0.nupkg.sha512", - "runtime.any.system.globalization.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "sha512": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", - "type": "package", - "path": "runtime.any.system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net/_._", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/netstandard1.3/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", - "runtime.any.system.globalization.calendars.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.IO/4.3.0": { - "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", - "type": "package", - "path": "runtime.any.system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/netstandard1.5/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.io.4.3.0.nupkg.sha512", - "runtime.any.system.io.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection/4.3.0": { - "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", - "type": "package", - "path": "runtime.any.system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.dll", - "lib/netstandard1.5/System.Reflection.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", - "type": "package", - "path": "runtime.any.system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/netstandard1.3/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", - "type": "package", - "path": "runtime.any.system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/netstandard1.3/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.primitives.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", - "type": "package", - "path": "runtime.any.system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/netstandard1.3/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", - "runtime.any.system.resources.resourcemanager.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime/4.3.0": { - "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", - "type": "package", - "path": "runtime.any.system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/netstandard1.5/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", - "type": "package", - "path": "runtime.any.system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.handles.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", - "type": "package", - "path": "runtime.any.system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/netstandard1.5/System.Runtime.InteropServices.dll", - "lib/netstandard1.6/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.interopservices.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", - "type": "package", - "path": "runtime.any.system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/netstandard1.3/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", - "runtime.any.system.text.encoding.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", - "type": "package", - "path": "runtime.any.system.text.encoding.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", - "runtime.any.system.text.encoding.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", - "type": "package", - "path": "runtime.any.system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/netstandard1.3/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", - "runtime.any.system.threading.tasks.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "sha512": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", - "type": "package", - "path": "runtime.any.system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Timer.dll", - "lib/netstandard1.3/System.Threading.Timer.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.timer.4.3.0.nupkg.sha512", - "runtime.any.system.threading.timer.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.native.System/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "runtime.native.System.IO.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "runtime.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "sqlite-helper/1.3.0": { - "sha512": "8XN50p1rscokWcHwU3UcLlryLeEr2AVU2AAOsW5nBBoSIgG0HSADnyE1W2hl82owLatNQ1xLBYmM6oZiTuZu/A==", - "type": "package", - "path": "sqlite-helper/1.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.4/.xml", - "lib/netstandard1.4/SQLite.Net.dll", - "sqlite-helper.1.3.0.nupkg.sha512", - "sqlite-helper.nuspec" - ] - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.0-pre20220318192836": { - "sha512": "bZ94RKsiFJXIVApjlJd5+h3b96/OGAyifOkqQ8f//aJCyGoIqC3AhvYNnDNmRijgrWyczF427HyOrqCsGaQcrg==", - "type": "package", - "path": "sqlitepclraw.bundle_e_sqlite3/2.1.0-pre20220318192836", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", - "lib/net461/SQLitePCLRaw.batteries_v2.dll", - "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", - "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", - "lib/net6.0-ios15.2/SQLitePCLRaw.batteries_v2.dll", - "lib/net6.0-maccatalyst15.2/SQLitePCLRaw.batteries_v2.dll", - "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", - "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", - "sqlitepclraw.bundle_e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512", - "sqlitepclraw.bundle_e_sqlite3.nuspec" - ] - }, - "SQLitePCLRaw.core/2.1.0-pre20220318192836": { - "sha512": "A30/f1ykOMDUO8OHoAWK/d5Lrm0TW5Hax3thbLVQ6r8vS6t4jQL5v8uS8PUAcC3hYrZLsISXhcZQckkz4WdmnQ==", - "type": "package", - "path": "sqlitepclraw.core/2.1.0-pre20220318192836", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/SQLitePCLRaw.core.dll", - "sqlitepclraw.core.2.1.0-pre20220318192836.nupkg.sha512", - "sqlitepclraw.core.nuspec" - ] - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.0-pre20220318192836": { - "sha512": "L5YNSA/EmhAtsxfxot6Q/D3CLOy2Yc+Y758w7O1MXvDXZFOpoOoerMNgqzNDm92GWA5LWP070kZxVQn/nGWaJw==", - "type": "package", - "path": "sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", - "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", - "lib/net461/_._", - "lib/netstandard2.0/_._", - "runtimes/alpine-arm/native/libe_sqlite3.so", - "runtimes/alpine-arm64/native/libe_sqlite3.so", - "runtimes/alpine-x64/native/libe_sqlite3.so", - "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", - "runtimes/linux-arm/native/libe_sqlite3.so", - "runtimes/linux-arm64/native/libe_sqlite3.so", - "runtimes/linux-armel/native/libe_sqlite3.so", - "runtimes/linux-mips64/native/libe_sqlite3.so", - "runtimes/linux-musl-arm/native/libe_sqlite3.so", - "runtimes/linux-musl-arm64/native/libe_sqlite3.so", - "runtimes/linux-musl-x64/native/libe_sqlite3.so", - "runtimes/linux-s390x/native/libe_sqlite3.so", - "runtimes/linux-x64/native/libe_sqlite3.so", - "runtimes/linux-x86/native/libe_sqlite3.so", - "runtimes/osx-arm64/native/libe_sqlite3.dylib", - "runtimes/osx-arm64/nativeassets/net6.0-maccatalyst15.2/libe_sqlite3.dylib", - "runtimes/osx-x64/native/libe_sqlite3.dylib", - "runtimes/osx-x64/nativeassets/net6.0-maccatalyst15.2/libe_sqlite3.dylib", - "runtimes/win-arm/native/e_sqlite3.dll", - "runtimes/win-arm64/native/e_sqlite3.dll", - "runtimes/win-x64/native/e_sqlite3.dll", - "runtimes/win-x86/native/e_sqlite3.dll", - "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", - "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", - "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", - "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", - "sqlitepclraw.lib.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512", - "sqlitepclraw.lib.e_sqlite3.nuspec" - ] - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.0-pre20220318192836": { - "sha512": "ZHIhiiDwr4oecowSOJz+tM+g9xLYa5qnM7urvwIZ8eaUeqlVGTi//6sd4yAMSzQ/lubftxzfqc8ZidQ0nUv8XQ==", - "type": "package", - "path": "sqlitepclraw.provider.e_sqlite3/2.1.0-pre20220318192836", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", - "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", - "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", - "sqlitepclraw.provider.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512", - "sqlitepclraw.provider.e_sqlite3.nuspec" - ] - }, - "SqliteWasmHelper/1.0.43-beta-g31b50d1f54": { - "sha512": "jKa3mgNaLPqbJgugnaJdT5/MOE5YBjPTBG3aXRXeyZ45Vnm6Kj2P/cmVORDeObH2EPvy9uWYrVJxf0AePxD20Q==", - "type": "package", - "path": "sqlitewasmhelper/1.0.43-beta-g31b50d1f54", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/Microsoft.AspNetCore.StaticWebAssets.props", - "build/SqliteWasmHelper.props", - "buildMultiTargeting/SqliteWasmHelper.props", - "buildTransitive/SqliteWasmHelper.props", - "content/wwwroot/browserCache.js", - "contentFiles/any/net6.0/wwwroot/browserCache.js", - "lib/net6.0/SqliteWasmHelper.dll", - "lib/net6.0/SqliteWasmHelper.xml", - "sqlitewasmhelper.1.0.43-beta-g31b50d1f54.nupkg.sha512", - "sqlitewasmhelper.nuspec", - "staticwebassets/browserCache.js" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Collections.Immutable/6.0.0": { - "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "type": "package", - "path": "system.collections.immutable/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/net6.0/System.Collections.Immutable.dll", - "lib/net6.0/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "system.collections.immutable.6.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Diagnostics.DiagnosticSource.dll", - "lib/net461/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.Compression.ZipFile/4.3.0": { - "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "type": "package", - "path": "system.io.compression.zipfile/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.compression.zipfile.4.3.0.nupkg.sha512", - "system.io.compression.zipfile.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.Pipelines/6.0.2": { - "sha512": "cb5OfQjnz+zjpJJei+f3QYK7+wWZrDdNHf3DykO6QCacpNZ80tuNgq1DC2kqlrjfEu+cMUTvulxPIrCMbBkjqg==", - "type": "package", - "path": "system.io.pipelines/6.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.IO.Pipelines.dll", - "lib/net461/System.IO.Pipelines.xml", - "lib/net6.0/System.IO.Pipelines.dll", - "lib/net6.0/System.IO.Pipelines.xml", - "lib/netcoreapp3.1/System.IO.Pipelines.dll", - "lib/netcoreapp3.1/System.IO.Pipelines.xml", - "lib/netstandard2.0/System.IO.Pipelines.dll", - "lib/netstandard2.0/System.IO.Pipelines.xml", - "system.io.pipelines.6.0.2.nupkg.sha512", - "system.io.pipelines.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Dynamic.Core/1.2.12": { - "sha512": "wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "type": "package", - "path": "system.linq.dynamic.core/1.2.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/System.Linq.Dynamic.Core.dll", - "lib/net35/System.Linq.Dynamic.Core.pdb", - "lib/net35/System.Linq.Dynamic.Core.xml", - "lib/net40/System.Linq.Dynamic.Core.dll", - "lib/net40/System.Linq.Dynamic.Core.pdb", - "lib/net40/System.Linq.Dynamic.Core.xml", - "lib/net45/System.Linq.Dynamic.Core.dll", - "lib/net45/System.Linq.Dynamic.Core.pdb", - "lib/net45/System.Linq.Dynamic.Core.xml", - "lib/net46/System.Linq.Dynamic.Core.dll", - "lib/net46/System.Linq.Dynamic.Core.pdb", - "lib/net46/System.Linq.Dynamic.Core.xml", - "lib/net5.0/System.Linq.Dynamic.Core.dll", - "lib/net5.0/System.Linq.Dynamic.Core.pdb", - "lib/net5.0/System.Linq.Dynamic.Core.xml", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", - "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", - "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", - "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", - "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", - "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", - "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", - "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", - "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", - "system.linq.dynamic.core.1.2.12.nupkg.sha512", - "system.linq.dynamic.core.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "type": "package", - "path": "system.memory/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Net.Http/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "System.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.Uri/4.3.0": { - "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", - "type": "package", - "path": "system.private.uri/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "system.private.uri.4.3.0.nupkg.sha512", - "system.private.uri.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.3.0": { - "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "type": "package", - "path": "system.reflection.emit/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._", - "system.reflection.emit.4.3.0.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.3.0.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.3.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.nuspec" - ] - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.Encodings.Web/6.0.0": { - "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "type": "package", - "path": "system.text.encodings.web/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Text.Encodings.Web.dll", - "lib/net461/System.Text.Encodings.Web.xml", - "lib/net6.0/System.Text.Encodings.Web.dll", - "lib/net6.0/System.Text.Encodings.Web.xml", - "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", - "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.6.0.0.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.Json/6.0.0": { - "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", - "type": "package", - "path": "system.text.json/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", - "build/System.Text.Json.targets", - "buildTransitive/netcoreapp2.0/System.Text.Json.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Text.Json.dll", - "lib/net461/System.Text.Json.xml", - "lib/net6.0/System.Text.Json.dll", - "lib/net6.0/System.Text.Json.xml", - "lib/netcoreapp3.1/System.Text.Json.dll", - "lib/netcoreapp3.1/System.Text.Json.xml", - "lib/netstandard2.0/System.Text.Json.dll", - "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.6.0.0.nupkg.sha512", - "system.text.json.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "type": "package", - "path": "system.threading.tasks.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "system.threading.tasks.extensions.nuspec" - ] - }, - "System.Threading.Timer/4.3.0": { - "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "type": "package", - "path": "system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.timer.4.3.0.nupkg.sha512", - "system.threading.timer.nuspec" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Microsoft.AspNetCore.Components.WebAssembly >= 6.0.4", - "Microsoft.AspNetCore.Components.WebAssembly.DevServer >= 6.0.4", - "Radzen.Blazor >= 3.18.15", - "SqliteWasmHelper >= 1.0.43-beta-g31b50d1f54", - "sqlite-helper >= 1.3.0" - ] - }, - "packageFolders": { - "/Users/normrasmussen/.nuget/packages/": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj", - "projectName": "Account_SQLite", - "projectPath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj", - "packagesPath": "/Users/normrasmussen/.nuget/packages/", - "outputPath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/", - "projectStyle": "PackageReference", - "configFilePaths": [ - "/Users/normrasmussen/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Microsoft.AspNetCore.Components.WebAssembly": { - "target": "Package", - "version": "[6.0.4, )" - }, - "Microsoft.AspNetCore.Components.WebAssembly.DevServer": { - "suppressParent": "All", - "target": "Package", - "version": "[6.0.4, )" - }, - "Radzen.Blazor": { - "target": "Package", - "version": "[3.18.15, )" - }, - "SqliteWasmHelper": { - "target": "Package", - "version": "[1.0.43-beta-g31b50d1f54, )" - }, - "sqlite-helper": { - "target": "Package", - "version": "[1.3.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.301/RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "browser-wasm": { - "#import": [] - } - } - } -} \ No newline at end of file diff --git a/Account_SQLite/obj/project.nuget.cache b/Account_SQLite/obj/project.nuget.cache deleted file mode 100644 index 8b7b3a02..00000000 --- a/Account_SQLite/obj/project.nuget.cache +++ /dev/null @@ -1,149 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "A3Aek/vPAPAwfB+f2bspJm1xNxdJBZ83NAWx63/KZDc27BMQkYjuQ2P2gV14wfsiSnfamB3WUABn/zNTTCDOIA==", - "success": true, - "projectFilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj", - "expectedPackageFiles": [ - "/Users/normrasmussen/.nuget/packages/libsassbuilder/2.0.1/libsassbuilder.2.0.1.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.authorization/6.0.4/microsoft.aspnetcore.authorization.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components/6.0.4/microsoft.aspnetcore.components.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.analyzers/6.0.4/microsoft.aspnetcore.components.analyzers.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.forms/6.0.4/microsoft.aspnetcore.components.forms.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.web/6.0.4/microsoft.aspnetcore.components.web.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly/6.0.4/microsoft.aspnetcore.components.webassembly.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly.devserver/6.0.4/microsoft.aspnetcore.components.webassembly.devserver.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.metadata/6.0.4/microsoft.aspnetcore.metadata.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.csharp/4.7.0/microsoft.csharp.4.7.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.data.sqlite.core/6.0.4/microsoft.data.sqlite.core.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore/6.0.4/microsoft.entityframeworkcore.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.abstractions/6.0.4/microsoft.entityframeworkcore.abstractions.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.analyzers/6.0.4/microsoft.entityframeworkcore.analyzers.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.relational/6.0.4/microsoft.entityframeworkcore.relational.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.sqlite.core/6.0.4/microsoft.entityframeworkcore.sqlite.core.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.caching.memory/6.0.1/microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencymodel/6.0.0/microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.1/microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop/6.0.4/microsoft.jsinterop.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop.webassembly/6.0.4/microsoft.jsinterop.webassembly.6.0.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/radzen.blazor/3.18.15/radzen.blazor.3.18.15.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.globalization.calendars/4.3.0/runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.any.system.threading.timer/4.3.0/runtime.any.system.threading.timer.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/sqlite-helper/1.3.0/sqlite-helper.1.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.0-pre20220318192836/sqlitepclraw.bundle_e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/sqlitepclraw.core/2.1.0-pre20220318192836/sqlitepclraw.core.2.1.0-pre20220318192836.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836/sqlitepclraw.lib.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.0-pre20220318192836/sqlitepclraw.provider.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/sqlitewasmhelper.1.0.43-beta-g31b50d1f54.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.io.pipelines/6.0.2/system.io.pipelines.6.0.2.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.linq.dynamic.core/1.2.12/system.linq.dynamic.core.1.2.12.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512", - "/Users/normrasmussen/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Account_SQLite/obj/staticwebassets.pack.sentinel b/Account_SQLite/obj/staticwebassets.pack.sentinel deleted file mode 100644 index cac6e3c8..00000000 --- a/Account_SQLite/obj/staticwebassets.pack.sentinel +++ /dev/null @@ -1,20 +0,0 @@ -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 diff --git a/Account_SQLite/wwwroot/css/app.css b/Account_SQLite/wwwroot/css/app.css deleted file mode 100644 index 6dbd472d..00000000 --- a/Account_SQLite/wwwroot/css/app.css +++ /dev/null @@ -1,64 +0,0 @@ -@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); - -html, body { - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; -} - -h1:focus { - outline: none; -} - -a, .btn-link { - color: #0071c1; -} - -.btn-primary { - color: #fff; - background-color: #1b6ec2; - border-color: #1861ac; -} - -.content { - padding-top: 1.1rem; -} - -.valid.modified:not([type=checkbox]) { - outline: 1px solid #26b050; -} - -.invalid { - outline: 1px solid red; -} - -.validation-message { - color: red; -} - -#blazor-error-ui { - background: lightyellow; - bottom: 0; - box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); - display: none; - left: 0; - padding: 0.6rem 1.25rem 0.7rem 1.25rem; - position: fixed; - width: 100%; - z-index: 1000; -} - - #blazor-error-ui .dismiss { - cursor: pointer; - position: absolute; - right: 0.75rem; - top: 0.5rem; - } - -.blazor-error-boundary { - background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; - padding: 1rem 1rem 1rem 3.7rem; - color: white; -} - - .blazor-error-boundary::after { - content: "An error has occurred." - } \ No newline at end of file diff --git a/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css b/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css deleted file mode 100644 index a77a8f12..00000000 --- a/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css +++ /dev/null @@ -1,7 +0,0 @@ -@charset "UTF-8";/*! - * Bootstrap v5.1.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css.map b/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css.map deleted file mode 100644 index afcd9e33..00000000 --- a/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"iBAAA;;;;;ACAA,MAQI,UAAA,QAAA,YAAA,QAAA,YAAA,QAAA,UAAA,QAAA,SAAA,QAAA,YAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAAA,UAAA,QAAA,WAAA,KAAA,UAAA,QAAA,eAAA,QAIA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAIA,aAAA,QAAA,eAAA,QAAA,aAAA,QAAA,UAAA,QAAA,aAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAIA,iBAAA,EAAA,CAAA,GAAA,CAAA,IAAA,mBAAA,GAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,EAAA,CAAA,GAAA,CAAA,GAAA,cAAA,EAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,GAAA,CAAA,GAAA,CAAA,EAAA,gBAAA,GAAA,CAAA,EAAA,CAAA,GAAA,eAAA,GAAA,CAAA,GAAA,CAAA,IAAA,cAAA,EAAA,CAAA,EAAA,CAAA,GAGF,eAAA,GAAA,CAAA,GAAA,CAAA,IACA,eAAA,CAAA,CAAA,CAAA,CAAA,EACA,cAAA,EAAA,CAAA,EAAA,CAAA,GAMA,qBAAA,SAAA,CAAA,aAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,iBAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBACA,oBAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UACA,cAAA,2EAQA,sBAAA,0BACA,oBAAA,KACA,sBAAA,IACA,sBAAA,IACA,gBAAA,QAIA,aAAA,KClCF,EC+CA,QADA,SD3CE,WAAA,WAeE,8CANJ,MAOM,gBAAA,QAcN,KACE,OAAA,EACA,YAAA,2BEmPI,UAAA,yBFjPJ,YAAA,2BACA,YAAA,2BACA,MAAA,qBACA,WAAA,0BACA,iBAAA,kBACA,yBAAA,KACA,4BAAA,YAUF,GACE,OAAA,KAAA,EACA,MAAA,QACA,iBAAA,aACA,OAAA,EACA,QAAA,IAGF,eACE,OAAA,IAUF,IAAA,IAAA,IAAA,IAAA,IAAA,IAAA,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAGA,YAAA,IACA,YAAA,IAIF,IAAA,GEwMQ,UAAA,uBAlKJ,0BFtCJ,IAAA,GE+MQ,UAAA,QF1MR,IAAA,GEmMQ,UAAA,sBAlKJ,0BFjCJ,IAAA,GE0MQ,UAAA,MFrMR,IAAA,GE8LQ,UAAA,oBAlKJ,0BF5BJ,IAAA,GEqMQ,UAAA,SFhMR,IAAA,GEyLQ,UAAA,sBAlKJ,0BFvBJ,IAAA,GEgMQ,UAAA,QF3LR,IAAA,GEgLM,UAAA,QF3KN,IAAA,GE2KM,UAAA,KFhKN,EACE,WAAA,EACA,cAAA,KCmBF,6BDRA,YAEE,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,iCAAA,KAAA,yBAAA,KAMF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QAMF,GCIA,GDFE,aAAA,KCQF,GDLA,GCIA,GDDE,WAAA,EACA,cAAA,KAGF,MCKA,MACA,MAFA,MDAE,cAAA,EAGF,GACE,YAAA,IAKF,GACE,cAAA,MACA,YAAA,EAMF,WACE,OAAA,EAAA,EAAA,KAQF,ECNA,ODQE,YAAA,OAQF,OAAA,ME4EM,UAAA,OFrEN,MAAA,KACE,QAAA,KACA,iBAAA,QASF,ICpBA,IDsBE,SAAA,SEwDI,UAAA,MFtDJ,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAKN,EACE,MAAA,QACA,gBAAA,UAEA,QACE,MAAA,QAWF,2BAAA,iCAEE,MAAA,QACA,gBAAA,KCxBJ,KACA,ID8BA,IC7BA,KDiCE,YAAA,yBEcI,UAAA,IFZJ,UAAA,IACA,aAAA,cAOF,IACE,QAAA,MACA,WAAA,EACA,cAAA,KACA,SAAA,KEAI,UAAA,OFKJ,SELI,UAAA,QFOF,MAAA,QACA,WAAA,OAIJ,KEZM,UAAA,OFcJ,MAAA,QACA,UAAA,WAGA,OACE,MAAA,QAIJ,IACE,QAAA,MAAA,MExBI,UAAA,OF0BJ,MAAA,KACA,iBAAA,QG7SE,cAAA,MHgTF,QACE,QAAA,EE/BE,UAAA,IFiCF,YAAA,IASJ,OACE,OAAA,EAAA,EAAA,KAMF,ICjDA,IDmDE,eAAA,OAQF,MACE,aAAA,OACA,gBAAA,SAGF,QACE,YAAA,MACA,eAAA,MACA,MAAA,QACA,WAAA,KAOF,GAEE,WAAA,QACA,WAAA,qBCxDF,MAGA,GAFA,MAGA,GDuDA,MCzDA,GD+DE,aAAA,QACA,aAAA,MACA,aAAA,EAQF,MACE,QAAA,aAMF,OAEE,cAAA,EAQF,iCACE,QAAA,ECtEF,OD2EA,MCzEA,SADA,OAEA,SD6EE,OAAA,EACA,YAAA,QE9HI,UAAA,QFgIJ,YAAA,QAIF,OC5EA,OD8EE,eAAA,KAKF,cACE,OAAA,QAGF,OAGE,UAAA,OAGA,gBACE,QAAA,EAOJ,0CACE,QAAA,KClFF,cACA,aACA,cDwFA,OAIE,mBAAA,OCxFF,6BACA,4BACA,6BDyFI,sBACE,OAAA,QAON,mBACE,QAAA,EACA,aAAA,KAKF,SACE,OAAA,SAUF,SACE,UAAA,EACA,QAAA,EACA,OAAA,EACA,OAAA,EAQF,OACE,MAAA,KACA,MAAA,KACA,QAAA,EACA,cAAA,MEnNM,UAAA,sBFsNN,YAAA,QExXE,0BFiXJ,OExMQ,UAAA,QFiNN,SACE,MAAA,KChGJ,kCDuGA,uCCxGA,mCADA,+BAGA,oCAJA,6BAKA,mCD4GE,QAAA,EAGF,4BACE,OAAA,KASF,cACE,eAAA,KACA,mBAAA,UAmBF,4BACE,mBAAA,KAKF,+BACE,QAAA,EAMF,uBACE,KAAA,QAMF,6BACE,KAAA,QACA,mBAAA,OAKF,OACE,QAAA,aAKF,OACE,OAAA,EAOF,QACE,QAAA,UACA,OAAA,QAQF,SACE,eAAA,SAQF,SACE,QAAA,eInlBF,MFyQM,UAAA,QEvQJ,YAAA,IAKA,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QEvPR,eCrDE,aAAA,EACA,WAAA,KDyDF,aC1DE,aAAA,EACA,WAAA,KD4DF,kBACE,QAAA,aAEA,mCACE,aAAA,MAUJ,YFsNM,UAAA,OEpNJ,eAAA,UAIF,YACE,cAAA,KF+MI,UAAA,QE5MJ,wBACE,cAAA,EAIJ,mBACE,WAAA,MACA,cAAA,KFqMI,UAAA,OEnMJ,MAAA,QAEA,2BACE,QAAA,KE9FJ,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,OACA,iBAAA,KACA,OAAA,IAAA,MAAA,QHGE,cAAA,OIRF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBJ+PM,UAAA,OI7PJ,MAAA,QElCA,WPqmBF,iBAGA,cACA,cACA,cAHA,cADA,eQzmBE,MAAA,KACA,cAAA,0BACA,aAAA,0BACA,aAAA,KACA,YAAA,KCwDE,yBF5CE,WAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cAAA,cACE,UAAA,OE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QGfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDHE,OCYF,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KXusBR,MWrsBU,cAAA,EAGF,KXusBR,MWrsBU,cAAA,EAPF,KXitBR,MW/sBU,cAAA,QAGF,KXitBR,MW/sBU,cAAA,QAPF,KX2tBR,MWztBU,cAAA,OAGF,KX2tBR,MWztBU,cAAA,OAPF,KXquBR,MWnuBU,cAAA,KAGF,KXquBR,MWnuBU,cAAA,KAPF,KX+uBR,MW7uBU,cAAA,OAGF,KX+uBR,MW7uBU,cAAA,OAPF,KXyvBR,MWvvBU,cAAA,KAGF,KXyvBR,MWvvBU,cAAA,KFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX45BR,SW15BU,cAAA,EAGF,QX45BR,SW15BU,cAAA,EAPF,QXs6BR,SWp6BU,cAAA,QAGF,QXs6BR,SWp6BU,cAAA,QAPF,QXg7BR,SW96BU,cAAA,OAGF,QXg7BR,SW96BU,cAAA,OAPF,QX07BR,SWx7BU,cAAA,KAGF,QX07BR,SWx7BU,cAAA,KAPF,QXo8BR,SWl8BU,cAAA,OAGF,QXo8BR,SWl8BU,cAAA,OAPF,QX88BR,SW58BU,cAAA,KAGF,QX88BR,SW58BU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXinCR,SW/mCU,cAAA,EAGF,QXinCR,SW/mCU,cAAA,EAPF,QX2nCR,SWznCU,cAAA,QAGF,QX2nCR,SWznCU,cAAA,QAPF,QXqoCR,SWnoCU,cAAA,OAGF,QXqoCR,SWnoCU,cAAA,OAPF,QX+oCR,SW7oCU,cAAA,KAGF,QX+oCR,SW7oCU,cAAA,KAPF,QXypCR,SWvpCU,cAAA,OAGF,QXypCR,SWvpCU,cAAA,OAPF,QXmqCR,SWjqCU,cAAA,KAGF,QXmqCR,SWjqCU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXs0CR,SWp0CU,cAAA,EAGF,QXs0CR,SWp0CU,cAAA,EAPF,QXg1CR,SW90CU,cAAA,QAGF,QXg1CR,SW90CU,cAAA,QAPF,QX01CR,SWx1CU,cAAA,OAGF,QX01CR,SWx1CU,cAAA,OAPF,QXo2CR,SWl2CU,cAAA,KAGF,QXo2CR,SWl2CU,cAAA,KAPF,QX82CR,SW52CU,cAAA,OAGF,QX82CR,SW52CU,cAAA,OAPF,QXw3CR,SWt3CU,cAAA,KAGF,QXw3CR,SWt3CU,cAAA,MFzDN,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX2hDR,SWzhDU,cAAA,EAGF,QX2hDR,SWzhDU,cAAA,EAPF,QXqiDR,SWniDU,cAAA,QAGF,QXqiDR,SWniDU,cAAA,QAPF,QX+iDR,SW7iDU,cAAA,OAGF,QX+iDR,SW7iDU,cAAA,OAPF,QXyjDR,SWvjDU,cAAA,KAGF,QXyjDR,SWvjDU,cAAA,KAPF,QXmkDR,SWjkDU,cAAA,OAGF,QXmkDR,SWjkDU,cAAA,OAPF,QX6kDR,SW3kDU,cAAA,KAGF,QX6kDR,SW3kDU,cAAA,MFzDN,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SXgvDR,UW9uDU,cAAA,EAGF,SXgvDR,UW9uDU,cAAA,EAPF,SX0vDR,UWxvDU,cAAA,QAGF,SX0vDR,UWxvDU,cAAA,QAPF,SXowDR,UWlwDU,cAAA,OAGF,SXowDR,UWlwDU,cAAA,OAPF,SX8wDR,UW5wDU,cAAA,KAGF,SX8wDR,UW5wDU,cAAA,KAPF,SXwxDR,UWtxDU,cAAA,OAGF,SXwxDR,UWtxDU,cAAA,OAPF,SXkyDR,UWhyDU,cAAA,KAGF,SXkyDR,UWhyDU,cAAA,MCpHV,OACE,cAAA,YACA,qBAAA,YACA,yBAAA,QACA,sBAAA,oBACA,wBAAA,QACA,qBAAA,mBACA,uBAAA,QACA,oBAAA,qBAEA,MAAA,KACA,cAAA,KACA,MAAA,QACA,eAAA,IACA,aAAA,QAOA,yBACE,QAAA,MAAA,MACA,iBAAA,mBACA,oBAAA,IACA,WAAA,MAAA,EAAA,EAAA,EAAA,OAAA,0BAGF,aACE,eAAA,QAGF,aACE,eAAA,OAIF,uCACE,oBAAA,aASJ,aACE,aAAA,IAUA,4BACE,QAAA,OAAA,OAeF,gCACE,aAAA,IAAA,EAGA,kCACE,aAAA,EAAA,IAOJ,oCACE,oBAAA,EASF,yCACE,qBAAA,2BACA,MAAA,8BAQJ,cACE,qBAAA,0BACA,MAAA,6BAQA,4BACE,qBAAA,yBACA,MAAA,4BCxHF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,iBAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,cAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,aAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QDgIA,kBACE,WAAA,KACA,2BAAA,MHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,sBACE,WAAA,KACA,2BAAA,OE/IN,YACE,cAAA,MASF,gBACE,YAAA,oBACA,eAAA,oBACA,cAAA,EboRI,UAAA,QahRJ,YAAA,IAIF,mBACE,YAAA,kBACA,eAAA,kBb0QI,UAAA,QatQN,mBACE,YAAA,mBACA,eAAA,mBboQI,UAAA,QcjSN,WACE,WAAA,OdgSI,UAAA,Oc5RJ,MAAA,QCLF,cACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,Of8RI,UAAA,Ke3RJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,QACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KdGE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDhBN,cCiBQ,WAAA,MDGN,yBACE,SAAA,OAEA,wDACE,OAAA,QAKJ,oBACE,MAAA,QACA,iBAAA,KACA,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAOJ,2CAEE,OAAA,MAIF,gCACE,MAAA,QAEA,QAAA,EAHF,2BACE,MAAA,QAEA,QAAA,EAQF,uBAAA,wBAEE,iBAAA,QAGA,QAAA,EAIF,oCACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE3EF,iBAAA,QF6EE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECtEE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDuDJ,oCCtDM,WAAA,MDqEN,yEACE,iBAAA,QAGF,0CACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE9FF,iBAAA,QFgGE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECzFE,mBAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCD0EJ,0CCzEM,mBAAA,KAAA,WAAA,MDwFN,+EACE,iBAAA,QASJ,wBACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,EACA,cAAA,EACA,YAAA,IACA,MAAA,QACA,iBAAA,YACA,OAAA,MAAA,YACA,aAAA,IAAA,EAEA,wCAAA,wCAEE,cAAA,EACA,aAAA,EAWJ,iBACE,WAAA,0BACA,QAAA,OAAA,MfmJI,UAAA,QClRF,cAAA,McmIF,uCACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAGF,6CACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAIJ,iBACE,WAAA,yBACA,QAAA,MAAA,KfgII,UAAA,QClRF,cAAA,McsJF,uCACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAGF,6CACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAQF,sBACE,WAAA,2BAGF,yBACE,WAAA,0BAGF,yBACE,WAAA,yBAKJ,oBACE,MAAA,KACA,OAAA,KACA,QAAA,QAEA,mDACE,OAAA,QAGF,uCACE,OAAA,Md/LA,cAAA,OcmMF,0CACE,OAAA,MdpMA,cAAA,OiBdJ,aACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,QAAA,QAAA,OAEA,mBAAA,oBlB2RI,UAAA,KkBxRJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,iBAAA,gOACA,kBAAA,UACA,oBAAA,MAAA,OAAA,OACA,gBAAA,KAAA,KACA,OAAA,IAAA,MAAA,QjBFE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YESJ,mBAAA,KAAA,gBAAA,KAAA,WAAA,KFLI,uCEfN,aFgBQ,WAAA,MEMN,mBACE,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,uBAAA,mCAEE,cAAA,OACA,iBAAA,KAGF,sBAEE,iBAAA,QAKF,4BACE,MAAA,YACA,YAAA,EAAA,EAAA,EAAA,QAIJ,gBACE,YAAA,OACA,eAAA,OACA,aAAA,MlByOI,UAAA,QkBrON,gBACE,YAAA,MACA,eAAA,MACA,aAAA,KlBkOI,UAAA,QmBjSN,YACE,QAAA,MACA,WAAA,OACA,aAAA,MACA,cAAA,QAEA,8BACE,MAAA,KACA,YAAA,OAIJ,kBACE,MAAA,IACA,OAAA,IACA,WAAA,MACA,eAAA,IACA,iBAAA,KACA,kBAAA,UACA,oBAAA,OACA,gBAAA,QACA,OAAA,IAAA,MAAA,gBACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KACA,2BAAA,MAAA,aAAA,MAGA,iClBXE,cAAA,MkBeF,8BAEE,cAAA,IAGF,yBACE,OAAA,gBAGF,wBACE,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,0BACE,iBAAA,QACA,aAAA,QAEA,yCAII,iBAAA,8NAIJ,sCAII,iBAAA,sIAKN,+CACE,iBAAA,QACA,aAAA,QAKE,iBAAA,wNAIJ,2BACE,eAAA,KACA,OAAA,KACA,QAAA,GAOA,6CAAA,8CACE,QAAA,GAcN,aACE,aAAA,MAEA,+BACE,MAAA,IACA,YAAA,OACA,iBAAA,uJACA,oBAAA,KAAA,OlB9FA,cAAA,IeHE,WAAA,oBAAA,KAAA,YAIA,uCGyFJ,+BHxFM,WAAA,MGgGJ,qCACE,iBAAA,yIAGF,uCACE,oBAAA,MAAA,OAKE,iBAAA,sIAMR,mBACE,QAAA,aACA,aAAA,KAGF,WACE,SAAA,SACA,KAAA,cACA,eAAA,KAIE,yBAAA,0BACE,eAAA,KACA,OAAA,KACA,QAAA,IC9IN,YACE,MAAA,KACA,OAAA,OACA,QAAA,EACA,iBAAA,YACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAEA,kBACE,QAAA,EAIA,wCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAC1B,oCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAG5B,8BACE,OAAA,EAGF,kCACE,MAAA,KACA,OAAA,KACA,WAAA,QHzBF,iBAAA,QG2BE,OAAA,EnBZA,cAAA,KeHE,mBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YImBF,mBAAA,KAAA,WAAA,KJfE,uCIMJ,kCJLM,mBAAA,KAAA,WAAA,MIgBJ,yCHjCF,iBAAA,QGsCA,2CACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnB7BA,cAAA,KmBkCF,8BACE,MAAA,KACA,OAAA,KHnDF,iBAAA,QGqDE,OAAA,EnBtCA,cAAA,KeHE,gBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YI6CF,gBAAA,KAAA,WAAA,KJzCE,uCIiCJ,8BJhCM,gBAAA,KAAA,WAAA,MI0CJ,qCH3DF,iBAAA,QGgEA,8BACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnBvDA,cAAA,KmB4DF,qBACE,eAAA,KAEA,2CACE,iBAAA,QAGF,uCACE,iBAAA,QCvFN,eACE,SAAA,SAEA,6BtB+iFF,4BsB7iFI,OAAA,mBACA,YAAA,KAGF,qBACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KACA,QAAA,KAAA,OACA,eAAA,KACA,OAAA,IAAA,MAAA,YACA,iBAAA,EAAA,ELDE,WAAA,QAAA,IAAA,WAAA,CAAA,UAAA,IAAA,YAIA,uCKXJ,qBLYM,WAAA,MKCN,6BACE,QAAA,KAAA,OAEA,+CACE,MAAA,YADF,0CACE,MAAA,YAGF,0DAEE,YAAA,SACA,eAAA,QAHF,mCAAA,qDAEE,YAAA,SACA,eAAA,QAGF,8CACE,YAAA,SACA,eAAA,QAIJ,4BACE,YAAA,SACA,eAAA,QAMA,gEACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBAFF,yCtBmjFJ,2DACA,kCsBnjFM,QAAA,IACA,UAAA,WAAA,mBAAA,mBAKF,oDACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBCtDN,aACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,QACA,MAAA,KAEA,2BvB2mFF,0BuBzmFI,SAAA,SACA,KAAA,EAAA,EAAA,KACA,MAAA,GACA,UAAA,EAIF,iCvBymFF,gCuBvmFI,QAAA,EAMF,kBACE,SAAA,SACA,QAAA,EAEA,wBACE,QAAA,EAWN,kBACE,QAAA,KACA,YAAA,OACA,QAAA,QAAA,OtBsPI,UAAA,KsBpPJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,YAAA,OACA,iBAAA,QACA,OAAA,IAAA,MAAA,QrBpCE,cAAA,OFuoFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,MAAA,KtBgOI,UAAA,QClRF,cAAA,MFgpFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,OAAA,MtBuNI,UAAA,QClRF,cAAA,MqBgEJ,6BvBulFA,6BuBrlFE,cAAA,KvB0lFF,uEuB7kFI,8FrB/DA,wBAAA,EACA,2BAAA,EFgpFJ,iEuB3kFI,2FrBtEA,wBAAA,EACA,2BAAA,EqBgFF,0IACE,YAAA,KrBpEA,uBAAA,EACA,0BAAA,EsBzBF,gBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,eACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OFmsFJ,0BACA,yBwBrqFI,sCxBmqFJ,qCwBjqFM,QAAA,MA9CF,uBAAA,mCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2OACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,6BAAA,yCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,2CAAA,+BAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,sBAAA,kCAiFE,aAAA,QAGE,kDAAA,gDAAA,8DAAA,4DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2OACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,4BAAA,wCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,2BAAA,uCAsGE,aAAA,QAEA,mCAAA,+CACE,iBAAA,QAGF,iCAAA,6CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,6CAAA,yDACE,MAAA,QAKJ,qDACE,YAAA,KAvHF,oCxBwwFJ,mCwBxwFI,gDxBuwFJ,+CwBxoFQ,QAAA,EAIF,0CxB0oFN,yCwB1oFM,sDxByoFN,qDwBxoFQ,QAAA,EAjHN,kBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,iBACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OF4xFJ,8BACA,6BwB9vFI,0CxB4vFJ,yCwB1vFM,QAAA,MA9CF,yBAAA,qCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2TACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,+BAAA,2CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,6CAAA,iCAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,wBAAA,oCAiFE,aAAA,QAGE,oDAAA,kDAAA,gEAAA,8DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2TACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,8BAAA,0CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,6BAAA,yCAsGE,aAAA,QAEA,qCAAA,iDACE,iBAAA,QAGF,mCAAA,+CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,+CAAA,2DACE,MAAA,QAKJ,uDACE,YAAA,KAvHF,sCxBi2FJ,qCwBj2FI,kDxBg2FJ,iDwB/tFQ,QAAA,EAEF,4CxBmuFN,2CwBnuFM,wDxBkuFN,uDwBjuFQ,QAAA,ECtIR,KACE,QAAA,aAEA,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,gBAAA,KAEA,eAAA,OACA,OAAA,QACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,iBAAA,YACA,OAAA,IAAA,MAAA,YC8GA,QAAA,QAAA,OzBsKI,UAAA,KClRF,cAAA,OeHE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCQhBN,KRiBQ,WAAA,MQAN,WACE,MAAA,QAIF,sBAAA,WAEE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAcF,cAAA,cAAA,uBAGE,eAAA,KACA,QAAA,IAYF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,eCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,qBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,gCAAA,qBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,iCAAA,kCAAA,sBAAA,sBAAA,qCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,uCAAA,wCAAA,4BAAA,4BAAA,2CAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,wBAAA,wBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,YCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,kBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,6BAAA,kBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,8BAAA,+BAAA,mBAAA,mBAAA,kCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,oCAAA,qCAAA,yBAAA,yBAAA,wCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,qBAAA,qBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,WCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,iBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,4BAAA,iBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,6BAAA,8BAAA,kBAAA,kBAAA,iCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,mCAAA,oCAAA,wBAAA,wBAAA,uCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,oBAAA,oBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDNF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,uBCmBA,MAAA,QACA,aAAA,QAEA,6BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wCAAA,6BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,yCAAA,0CAAA,8BAAA,4CAAA,8BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,+CAAA,gDAAA,oCAAA,kDAAA,oCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,gCAAA,gCAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,oBCmBA,MAAA,QACA,aAAA,QAEA,0BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,qCAAA,0BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,sCAAA,uCAAA,2BAAA,yCAAA,2BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,4CAAA,6CAAA,iCAAA,+CAAA,iCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,6BAAA,6BAEE,MAAA,QACA,iBAAA,YDvDF,mBCmBA,MAAA,QACA,aAAA,QAEA,yBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,oCAAA,yBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,qCAAA,sCAAA,0BAAA,wCAAA,0BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,2CAAA,4CAAA,gCAAA,8CAAA,gCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,4BAAA,4BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YD3CJ,UACE,YAAA,IACA,MAAA,QACA,gBAAA,UAEA,gBACE,MAAA,QAQF,mBAAA,mBAEE,MAAA,QAWJ,mBAAA,QCuBE,QAAA,MAAA,KzBsKI,UAAA,QClRF,cAAA,MuByFJ,mBAAA,QCmBE,QAAA,OAAA,MzBsKI,UAAA,QClRF,cAAA,MyBnBJ,MVgBM,WAAA,QAAA,KAAA,OAIA,uCUpBN,MVqBQ,WAAA,MUlBN,iBACE,QAAA,EAMF,qBACE,QAAA,KAIJ,YACE,OAAA,EACA,SAAA,OVDI,WAAA,OAAA,KAAA,KAIA,uCULN,YVMQ,WAAA,MUDN,gCACE,MAAA,EACA,OAAA,KVNE,WAAA,MAAA,KAAA,KAIA,uCUAJ,gCVCM,WAAA,MjBs3GR,UADA,SAEA,W4B34GA,QAIE,SAAA,SAGF,iBACE,YAAA,OCqBE,wBACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAhCJ,WAAA,KAAA,MACA,aAAA,KAAA,MAAA,YACA,cAAA,EACA,YAAA,KAAA,MAAA,YAqDE,8BACE,YAAA,ED3CN,eACE,SAAA,SACA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,MAAA,EACA,OAAA,E3B+QI,UAAA,K2B7QJ,MAAA,QACA,WAAA,KACA,WAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,gB1BVE,cAAA,O0BcF,+BACE,IAAA,KACA,KAAA,EACA,WAAA,QAYA,qBACE,cAAA,MAEA,qCACE,MAAA,KACA,KAAA,EAIJ,mBACE,cAAA,IAEA,mCACE,MAAA,EACA,KAAA,KnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,yBACE,cAAA,MAEA,yCACE,MAAA,KACA,KAAA,EAIJ,uBACE,cAAA,IAEA,uCACE,MAAA,EACA,KAAA,MAUN,uCACE,IAAA,KACA,OAAA,KACA,WAAA,EACA,cAAA,QC9CA,gCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAzBJ,WAAA,EACA,aAAA,KAAA,MAAA,YACA,cAAA,KAAA,MACA,YAAA,KAAA,MAAA,YA8CE,sCACE,YAAA,ED0BJ,wCACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,YAAA,QC5DA,iCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAlBJ,WAAA,KAAA,MAAA,YACA,aAAA,EACA,cAAA,KAAA,MAAA,YACA,YAAA,KAAA,MAuCE,uCACE,YAAA,EDoCF,iCACE,eAAA,EAMJ,0CACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,aAAA,QC7EA,mCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAWA,mCACE,QAAA,KAGF,oCACE,QAAA,aACA,aAAA,OACA,eAAA,OACA,QAAA,GA9BN,WAAA,KAAA,MAAA,YACA,aAAA,KAAA,MACA,cAAA,KAAA,MAAA,YAiCE,yCACE,YAAA,EDqDF,oCACE,eAAA,EAON,kBACE,OAAA,EACA,OAAA,MAAA,EACA,SAAA,OACA,WAAA,IAAA,MAAA,gBAMF,eACE,QAAA,MACA,MAAA,KACA,QAAA,OAAA,KACA,MAAA,KACA,YAAA,IACA,MAAA,QACA,WAAA,QACA,gBAAA,KACA,YAAA,OACA,iBAAA,YACA,OAAA,EAcA,qBAAA,qBAEE,MAAA,QVzJF,iBAAA,QU8JA,sBAAA,sBAEE,MAAA,KACA,gBAAA,KVjKF,iBAAA,QUqKA,wBAAA,wBAEE,MAAA,QACA,eAAA,KACA,iBAAA,YAMJ,oBACE,QAAA,MAIF,iBACE,QAAA,MACA,QAAA,MAAA,KACA,cAAA,E3B0GI,UAAA,Q2BxGJ,MAAA,QACA,YAAA,OAIF,oBACE,QAAA,MACA,QAAA,OAAA,KACA,MAAA,QAIF,oBACE,MAAA,QACA,iBAAA,QACA,aAAA,gBAGA,mCACE,MAAA,QAEA,yCAAA,yCAEE,MAAA,KVhNJ,iBAAA,sBUoNE,0CAAA,0CAEE,MAAA,KVtNJ,iBAAA,QU0NE,4CAAA,4CAEE,MAAA,QAIJ,sCACE,aAAA,gBAGF,wCACE,MAAA,QAGF,qCACE,MAAA,QE5OJ,W9B2rHA,oB8BzrHE,SAAA,SACA,QAAA,YACA,eAAA,O9B6rHF,yB8B3rHE,gBACE,SAAA,SACA,KAAA,EAAA,EAAA,K9BmsHJ,4CACA,0CAIA,gCADA,gCADA,+BADA,+B8BhsHE,mC9ByrHF,iCAIA,uBADA,uBADA,sBADA,sB8BprHI,QAAA,EAKJ,aACE,QAAA,KACA,UAAA,KACA,gBAAA,WAEA,0BACE,MAAA,K9BgsHJ,wC8B1rHE,kCAEE,YAAA,K9B4rHJ,4C8BxrHE,uD5BRE,wBAAA,EACA,2BAAA,EFqsHJ,6C8BrrHE,+B9BorHF,iCEvrHI,uBAAA,EACA,0BAAA,E4BqBJ,uBACE,cAAA,SACA,aAAA,SAEA,8BAAA,uCAAA,sCAGE,YAAA,EAGF,0CACE,aAAA,EAIJ,0CAAA,+BACE,cAAA,QACA,aAAA,QAGF,0CAAA,+BACE,cAAA,OACA,aAAA,OAoBF,oBACE,eAAA,OACA,YAAA,WACA,gBAAA,OAEA,yB9BmpHF,+B8BjpHI,MAAA,K9BqpHJ,iD8BlpHE,2CAEE,WAAA,K9BopHJ,qD8BhpHE,gE5BvFE,2BAAA,EACA,0BAAA,EF2uHJ,sD8BhpHE,8B5B1GE,uBAAA,EACA,wBAAA,E6BxBJ,KACE,QAAA,KACA,UAAA,KACA,aAAA,EACA,cAAA,EACA,WAAA,KAGF,UACE,QAAA,MACA,QAAA,MAAA,KAGA,MAAA,QACA,gBAAA,KdHI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,YAIA,uCcPN,UdQQ,WAAA,McCN,gBAAA,gBAEE,MAAA,QAKF,mBACE,MAAA,QACA,eAAA,KACA,OAAA,QAQJ,UACE,cAAA,IAAA,MAAA,QAEA,oBACE,cAAA,KACA,WAAA,IACA,OAAA,IAAA,MAAA,Y7BlBA,uBAAA,OACA,wBAAA,O6BoBA,0BAAA,0BAEE,aAAA,QAAA,QAAA,QAEA,UAAA,QAGF,6BACE,MAAA,QACA,iBAAA,YACA,aAAA,Y/BixHN,mC+B7wHE,2BAEE,MAAA,QACA,iBAAA,KACA,aAAA,QAAA,QAAA,KAGF,yBAEE,WAAA,K7B5CA,uBAAA,EACA,wBAAA,E6BuDF,qBACE,WAAA,IACA,OAAA,E7BnEA,cAAA,O6BuEF,4B/BmwHF,2B+BjwHI,MAAA,KbxFF,iBAAA,QlB+1HF,oB+B5vHE,oBAEE,KAAA,EAAA,EAAA,KACA,WAAA,O/B+vHJ,yB+B1vHE,yBAEE,WAAA,EACA,UAAA,EACA,WAAA,OAMF,8B/BuvHF,mC+BtvHI,MAAA,KAUF,uBACE,QAAA,KAEF,qBACE,QAAA,MCxHJ,QACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,OACA,gBAAA,cACA,YAAA,MAEA,eAAA,MAOA,mBhCs2HF,yBAGA,sBADA,sBADA,sBAGA,sBACA,uBgC12HI,QAAA,KACA,UAAA,QACA,YAAA,OACA,gBAAA,cAoBJ,cACE,YAAA,SACA,eAAA,SACA,aAAA,K/B2OI,UAAA,Q+BzOJ,gBAAA,KACA,YAAA,OAaF,YACE,QAAA,KACA,eAAA,OACA,aAAA,EACA,cAAA,EACA,WAAA,KAEA,sBACE,cAAA,EACA,aAAA,EAGF,2BACE,SAAA,OASJ,aACE,YAAA,MACA,eAAA,MAYF,iBACE,WAAA,KACA,UAAA,EAGA,YAAA,OAIF,gBACE,QAAA,OAAA,O/B6KI,UAAA,Q+B3KJ,YAAA,EACA,iBAAA,YACA,OAAA,IAAA,MAAA,Y9BzGE,cAAA,OeHE,WAAA,WAAA,KAAA,YAIA,uCemGN,gBflGQ,WAAA,Me2GN,sBACE,gBAAA,KAGF,sBACE,gBAAA,KACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAMJ,qBACE,QAAA,aACA,MAAA,MACA,OAAA,MACA,eAAA,OACA,kBAAA,UACA,oBAAA,OACA,gBAAA,KAGF,mBACE,WAAA,6BACA,WAAA,KvB1FE,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC+yHV,oCgC7yHQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCo2HV,oCgCl2HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCy5HV,oCgCv5HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC88HV,oCgC58HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,mBAEI,UAAA,OACA,gBAAA,WAEA,+BACE,eAAA,IAEA,8CACE,SAAA,SAGF,yCACE,cAAA,MACA,aAAA,MAIJ,sCACE,SAAA,QAGF,oCACE,QAAA,eACA,WAAA,KAGF,mCACE,QAAA,KAGF,qCACE,QAAA,KAGF,8BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCmgIV,qCgCjgIQ,kCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,mCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SA1DN,eAEI,UAAA,OACA,gBAAA,WAEA,2BACE,eAAA,IAEA,0CACE,SAAA,SAGF,qCACE,cAAA,MACA,aAAA,MAIJ,kCACE,SAAA,QAGF,gCACE,QAAA,eACA,WAAA,KAGF,+BACE,QAAA,KAGF,iCACE,QAAA,KAGF,0BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCujIV,iCgCrjIQ,8BAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,+BACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,QAcR,4BACE,MAAA,eAEA,kCAAA,kCAEE,MAAA,eAKF,oCACE,MAAA,gBAEA,0CAAA,0CAEE,MAAA,eAGF,6CACE,MAAA,ehCqiIR,2CgCjiII,0CAEE,MAAA,eAIJ,8BACE,MAAA,gBACA,aAAA,eAGF,mCACE,iBAAA,4OAGF,2BACE,MAAA,gBAEA,6BhC8hIJ,mCADA,mCgC1hIM,MAAA,eAOJ,2BACE,MAAA,KAEA,iCAAA,iCAEE,MAAA,KAKF,mCACE,MAAA,sBAEA,yCAAA,yCAEE,MAAA,sBAGF,4CACE,MAAA,sBhCqhIR,0CgCjhII,yCAEE,MAAA,KAIJ,6BACE,MAAA,sBACA,aAAA,qBAGF,kCACE,iBAAA,kPAGF,0BACE,MAAA,sBACA,4BhC+gIJ,kCADA,kCgC3gIM,MAAA,KCvUN,MACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,UAAA,EAEA,UAAA,WACA,iBAAA,KACA,gBAAA,WACA,OAAA,IAAA,MAAA,iB/BME,cAAA,O+BFF,SACE,aAAA,EACA,YAAA,EAGF,kBACE,WAAA,QACA,cAAA,QAEA,8BACE,iBAAA,E/BCF,uBAAA,mBACA,wBAAA,mB+BEA,6BACE,oBAAA,E/BUF,2BAAA,mBACA,0BAAA,mB+BJF,+BjCk1IF,+BiCh1II,WAAA,EAIJ,WAGE,KAAA,EAAA,EAAA,KACA,QAAA,KAAA,KAIF,YACE,cAAA,MAGF,eACE,WAAA,QACA,cAAA,EAGF,sBACE,cAAA,EAQA,sBACE,YAAA,KAQJ,aACE,QAAA,MAAA,KACA,cAAA,EAEA,iBAAA,gBACA,cAAA,IAAA,MAAA,iBAEA,yB/BpEE,cAAA,mBAAA,mBAAA,EAAA,E+ByEJ,aACE,QAAA,MAAA,KAEA,iBAAA,gBACA,WAAA,IAAA,MAAA,iBAEA,wB/B/EE,cAAA,EAAA,EAAA,mBAAA,mB+ByFJ,kBACE,aAAA,OACA,cAAA,OACA,YAAA,OACA,cAAA,EAUF,mBACE,aAAA,OACA,YAAA,OAIF,kBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,K/BnHE,cAAA,mB+BuHJ,UjCozIA,iBADA,ciChzIE,MAAA,KAGF,UjCmzIA,cEv6II,uBAAA,mBACA,wBAAA,mB+BwHJ,UjCozIA,iBE/5II,2BAAA,mBACA,0BAAA,mB+BuHF,kBACE,cAAA,OxBpGA,yBwBgGJ,YAQI,QAAA,KACA,UAAA,IAAA,KAGA,kBAEE,KAAA,EAAA,EAAA,GACA,cAAA,EAEA,wBACE,YAAA,EACA,YAAA,EAKA,mC/BpJJ,wBAAA,EACA,2BAAA,EF+7IJ,gDiCzyIU,iDAGE,wBAAA,EjC0yIZ,gDiCxyIU,oDAGE,2BAAA,EAIJ,oC/BrJJ,uBAAA,EACA,0BAAA,EF67IJ,iDiCtyIU,kDAGE,uBAAA,EjCuyIZ,iDiCryIU,qDAGE,0BAAA,GC7MZ,kBACE,SAAA,SACA,QAAA,KACA,YAAA,OACA,MAAA,KACA,QAAA,KAAA,QjC4RI,UAAA,KiC1RJ,MAAA,QACA,WAAA,KACA,iBAAA,KACA,OAAA,EhCKE,cAAA,EgCHF,gBAAA,KjBAI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,cAAA,KAAA,KAIA,uCiBhBN,kBjBiBQ,WAAA,MiBFN,kCACE,MAAA,QACA,iBAAA,QACA,WAAA,MAAA,EAAA,KAAA,EAAA,iBAEA,yCACE,iBAAA,gRACA,UAAA,gBAKJ,yBACE,YAAA,EACA,MAAA,QACA,OAAA,QACA,YAAA,KACA,QAAA,GACA,iBAAA,gRACA,kBAAA,UACA,gBAAA,QjBvBE,WAAA,UAAA,IAAA,YAIA,uCiBWJ,yBjBVM,WAAA,MiBsBN,wBACE,QAAA,EAGF,wBACE,QAAA,EACA,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,kBACE,cAAA,EAGF,gBACE,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,8BhCnCE,uBAAA,OACA,wBAAA,OgCqCA,gDhCtCA,uBAAA,mBACA,wBAAA,mBgC0CF,oCACE,WAAA,EAIF,6BhClCE,2BAAA,OACA,0BAAA,OgCqCE,yDhCtCF,2BAAA,mBACA,0BAAA,mBgC0CA,iDhC3CA,2BAAA,OACA,0BAAA,OgCgDJ,gBACE,QAAA,KAAA,QASA,qCACE,aAAA,EAGF,iCACE,aAAA,EACA,YAAA,EhCxFA,cAAA,EgC2FA,6CAAgB,WAAA,EAChB,4CAAe,cAAA,EAEf,mDhC9FA,cAAA,EiCnBJ,YACE,QAAA,KACA,UAAA,KACA,QAAA,EAAA,EACA,cAAA,KAEA,WAAA,KAOA,kCACE,aAAA,MAEA,0CACE,MAAA,KACA,cAAA,MACA,MAAA,QACA,QAAA,kCAIJ,wBACE,MAAA,QCzBJ,YACE,QAAA,KhCGA,aAAA,EACA,WAAA,KgCAF,WACE,SAAA,SACA,QAAA,MACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,QnBKI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCmBfN,WnBgBQ,WAAA,MmBPN,iBACE,QAAA,EACA,MAAA,QAEA,iBAAA,QACA,aAAA,QAGF,iBACE,QAAA,EACA,MAAA,QACA,iBAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKF,wCACE,YAAA,KAGF,6BACE,QAAA,EACA,MAAA,KlBlCF,iBAAA,QkBoCE,aAAA,QAGF,+BACE,MAAA,QACA,eAAA,KACA,iBAAA,KACA,aAAA,QC3CF,WACE,QAAA,QAAA,OAOI,kCnCqCJ,uBAAA,OACA,0BAAA,OmChCI,iCnCiBJ,wBAAA,OACA,2BAAA,OmChCF,0BACE,QAAA,OAAA,OpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MmChCF,0BACE,QAAA,OAAA,MpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MoC/BJ,OACE,QAAA,aACA,QAAA,MAAA,MrC8RI,UAAA,MqC5RJ,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,eAAA,SpCKE,cAAA,OoCAF,aACE,QAAA,KAKJ,YACE,SAAA,SACA,IAAA,KCvBF,OACE,SAAA,SACA,QAAA,KAAA,KACA,cAAA,KACA,OAAA,IAAA,MAAA,YrCWE,cAAA,OqCNJ,eAEE,MAAA,QAIF,YACE,YAAA,IAQF,mBACE,cAAA,KAGA,8BACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,EACA,QAAA,QAAA,KAeF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,iBClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,6BACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,cClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,0BACE,MAAA,QD6CF,aClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,yBACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QCHF,wCACE,GAAK,sBAAA,MADP,gCACE,GAAK,sBAAA,MAKT,UACE,QAAA,KACA,OAAA,KACA,SAAA,OxCwRI,UAAA,OwCtRJ,iBAAA,QvCIE,cAAA,OuCCJ,cACE,QAAA,KACA,eAAA,OACA,gBAAA,OACA,SAAA,OACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,iBAAA,QxBZI,WAAA,MAAA,IAAA,KAIA,uCwBAN,cxBCQ,WAAA,MwBWR,sBvBYE,iBAAA,iKuBVA,gBAAA,KAAA,KAIA,uBACE,kBAAA,GAAA,OAAA,SAAA,qBAAA,UAAA,GAAA,OAAA,SAAA,qBAGE,uCAJJ,uBAKM,kBAAA,KAAA,UAAA,MCvCR,YACE,QAAA,KACA,eAAA,OAGA,aAAA,EACA,cAAA,ExCSE,cAAA,OwCLJ,qBACE,gBAAA,KACA,cAAA,QAEA,gCAEE,QAAA,uBAAA,KACA,kBAAA,QAUJ,wBACE,MAAA,KACA,MAAA,QACA,WAAA,QAGA,8BAAA,8BAEE,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QAGF,+BACE,MAAA,QACA,iBAAA,QASJ,iBACE,SAAA,SACA,QAAA,MACA,QAAA,MAAA,KACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,6BxCrCE,uBAAA,QACA,wBAAA,QwCwCF,4BxC3BE,2BAAA,QACA,0BAAA,QwC8BF,0BAAA,0BAEE,MAAA,QACA,eAAA,KACA,iBAAA,KAIF,wBACE,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,kCACE,iBAAA,EAEA,yCACE,WAAA,KACA,iBAAA,IAcF,uBACE,eAAA,IAGE,oDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,mDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,+CACE,WAAA,EAGF,yDACE,iBAAA,IACA,kBAAA,EAEA,gEACE,YAAA,KACA,kBAAA,IjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,2BACE,eAAA,IAGE,wDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,uDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,mDACE,WAAA,EAGF,6DACE,iBAAA,IACA,kBAAA,EAEA,oEACE,YAAA,KACA,kBAAA,KAcZ,kBxC9HI,cAAA,EwCiIF,mCACE,aAAA,EAAA,EAAA,IAEA,8CACE,oBAAA,ECpJJ,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,2BACE,MAAA,QACA,iBAAA,QAGE,wDAAA,wDAEE,MAAA,QACA,iBAAA,QAGF,yDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,wBACE,MAAA,QACA,iBAAA,QAGE,qDAAA,qDAEE,MAAA,QACA,iBAAA,QAGF,sDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,uBACE,MAAA,QACA,iBAAA,QAGE,oDAAA,oDAEE,MAAA,QACA,iBAAA,QAGF,qDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QCbR,WACE,WAAA,YACA,MAAA,IACA,OAAA,IACA,QAAA,MAAA,MACA,MAAA,KACA,WAAA,YAAA,0TAAA,MAAA,CAAA,IAAA,KAAA,UACA,OAAA,E1COE,cAAA,O0CLF,QAAA,GAGA,iBACE,MAAA,KACA,gBAAA,KACA,QAAA,IAGF,iBACE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBACA,QAAA,EAGF,oBAAA,oBAEE,eAAA,KACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,QAAA,IAIJ,iBACE,OAAA,UAAA,gBAAA,iBCtCF,OACE,MAAA,MACA,UAAA,K5CmSI,UAAA,Q4ChSJ,eAAA,KACA,iBAAA,sBACA,gBAAA,YACA,OAAA,IAAA,MAAA,eACA,WAAA,EAAA,MAAA,KAAA,gB3CUE,cAAA,O2CPF,eACE,QAAA,EAGF,kBACE,QAAA,KAIJ,iBACE,MAAA,oBAAA,MAAA,iBAAA,MAAA,YACA,UAAA,KACA,eAAA,KAEA,mCACE,cAAA,OAIJ,cACE,QAAA,KACA,YAAA,OACA,QAAA,MAAA,OACA,MAAA,QACA,iBAAA,sBACA,gBAAA,YACA,cAAA,IAAA,MAAA,gB3CVE,uBAAA,mBACA,wBAAA,mB2CYF,yBACE,aAAA,SACA,YAAA,OAIJ,YACE,QAAA,OACA,UAAA,WC1CF,OACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,OAAA,KACA,WAAA,OACA,WAAA,KAGA,QAAA,EAOF,cACE,SAAA,SACA,MAAA,KACA,OAAA,MAEA,eAAA,KAGA,0B7BlBI,WAAA,UAAA,IAAA,S6BoBF,UAAA,mB7BhBE,uC6BcJ,0B7BbM,WAAA,M6BiBN,0BACE,UAAA,KAIF,kCACE,UAAA,YAIJ,yBACE,OAAA,kBAEA,wCACE,WAAA,KACA,SAAA,OAGF,qCACE,WAAA,KAIJ,uBACE,QAAA,KACA,YAAA,OACA,WAAA,kBAIF,eACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,MAAA,KAGA,eAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,e5C3DE,cAAA,M4C+DF,QAAA,EAIF,gBCpFE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,qBAAS,QAAA,EACT,qBAAS,QAAA,GDgFX,cACE,QAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KACA,cAAA,IAAA,MAAA,Q5CtEE,uBAAA,kBACA,wBAAA,kB4CwEF,yBACE,QAAA,MAAA,MACA,OAAA,OAAA,OAAA,OAAA,KAKJ,aACE,cAAA,EACA,YAAA,IAKF,YACE,SAAA,SAGA,KAAA,EAAA,EAAA,KACA,QAAA,KAIF,cACE,QAAA,KACA,UAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,SACA,QAAA,OACA,WAAA,IAAA,MAAA,Q5CzFE,2BAAA,kBACA,0BAAA,kB4C8FF,gBACE,OAAA,OrC3EA,yBqCkFF,cACE,UAAA,MACA,OAAA,QAAA,KAGF,yBACE,OAAA,oBAGF,uBACE,WAAA,oBAOF,UAAY,UAAA,OrCnGV,yBqCuGF,U9CywKF,U8CvwKI,UAAA,OrCzGA,0BqC8GF,UAAY,UAAA,QASV,kBACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,iCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,gC5C/KF,cAAA,E4CmLE,8BACE,WAAA,KAGF,gC5CvLF,cAAA,EOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,2BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,0CACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,yC5C/KF,cAAA,E4CmLE,uCACE,WAAA,KAGF,yC5CvLF,cAAA,G8ClBJ,SACE,SAAA,SACA,QAAA,KACA,QAAA,MACA,OAAA,ECJA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,Q+C1RJ,UAAA,WACA,QAAA,EAEA,cAAS,QAAA,GAET,wBACE,SAAA,SACA,QAAA,MACA,MAAA,MACA,OAAA,MAEA,gCACE,SAAA,SACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,6CAAA,gBACE,QAAA,MAAA,EAEA,4DAAA,+BACE,OAAA,EAEA,oEAAA,uCACE,IAAA,KACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,+CAAA,gBACE,QAAA,EAAA,MAEA,8DAAA,+BACE,KAAA,EACA,MAAA,MACA,OAAA,MAEA,sEAAA,uCACE,MAAA,KACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,gDAAA,mBACE,QAAA,MAAA,EAEA,+DAAA,kCACE,IAAA,EAEA,uEAAA,0CACE,OAAA,KACA,aAAA,EAAA,MAAA,MACA,oBAAA,KAKN,8CAAA,kBACE,QAAA,EAAA,MAEA,6DAAA,iCACE,MAAA,EACA,MAAA,MACA,OAAA,MAEA,qEAAA,yCACE,KAAA,KACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,eACE,UAAA,MACA,QAAA,OAAA,MACA,MAAA,KACA,WAAA,OACA,iBAAA,K9C7FE,cAAA,OgDnBJ,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,MACA,UAAA,MDLA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,QiDzRJ,UAAA,WACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,ehDIE,cAAA,MgDAF,wBACE,SAAA,SACA,QAAA,MACA,MAAA,KACA,OAAA,MAEA,+BAAA,gCAEE,SAAA,SACA,QAAA,MACA,QAAA,GACA,aAAA,YACA,aAAA,MAMJ,4DAAA,+BACE,OAAA,mBAEA,oEAAA,uCACE,OAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,gBAGF,mEAAA,sCACE,OAAA,IACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAMJ,8DAAA,+BACE,KAAA,mBACA,MAAA,MACA,OAAA,KAEA,sEAAA,uCACE,KAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,gBAGF,qEAAA,sCACE,KAAA,IACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAMJ,+DAAA,kCACE,IAAA,mBAEA,uEAAA,0CACE,IAAA,EACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,gBAGF,sEAAA,yCACE,IAAA,IACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,KAKJ,wEAAA,2CACE,SAAA,SACA,IAAA,EACA,KAAA,IACA,QAAA,MACA,MAAA,KACA,YAAA,OACA,QAAA,GACA,cAAA,IAAA,MAAA,QAKF,6DAAA,iCACE,MAAA,mBACA,MAAA,MACA,OAAA,KAEA,qEAAA,yCACE,MAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,gBAGF,oEAAA,wCACE,MAAA,IACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,gBACE,QAAA,MAAA,KACA,cAAA,EjDuJI,UAAA,KiDpJJ,iBAAA,QACA,cAAA,IAAA,MAAA,ehDtHE,uBAAA,kBACA,wBAAA,kBgDwHF,sBACE,QAAA,KAIJ,cACE,QAAA,KAAA,KACA,MAAA,QC/IF,UACE,SAAA,SAGF,wBACE,aAAA,MAGF,gBACE,SAAA,SACA,MAAA,KACA,SAAA,OCtBA,uBACE,QAAA,MACA,MAAA,KACA,QAAA,GDuBJ,eACE,SAAA,SACA,QAAA,KACA,MAAA,KACA,MAAA,KACA,aAAA,MACA,4BAAA,OAAA,oBAAA,OlClBI,WAAA,UAAA,IAAA,YAIA,uCkCQN,elCPQ,WAAA,MjBgzLR,oBACA,oBmDhyLA,sBAGE,QAAA,MnDmyLF,0BmD/xLA,8CAEE,UAAA,iBnDkyLF,4BmD/xLA,4CAEE,UAAA,kBAWA,8BACE,QAAA,EACA,oBAAA,QACA,UAAA,KnD0xLJ,uDACA,qDmDxxLE,qCAGE,QAAA,EACA,QAAA,EnDyxLJ,yCmDtxLE,2CAEE,QAAA,EACA,QAAA,ElC/DE,WAAA,QAAA,GAAA,IAIA,uCjBq1LN,yCmD7xLE,2ClCvDM,WAAA,MjB01LR,uBmDtxLA,uBAEE,SAAA,SACA,IAAA,EACA,OAAA,EACA,QAAA,EAEA,QAAA,KACA,YAAA,OACA,gBAAA,OACA,MAAA,IACA,QAAA,EACA,MAAA,KACA,WAAA,OACA,WAAA,IACA,OAAA,EACA,QAAA,GlCzFI,WAAA,QAAA,KAAA,KAIA,uCjB82LN,uBmDzyLA,uBlCpEQ,WAAA,MjBm3LR,6BADA,6BmD1xLE,6BAAA,6BAEE,MAAA,KACA,gBAAA,KACA,QAAA,EACA,QAAA,GAGJ,uBACE,KAAA,EAGF,uBACE,MAAA,EnD8xLF,4BmDzxLA,4BAEE,QAAA,aACA,MAAA,KACA,OAAA,KACA,kBAAA,UACA,oBAAA,IACA,gBAAA,KAAA,KAWF,4BACE,iBAAA,wPAEF,4BACE,iBAAA,yPAQF,qBACE,SAAA,SACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,KACA,gBAAA,OACA,QAAA,EAEA,aAAA,IACA,cAAA,KACA,YAAA,IACA,WAAA,KAEA,sCACE,WAAA,YACA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,OAAA,IACA,QAAA,EACA,aAAA,IACA,YAAA,IACA,YAAA,OACA,OAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,EAEA,WAAA,KAAA,MAAA,YACA,cAAA,KAAA,MAAA,YACA,QAAA,GlC5KE,WAAA,QAAA,IAAA,KAIA,uCkCwJJ,sClCvJM,WAAA,MkC2KN,6BACE,QAAA,EASJ,kBACE,SAAA,SACA,MAAA,IACA,OAAA,QACA,KAAA,IACA,YAAA,QACA,eAAA,QACA,MAAA,KACA,WAAA,OnDoxLF,2CmD9wLE,2CAEE,OAAA,UAAA,eAGF,qDACE,iBAAA,KAGF,iCACE,MAAA,KE7NJ,kCACE,GAAK,UAAA,gBADP,0BACE,GAAK,UAAA,gBAIP,gBACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,OAAA,MAAA,MAAA,aACA,mBAAA,YAEA,cAAA,IACA,kBAAA,KAAA,OAAA,SAAA,eAAA,UAAA,KAAA,OAAA,SAAA,eAGF,mBACE,MAAA,KACA,OAAA,KACA,aAAA,KAQF,gCACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MANJ,wBACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MAKJ,cACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,iBAAA,aAEA,cAAA,IACA,QAAA,EACA,kBAAA,KAAA,OAAA,SAAA,aAAA,UAAA,KAAA,OAAA,SAAA,aAGF,iBACE,MAAA,KACA,OAAA,KAIA,uCACE,gBrDo/LJ,cqDl/LM,2BAAA,KAAA,mBAAA,MCjEN,WACE,SAAA,MACA,OAAA,EACA,QAAA,KACA,QAAA,KACA,eAAA,OACA,UAAA,KAEA,WAAA,OACA,iBAAA,KACA,gBAAA,YACA,QAAA,ErCKI,WAAA,UAAA,IAAA,YAIA,uCqCpBN,WrCqBQ,WAAA,MqCLR,oBPdE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,yBAAS,QAAA,EACT,yBAAS,QAAA,GOQX,kBACE,QAAA,KACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KAEA,6BACE,QAAA,MAAA,MACA,WAAA,OACA,aAAA,OACA,cAAA,OAIJ,iBACE,cAAA,EACA,YAAA,IAGF,gBACE,UAAA,EACA,QAAA,KAAA,KACA,WAAA,KAGF,iBACE,IAAA,EACA,KAAA,EACA,MAAA,MACA,aAAA,IAAA,MAAA,eACA,UAAA,kBAGF,eACE,IAAA,EACA,MAAA,EACA,MAAA,MACA,YAAA,IAAA,MAAA,eACA,UAAA,iBAGF,eACE,IAAA,EACA,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,cAAA,IAAA,MAAA,eACA,UAAA,kBAGF,kBACE,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,WAAA,IAAA,MAAA,eACA,UAAA,iBAGF,gBACE,UAAA,KCjFF,aACE,QAAA,aACA,WAAA,IACA,eAAA,OACA,OAAA,KACA,iBAAA,aACA,QAAA,GAEA,yBACE,QAAA,aACA,QAAA,GAKJ,gBACE,WAAA,KAGF,gBACE,WAAA,KAGF,gBACE,WAAA,MAKA,+BACE,kBAAA,iBAAA,GAAA,YAAA,SAAA,UAAA,iBAAA,GAAA,YAAA,SAIJ,oCACE,IACE,QAAA,IAFJ,4BACE,IACE,QAAA,IAIJ,kBACE,mBAAA,8DAAA,WAAA,8DACA,kBAAA,KAAA,KAAA,UAAA,KAAA,KACA,kBAAA,iBAAA,GAAA,OAAA,SAAA,UAAA,iBAAA,GAAA,OAAA,SAGF,oCACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IAFJ,4BACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IH9CF,iBACE,QAAA,MACA,MAAA,KACA,QAAA,GIJF,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,gBACE,MAAA,QAGE,sBAAA,sBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,aACE,MAAA,QAGE,mBAAA,mBAEE,MAAA,QANN,YACE,MAAA,QAGE,kBAAA,kBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QCLR,OACE,SAAA,SACA,MAAA,KAEA,eACE,QAAA,MACA,YAAA,uBACA,QAAA,GAGF,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KAKF,WACE,kBAAA,KADF,WACE,kBAAA,mBADF,YACE,kBAAA,oBADF,YACE,kBAAA,oBCrBJ,WACE,SAAA,MACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,KAGF,cACE,SAAA,MACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,KAQE,YACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,KjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,gBACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MCzBN,QACE,QAAA,KACA,eAAA,IACA,YAAA,OACA,WAAA,QAGF,QACE,QAAA,KACA,KAAA,EAAA,EAAA,KACA,eAAA,OACA,WAAA,QCRF,iB5Dk4MA,0D6D93ME,SAAA,mBACA,MAAA,cACA,OAAA,cACA,QAAA,YACA,OAAA,eACA,SAAA,iBACA,KAAA,wBACA,YAAA,iBACA,OAAA,YCXA,uBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,GCRJ,eCAE,SAAA,OACA,cAAA,SACA,YAAA,OCNF,IACE,QAAA,aACA,WAAA,QACA,MAAA,IACA,WAAA,IACA,iBAAA,aACA,QAAA,ICyDM,gBAOI,eAAA,mBAPJ,WAOI,eAAA,cAPJ,cAOI,eAAA,iBAPJ,cAOI,eAAA,iBAPJ,mBAOI,eAAA,sBAPJ,gBAOI,eAAA,mBAPJ,aAOI,MAAA,eAPJ,WAOI,MAAA,gBAPJ,YAOI,MAAA,eAPJ,WAOI,QAAA,YAPJ,YAOI,QAAA,cAPJ,YAOI,QAAA,aAPJ,YAOI,QAAA,cAPJ,aAOI,QAAA,YAPJ,eAOI,SAAA,eAPJ,iBAOI,SAAA,iBAPJ,kBAOI,SAAA,kBAPJ,iBAOI,SAAA,iBAPJ,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,QAOI,WAAA,EAAA,MAAA,KAAA,0BAPJ,WAOI,WAAA,EAAA,QAAA,OAAA,2BAPJ,WAOI,WAAA,EAAA,KAAA,KAAA,2BAPJ,aAOI,WAAA,eAPJ,iBAOI,SAAA,iBAPJ,mBAOI,SAAA,mBAPJ,mBAOI,SAAA,mBAPJ,gBAOI,SAAA,gBAPJ,iBAOI,SAAA,yBAAA,SAAA,iBAPJ,OAOI,IAAA,YAPJ,QAOI,IAAA,cAPJ,SAOI,IAAA,eAPJ,UAOI,OAAA,YAPJ,WAOI,OAAA,cAPJ,YAOI,OAAA,eAPJ,SAOI,KAAA,YAPJ,UAOI,KAAA,cAPJ,WAOI,KAAA,eAPJ,OAOI,MAAA,YAPJ,QAOI,MAAA,cAPJ,SAOI,MAAA,eAPJ,kBAOI,UAAA,+BAPJ,oBAOI,UAAA,2BAPJ,oBAOI,UAAA,2BAPJ,QAOI,OAAA,IAAA,MAAA,kBAPJ,UAOI,OAAA,YAPJ,YAOI,WAAA,IAAA,MAAA,kBAPJ,cAOI,WAAA,YAPJ,YAOI,aAAA,IAAA,MAAA,kBAPJ,cAOI,aAAA,YAPJ,eAOI,cAAA,IAAA,MAAA,kBAPJ,iBAOI,cAAA,YAPJ,cAOI,YAAA,IAAA,MAAA,kBAPJ,gBAOI,YAAA,YAPJ,gBAOI,aAAA,kBAPJ,kBAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,eAOI,aAAA,kBAPJ,cAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,cAOI,aAAA,eAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,OAOI,MAAA,eAPJ,QAOI,MAAA,eAPJ,QAOI,UAAA,eAPJ,QAOI,MAAA,gBAPJ,YAOI,UAAA,gBAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,OAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,QAOI,WAAA,eAPJ,QAOI,OAAA,gBAPJ,YAOI,WAAA,gBAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,OAOI,IAAA,YAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,gBAPJ,OAOI,IAAA,eAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,eAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,gBAOI,YAAA,mCAPJ,MAOI,UAAA,iCAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,8BAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,eAPJ,YAOI,WAAA,iBAPJ,YAOI,WAAA,iBAPJ,UAOI,YAAA,cAPJ,YAOI,YAAA,kBAPJ,WAOI,YAAA,cAPJ,SAOI,YAAA,cAPJ,WAOI,YAAA,iBAPJ,MAOI,YAAA,YAPJ,OAOI,YAAA,eAPJ,SAOI,YAAA,cAPJ,OAOI,YAAA,YAPJ,YAOI,WAAA,eAPJ,UAOI,WAAA,gBAPJ,aAOI,WAAA,iBAPJ,sBAOI,gBAAA,eAPJ,2BAOI,gBAAA,oBAPJ,8BAOI,gBAAA,uBAPJ,gBAOI,eAAA,oBAPJ,gBAOI,eAAA,oBAPJ,iBAOI,eAAA,qBAPJ,WAOI,YAAA,iBAPJ,aAOI,YAAA,iBAPJ,YAOI,UAAA,qBAAA,WAAA,qBAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,gBAIQ,kBAAA,EAGJ,MAAA,+DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,aAIQ,kBAAA,EAGJ,MAAA,4DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAPJ,eAIQ,kBAAA,EAGJ,MAAA,yBAPJ,eAIQ,kBAAA,EAGJ,MAAA,+BAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAjBJ,iBACE,kBAAA,KADF,iBACE,kBAAA,IADF,iBACE,kBAAA,KADF,kBACE,kBAAA,EASF,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,cAIQ,gBAAA,EAGJ,iBAAA,6DAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,WAIQ,gBAAA,EAGJ,iBAAA,0DAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,gBAIQ,gBAAA,EAGJ,iBAAA,sBAjBJ,eACE,gBAAA,IADF,eACE,gBAAA,KADF,eACE,gBAAA,IADF,eACE,gBAAA,KADF,gBACE,gBAAA,EASF,aAOI,iBAAA,6BAPJ,iBAOI,oBAAA,cAAA,iBAAA,cAAA,YAAA,cAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,iBAPJ,WAOI,cAAA,YAPJ,WAOI,cAAA,gBAPJ,WAOI,cAAA,iBAPJ,WAOI,cAAA,gBAPJ,gBAOI,cAAA,cAPJ,cAOI,cAAA,gBAPJ,aAOI,uBAAA,iBAAA,wBAAA,iBAPJ,aAOI,wBAAA,iBAAA,2BAAA,iBAPJ,gBAOI,2BAAA,iBAAA,0BAAA,iBAPJ,eAOI,0BAAA,iBAAA,uBAAA,iBAPJ,SAOI,WAAA,kBAPJ,WAOI,WAAA,iBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,iBAOI,MAAA,eAPJ,eAOI,MAAA,gBAPJ,gBAOI,MAAA,eAPJ,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,WAOI,IAAA,YAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,gBAPJ,WAOI,IAAA,eAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,eAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,gBAOI,WAAA,eAPJ,cAOI,WAAA,gBAPJ,iBAOI,WAAA,kBCnDZ,0BD4CQ,MAOI,UAAA,iBAPJ,MAOI,UAAA,eAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,kBChCZ,aDyBQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`{% endcomment %} + + + +{% else %} + {% comment %}{% endcomment %} + + {% if course.enrolled? == false %} + {% t shared.enroll %} + {% elsif course.started? == false %} + {% t shared.course.start, key: current_school.course_vocabulary %} + {% elsif course.completed? %} + {% t shared.course.view, key: current_school.course_vocabulary %} + {% else %} + {% t shared.continue %} + {% endif %} + +{% endif %} \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_filter_by_progress.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_filter_by_progress.html.liquid new file mode 100644 index 00000000..34378e46 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_filter_by_progress.html.liquid @@ -0,0 +1,112 @@ +{% assign topic_classname = topic | split: " " %} + +

+ {% if label %} +
{{ label }}
+ {% endif %} +
+ +
+
+ + + diff --git a/NP_Custom_Templates/customer_templates/Scenario/_footer.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_footer.html.liquid new file mode 100644 index 00000000..27f6e44d --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_footer.html.liquid @@ -0,0 +1,116 @@ + + + + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_head.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_head.html.liquid new file mode 100644 index 00000000..2da3aa81 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_head.html.liquid @@ -0,0 +1,14 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + + + + + + + + + + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_header.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_header.html.liquid new file mode 100644 index 00000000..518a434e --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_header.html.liquid @@ -0,0 +1,200 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% comment %}{% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %}{% endcomment %} + +
+ +
+ + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ +{% include "messages" %} + + + diff --git a/NP_Custom_Templates/customer_templates/Scenario/_section_faqs.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_section_faqs.html.liquid new file mode 100644 index 00000000..42f1fb7b --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_section_faqs.html.liquid @@ -0,0 +1,106 @@ + + + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_section_popular_topics.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_section_popular_topics.html.liquid new file mode 100644 index 00000000..fbc35ae2 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_section_popular_topics.html.liquid @@ -0,0 +1,27 @@ + + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_section_tips_tricks.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_section_tips_tricks.html.liquid new file mode 100644 index 00000000..24f35f70 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_section_tips_tricks.html.liquid @@ -0,0 +1,76 @@ +{% capture quotes %} + + + + + + + + + +{% endcapture %} + + + + + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_sub_navigation.html.liquid new file mode 100644 index 00000000..c0556cba --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_sub_navigation.html.liquid @@ -0,0 +1,22 @@ + +{% comment %}{% endcomment %} + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_training_session_cta.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_training_session_cta.html.liquid new file mode 100644 index 00000000..91cdb885 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_training_session_cta.html.liquid @@ -0,0 +1,61 @@ +{% if training_session.approved? %} +
+ + {% t .registered %} +
+{% elsif training_session.pending? %} +
+ {% t .pending %} +
+{% elsif training_session.denied? %} +
+ {% t .denied %} +
+{% elsif training_session.too_late? %} +
+ {% t .too_late %} +
+{% elsif training_session.no_seats? %} +
+ {% t .no_seats %} +
+{% endif %} +
+
+
+ {% form_authenticity_token %} + + {% if training_session.internal? and training_session.approved? %} + {% if features.training_events_google_calendar? %} + {% include "training_session_calendars" %} + + {% else %} + + {% endif %} + + + {% endif %} + + {% if training_session.not_registered? %} + + {% endif %} +
+
+
+ + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/_training_session_date.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_training_session_date.html.liquid new file mode 100644 index 00000000..7963ec43 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_training_session_date.html.liquid @@ -0,0 +1,14 @@ +
+
+
+ {{ training_session.day }} +
+
+
+ {{ training_session.month }} +
+
+ {{ training_session.year }} +
+
+
diff --git a/NP_Custom_Templates/customer_templates/Scenario/_training_session_description.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_training_session_description.html.liquid new file mode 100644 index 00000000..bc95c88c --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_training_session_description.html.liquid @@ -0,0 +1,6 @@ +{%comment%}

+ {% t .header %} +

{%endcomment%} +
+ {{ training_event.description }} +
diff --git a/NP_Custom_Templates/customer_templates/Scenario/_training_session_details.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_training_session_details.html.liquid new file mode 100644 index 00000000..980a6bbf --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_training_session_details.html.liquid @@ -0,0 +1,24 @@ +
+ {% include "training_session_date" %} + +
+ + {{ training_session.time_period }} {{ training_session.time_zone }} +
+ + {% if training_session.location %} +
+ + {{ training_session.location }} +
+ {% endif %} + + {% if training_session.session_url %} + + {% endif %} +
diff --git a/NP_Custom_Templates/customer_templates/Scenario/_training_session_header.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/_training_session_header.html.liquid new file mode 100644 index 00000000..daee98b5 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/_training_session_header.html.liquid @@ -0,0 +1,10 @@ +
+ {% t shared.event_types, key: training_event.event_type %} + +
+
+ + + + {{ training_event.title }} +
diff --git a/NP_Custom_Templates/customer_templates/Scenario/course.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/course.html.liquid new file mode 100644 index 00000000..dcd3c147 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/course.html.liquid @@ -0,0 +1,209 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +
+ + {% if current_person.signed_in? %} +
+ + +
+ {% else %} +
+ +{% include "messages" %} + + + +
+
+ {% include "course_desktop_view" %} +
+
+ {% include "course_mobile_view" %} +
+
+{% include "footer" %} + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/dashboard.html.liquid new file mode 100644 index 00000000..4e6c3f23 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/dashboard.html.liquid @@ -0,0 +1,428 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ +
+ +
+ + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ +{% include "messages" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} + +
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+
+
+ +{% include "sub_navigation" %} +
+
+
Hi {{current_person.first_name}}! 👋
+
This is what's relevant to you right now in Northpass Academy.
+
+ {% comment %}
+
+ {% if features.learning_paths? %} +
+ {% t shared.learning_paths %} +
+ {% include "learning_paths_index", items: learning_paths.enrolled %} + {% endif %} +
+
+
Course Progress
+ {% include "widget_course_progress" %} +
+
{%endcomment%} + +
+
+ {% if courses.enrolled.any? %} + {% if categories.enrolled.any? %} + {% assign all_categories = categories.enrolled | map: "name" %} + {% for enrolled_category in all_categories %} +
+
+
+ Topic +
+
+ {{ enrolled_category }} +
+
+ {% + include "filter_by_progress", + label: "Filter by Progress:", + default_option: "All Courses", + topic: enrolled_category, + %} +
+ {% + include "carousel_courses", + items: courses.enrolled, + topic: enrolled_category, + %} + {% endfor %} + {% else %} + {% assign enrolled_category = "Not Categorized" %} +
+
+
+ Topic +
+
+ {{ enrolled_category }} +
+
+ {% + include "filter_by_progress", + label: "Filter by Progress:", + default_option: "All Courses", + topic: enrolled_category, + %} +
+ {% + include "carousel_courses", + items: courses.enrolled, + topic: enrolled_category, + %} + {% endif %} + {% else %} +
+ Courses +
+ {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} +
+ {% include "courses_zero_state", message: message %} +
+ {% endif %} +
+
+
+{% include "footer" %} + +{% comment %}{% endcomment %} + diff --git a/NP_Custom_Templates/customer_templates/Scenario/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/homepage.html.liquid new file mode 100644 index 00000000..3fe5b601 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/homepage.html.liquid @@ -0,0 +1,163 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.featured %} +
+ {% comment %}
{% endcomment %} +
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+
+
+ {% include "sub_navigation" %} + + + {% comment %}{% include "section_popular_topics" %}{% endcomment %} + + {% comment %}{% include "section_tips_tricks" %}{% endcomment %} + + {% comment %}{% include "section_faqs" %}{% endcomment %} + +
+{% include "footer" %} + +{% comment %}{% endcomment %} + diff --git a/NP_Custom_Templates/customer_templates/Scenario/homepage_test.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/homepage_test.html.liquid new file mode 100644 index 00000000..b30fd5b4 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/homepage_test.html.liquid @@ -0,0 +1,157 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.featured %} +
+ {% comment %}
{% endcomment %} +
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+
+
+ {% include "sub_navigation" %} + + + {% comment %}{% include "section_popular_topics" %}{% endcomment %} + + {% comment %}{% include "section_tips_tricks" %}{% endcomment %} + + {% comment %}{% include "section_faqs" %}{% endcomment %} + +
+{% include "footer" %} + +{% comment %}{% endcomment %} + diff --git a/NP_Custom_Templates/customer_templates/Scenario/styles.css.liquid b/NP_Custom_Templates/customer_templates/Scenario/styles.css.liquid new file mode 100644 index 00000000..f52efdaa --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/styles.css.liquid @@ -0,0 +1,1720 @@ +/* + Put your custom overlay styles in here + You can use your northpass color palette in this file + +{{ color_palette.button_font_color }} +{{ color_palette.button_color }} +{{ color_palette.button_hover_color }} +{{ color_palette.header_font_color }} +{{ color_palette.header_font_hover_color }} +{{ color_palette.header_color }} +*/ + +/**** TABLE OF CONTENTS ======== + +1.0 - GLOBAL STYLING +2.0 - PAGE SPECIFIC STYLING + 2.1 - HOMEPAGE + 2.2 - DASHBOARD + 2.3 - CATALOG + 2.4 - COURSE COVER PAGE + 2.5 - TRAINING SESSION + 2.6 - LOGIN PAGE + 2.7 - LEARNING PATH COVER PAGE +3.0 - COMPONENT SPECIFIC STYLING + 3.1 - HEADER + 3.2 - SUB NAV + 3.3 - FOOTER + 3.4 - BUTTONS + 3.5 - HEADINGS, SUBHEADS & GENERAL TEXT + 3.6 - COURSE CARD + 3.7 - LEARNING PATH CARD + 3.8 - TRAINING EVENT CARD + 3.9 - COURSE BANNER + 3.10 - COURSE DETAILS + 3.11 - COURSE OUTLINE + 3.12 - FILTER DROPDOWN + 3.13 - CAROUSEL - GLOBAL STYLES + 3.14 - CAROUSEL - EVENTS + 3.15 - CAROUSEL - COURSES + 3.16 - CAROUSEL - INSTRUCTORS + 3.17 - HOMEPAGE SECTION - FEATURED PHOTOGRAPHY + 3.18 - HOMEPAGE SECTION - TIPS & TRICKS + 3.19 - HOMEPAGE SECTION - FAQS + 3.20 - HOMEPAGE SECTION - FEATURED COURSES +*/ + +/* + 1.0 GLOBAL SYLING +*/ +body { + /* background: #00283D; */ + background: #fafafa; + /* font-family: "Lexend", "Roboto", sans-serif; */ + /* font-family: 'Roboto Condensed', sans-serif; */ + font-family: "Helvetica Neue", Arial, Helvetica, sans-serif +} + +div { + /* color: #fff; */ + color: #2c4265; +} +.np-color-white { + color: #fff; +} +.np-main { + /* background: #00283D; */ + background: #fafafa; +} + +.np-main .np-resource-title, +.np-main .np-resource-subtitle, +.np-top-title, +.np-training-session-sessions-title, +.np-content-instructors-content-name, +.np-content-instructors-content-info { + /* color: #fff; */ + color: #2c4265; +} + +.np-main .np-resource-subtitle, +.np-training-session-sessions-title, +.np-content-instructors-content-info { + opacity: 0.5; +} + +.np-resource-title { + font-weight: bold; +} +.np-resource-header-card { + background: transparent; + box-shadow: none; + color: #fff; +} + +.np-dashboard-border { + background: transparent; + border: 1px solid rgba(255, 255, 255, 0.15); +} + +.np-dashboard-border .np-card-content, +.np-dashboard-border.np-card-container { + background: transparent; +} +.np-dashboard-resources .np-card:last-of-type { + padding-bottom: 1rem; +} + +.np-card-content-divider { + border-top: 1px solid #2c4265; + margin-top: 3rem; + padding-top: 3rem; +} + +.np-top-cta { + background: #fafafa; + border: 1px solid #2c4265; + border-radius: 0; +} +.np-text-light { + color: rgba(255, 255, 255, 0.5); +} +.np-flex-wrapper { + display: flex; +} + +.choices__list--dropdown .choices__item { + color: #002532; +} +.dropdown [type="checkbox"]:checked + label:before { + background-color: #298e4e; +} + +.dropdown-button-apply { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%) !important; */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%) !important; + color: #fff; +} + +.np-zero-state-text { + color: #2c4265; + opacity: 0.5; +} +.np-dashboard-resources-container, +.np-learning-paths-resources-container { + border: 1px solid rgb(44, 66, 101, 0.5); + border-radius: 0; +} + +.np-course-version-outdated-popup-trigger, +.np-popup-header-icon { + color: #2bb24c; +} +.np-popup-tooltip { + background-color: #001E2E; + color: #fff; + border: 2px solid rgba(255, 255, 255, 0.5); + border-radius: 0; + bottom: 30px; + box-shadow: 0 2px 8px 0 rgb(53 64 78 / 25%); +} +.np-popup-header { + background-color: #001E2E; + border-radius: 0; + color: #fff; +} +.np-popup-body, +.np-popup-header-title { + color: #fff; +} +.np-popup-body-button { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); + border-radius: 0; + text-transform: uppercase; +} + +.np-alert.np-alert-info { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); +} + +@media (min-width: 768px) { + .np-md-flex-wrapper { + display: flex; + } +} + +/* + 2.0 - PAGE SPECIFIC STYLING +*/ + +/* + 2.1 - HOMEPAGE +*/ +.np-homepage-hero-image { + height: 300px; +} + +.np-homepage-hero-content { + padding: 2.25rem 2.5rem; + bottom: 0; +} +.np-homepage-featured-text { + padding: 0 2rem 2rem; +} +.np-homepage-featured { + margin-top: 4rem; +} +.np-homepage-featured .np-homepage-headline, +.np-homepage-featured .np-homepage-subheadline { + /* color: #fff; */ + color: #2c4265; +} + +.np-homepage-hero .np-homepage-headline { + font-size: 32px; + line-height: 48px; +} +.np-homepage-featured .np-homepage-subheadline { + opacity: 0.5; +} + +.np-homepage-hero-cta, +.np-button.np-homepage-hero-cta { + margin-top: 1.5rem; + background: rgba(0, 37, 50, 0.5); + text-transform: uppercase; + height: 40px; +} + +.np-topics-list { + margin: 0 4%; +} +.np-topics-list .np-stretch-content { + flex-flow: row wrap; +} +.np-topics-list .np-button-secondary { + margin: 6px 0; + flex: 0 1 1; +} + +.np-topics-list .np-button.np-top-button { + text-transform: none; + padding: 0 1rem; + white-space: normal; + text-align: center; +} + + +/* + 2.2 - DASHBOARD PAGE +*/ + +.np-dashboard { + /* background: #062531; */ + background: #fafafa; +} + +.np-dashboard-resources-title { + color: #fff; + opacity: 0.5; + margin-bottom: 19px; +} + +.np-dashboard .np-dashboard-resources-title, +.np-dashboard .np-md-flex-wrapper { + margin-bottom: 19px; +} +.np-dashboard .dashboard-section-courses .np-dashboard-resources-title { + margin-bottom: 0; +} +.np-dashboard .np-learning-paths-resources .np-card { + padding-bottom: 2.187rem; +} + +.np-dashboard-resources-category { + font-size: 20px; + line-height: 25px; + display: block; + font-weight: 500; + margin-top: 4px; +} + +@media (min-width: 768px) { + .np-dashboard .np-md-flex-wrapper .np-dashboard-resources-title { + margin-bottom: 0; + } + .np-dashboard-resources-title { + font-size: 0.937rem; + } + .np-dashboard .np-md-flex-wrapper { + justify-content: space-between; + align-items: flex-end; + } +} + +/* + 2.3 - CATALOG +*/ + +.np-catalog .np-progress-filter-wrapper, +.np-catalog .np-filter { + margin-bottom: 24px; +} +.catalog-filters { + display: flex; + justify-content: flex-end; + align-items: center; +} + +@media (min-width: 768px) { + .np-catalog-header { + align-items: start; + } + .np-catalog .np-progress-filter-wrapper, + .np-catalog .np-filter { + margin: 0; + } +} + +/* + 2.4 - COURSE COVER PAGE +*/ +#course-desktop .np-course-content { + /* background: #062531; */ + background: #fafafa; + padding: 0; +} +#course-mobile .np-card-container { + /* background: #062531; */ + background: #fafafa; + margin-top: 0; +} +.np-content-instructors-content-name { + font-size: 1.062rem; + margin-bottom: 3px; +} +.np-content-instructors-content-info { + font-size: 0.937rem; +} + +.np-content-categories-content-item { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); + color: #fff; +} + +/* + 2.5 TRAINING SESSION +*/ + +.np-training-session-tile, +.np-training-session-tile:hover { + background-color: #001E2E; + border-radius: 0; + color: #fff; +} + +.np-training-session-tile-icon, +.np-training-session .np-top-vocabulary .np-training-session-icon, +.np-button-color.np-training-session-icon { + color: #2c4265; +} +.np-training-session-tile-chevron { + color: #fff; +} + +.np-training-session .np-card-training-session-date-bar { + left: 0; + right: auto; + transform: rotate(180deg); +} + +.np-training-session-zero-state { + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 0px; +} + +/* + 2.6 LOGIN PAGE +*/ + +.np-account .np-form-action { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); + text-transform: uppercase; +} +.np-input-label { + color: #2c4265; + font-size: 0.85rem; + margin-bottom: 0.35rem; + opacity: 0.75; +} + +.np-account-avatar p { + color: #2c4265; +} +.terms-of-service a { + color: #2c4265; +} +.np-account-avatar-choice .np-button-secondary { + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%) !important; + border: 1px solid rgba(255, 255, 255, 0.5); + color: #fff; + height: 40px !important; +} + +.np-open-access .np-box, +.np-open-access .np-box .np-header-color { + border-radius: 0; + background: #001E2E; + box-shadow: none; +} +.np-open-access .np-alert.np-alert-error, +.np-open-access .np-box .np-box-content-container .np-form-action { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); +} + +.np-open-access .np-box .np-box-content-container .np-form-headline { + color: #fff; + margin-bottom: 1.5rem; +} + +.np-open-access .np-box .np-box-content-container .np-form-subheadline { + color: #fff; + opacity: 0.75; +} + +.np-open-access .np-box .np-box-content-container .np-form-action { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); + text-transform: uppercase; +} + +/* + 2.7 - LEARNING PATH COVER PAGE +*/ + +.np-learning-path-outline-inactive-item { + border: 1px solid rgba(255, 255, 255, 0.5); +} + +.np-learning-path-outline-bar { + background: rgba(255, 255, 255, 0.5); + border-radius: 0; + width: 3px; +} + +.np-top-image, +.np-learning-path-outline-course-image { + border-radius: 0; +} + +/* + 3.0 - COMPONENT SPECIFIC STYLING +*/ + +/* + 3.1 - HEADER +*/ +.np-header { + background: #34abe2; + border-bottom: 2px solid rgba(255, 255, 255, 0.05); +} + +.np-header.np-header-absolute { + position: absolute; + background: transparent; + border-bottom: none; +} + +@media (min-width: 768px) { + .np-dashboard-header .np-resource-subtitle { + margin-bottom: 2.5rem; + } + .np-header-desktop-nav { + display: flex; + } + + .np-header-logo-image { + height: 35px !important; + } +} + +/* @media (min-width: 1024px) { + .np-header-desktop-nav { + display: flex; + } +} */ + +/* + 3.2 - SUB NAV +*/ + +.np-sub-navigation { + /* background: #34abe2 !important; */ + background: #2c4265 !important; + border-bottom: 1px solid #2c4265; + /* border-top: 1px solid #2c4265; */ + margin-bottom: 1rem; + padding: 0 1rem 1rem; +} + +.np-sub-navigation-content-item-link { + justify-content: flex-end; + height: 30px; + color: #fff !important; + /* color: #2183CE; */ + opacity: 0.5; +} + +.np-sub-navigation-content-item-active .np-sub-navigation-content-item-link { + color: #fff; + /* color: #0170B9; */ + opacity: 0.7; + font-weight: 500; + justify-content: flex-end; +} + +.np-sub-navigation-content-item-active .np-sub-navigation-content-item-link, +.np-sub-navigation-content-item-active .np-sub-navigation-content-item-bar { + opacity: 1; +} + +.np-sub-navigation-content-item-bar { + background-color: #fff; + /* background-color: #0170B9; */ + margin: 0 auto; + width: 100%; + opacity: 0; + display: block; + height: 0.2rem; +} + +/* + 3.3 - FOOTER +*/ +.np-footer { + background: #002532 !important; +} +.np-footer + .np-powered-by { + background: #002532 !important; +} +.np-footer-navigation-link, +.np-footer-social-links-icon.np-button-color, +.np-footer-support-link.np-button-color { + color: #2bb24c; +} +.np-footer-support-item { + color: rgba(255, 255, 255, 0.5); +} + +/* + 3.4 - BUTTONS +*/ + +.np-button { + border-radius: 0; +} + +.np-top-button.np-button.np-button-secondary, +.np-button.dropdown-button { + background-color: transparent !important; + background-image: none; + border: 1px solid rgba(255, 255, 255, 0.5); + color: rgba(255, 255, 255, 0.5); + font-weight: 600; +} + +.np-button.np-background-color, +.np-button.np-top-button, +.np-card-content-footer .np-button { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); + text-transform: uppercase; +} + +button.enwYlE, +button.enwYlE:hover { + background-color: transparent; + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 0; + padding: 8px 12px; + color: #fff !important; +} + +button.jryxug { + color: #fff; +} +.bpSgf, +.fsgQJU { + color: rgba(255, 255, 255, 0.75) !important; +} + +.mjmTc { + border-radius: 0 !important; +} + +/* 3.5 - HEADINGS, SUBHEADS & GENERAL TEXT */ +.np-card-heading { + font-size: 1.25rem; +} +.np-text-title { + color: #2c4265; + font-size: 0.937rem; +} + +@media (min-width: 768px) { + .np-card-heading { + font-size: 1.5rem; + line-height: 1.875rem; + } + .np-card-text { + line-height: 1.75rem; + } +} + +/* + 3.6 - COURSE CARD +*/ +.np-card-container { + height: auto; + position: relative; + color: #fff; + /* border: 1px solid #2c4265; */ + /* border-bottom: none; */ +} + +.np-card-container, +.np-card-container-training-session { + background: #fafafa; + border-radius: 0; + box-shadow: none; +} + +.np-card-padding, +.np-card-padding-dynamic { + padding: 1.5rem; +} + +.np-card-image-overlay { + position: absolute; + width: 100%; + height: 100%; + opacity: 0.9; +} + +.np-card-image-content-top, +.np-card-image-content-bottom { + position: absolute; + left: 1.5rem; + z-index: 1; +} + +.np-card-image-content-top { + top: 1.5rem; +} +.np-card-image-content-bottom { + bottom: 1.5rem; + display: flex; + justify-content: space-between; + align-items: center; +} +.np-card-image-content-bottom .np-card-content-progress { + color: #34abe2; + margin-top: 0; +} +.np-card-content { + background: #fafafa; + border: 1px solid #2c4265; + border-top: none; +} +.np-card-content-footer { + margin-top: 1.2rem; +} +.np-card-content-footer .np-button { + width: 100%; +} + +@media screen and (min-width: 768px) { + .np-card-content-title { + font-size: 1.1rem; + flex: 1; + } + + .np-card-image-content-top, + .np-card-image-content-bottom { + left: 1.5rem; + right: 1.5rem; + } + + .np-card-image-content-top { + top: 1.5rem; + } + .np-card-image-content-bottom { + bottom: 1.5rem; + } + .np-card-padding, + .np-card-padding-dynamic { + padding: 1.5rem; + } +} + +@media screen and (min-width: 1024px) { + .np-card-content-title { + font-size: 1.5rem; + } + + .np-card-image-content-top, + .np-card-image-content-bottom { + left: 2rem; + right: 2rem; + } + + .np-card-image-content-top { + top: 2rem; + } + .np-card-image-content-bottom { + bottom: 2rem; + } + .np-card-padding, + .np-card-padding-dynamic { + padding: 2rem; + } +} + +/* + 3.7 - LEARNING PATH CARD +*/ + +.np-learning-path .np-card-text-wrapper { + position: relative; + z-index: 2; +} + +.np-learning-paths .np-card-content-description { + color: #fff; +} +.np-learning-path .np-card-content-title { + /* color: #fff; */ + color: #2c4265; + flex: 2; +} +.np-learning-paths .np-learning-path .np-card-content-title { + flex: none; +} +.np-learning-path .np-card-content-progress { + color: #34abe2; +} +.np-learning-path .np-card-content-footer .np-button { + width: auto; +} + +@media (min-width: 768px) { + .np-learning-path-image { + width: 37%; + } + .np-card-content-title { + flex: 0; + } + + .np-main:not(.np-training-events) .np-dashboard-resources .np-card { + padding-right: 0; + padding-left: 0; + } + + .np-learning-paths .np-card-content { + padding: 2rem; + height: 100%; + } + + .np-learning-path .np-card-content { + height: 100%; + display: flex; + } + + .np-learning-path { + display: flex; + } +} + +@media (min-width: 1024px) { + .np-learning-path { + display: flex; + min-height: 260px; + } +} + +/* + 3.8 - TRAINING EVENTS CARD +*/ +.np-event-card{ + width: 98%; +} + +.np-event-card .np-card-container { + border: 2px solid rgba(255, 255, 255, 0.15); +} + +.np-event-card .np-card-content { + padding: 1.062rem 1rem 1.062rem 1.25rem; + border-top: 2px solid rgba(255, 255, 255, 0.15); + flex: 0; +} + +.np-card-content-training-event { + padding: 1rem 1rem 0.5rem; + border: 1px solid #2c4265; +} +.np-button.dropdown-calendar-button { + /* background: linear-gradient(90deg, #298e4e 0%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); +} +.np-card-content-training-event .np-card-content-title, +.np-card-content-training-event .np-card-content-subtitle { + /* color: #fff; */ + color: #2c4265; +} +.np-card-content-training-event .np-card-content-subtitle { + opacity: 0.5; + flex: 1; +} + +.np-card-training-session { + margin-top: 0.9rem; + border-radius: 0; + background: transparent; + display: flex; + justify-content: space-between; + align-items: center; + margin-right: -10px; +} + +.np-card-training-session .np-card-content-label { + background: rgba(255, 255, 255, 0.15); + border-radius: 0; + color: #fff; + padding: 3px 6px; + margin-bottom: 0; +} + +.np-card-training-session-date-year, +.np-card-training-session-date-month { + text-align: right; + /* color: #fff; */ + color: #2c4265 +} + +.np-training-session .np-card-training-session-date-year, +.np-training-session .np-card-training-session-date-month { + text-align: left; +} + +.np-card-training-session-date-day { + margin-right: 0; + margin-left: 5px; + /* color: #fff; */ + color: #2c4265; +} + +.np-card-training-session-date-year { + opacity: 0.5; +} + +.np-card-training-session-date-bar { + border-bottom-right-radius: 0; + border-top-right-radius: 0; + right: 0; + left: auto; + width: 0; + height: 0; + border-top: 16px solid transparent; + border-bottom: 18px solid transparent; + border-right: 16px solid #089FB7;; + background: none; +} + +.np-card-training-sessions-label { + /* color: #fff; */ + color: #2c4265; +} +.np-event-card .np-card-container { + height: 100%; +} +.np-card-training-sessions { + background: transparent; + padding: 0; +} + +.np-card-training-sessions .np-button { + /* background: linear-gradient(90deg, #298e4e -10.98%, #035161 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); + font-weight: 800; + text-transform: uppercase; + font-size: 0.875rem; + height: 40px; +} + +@media (max-width: 767px){ + .np-card-training-session-date{ + padding-right: 10px; + } +} + +@media (min-width: 768px) { + .np-card-content-training-event { + flex: 1; + display: flex; + flex-direction: column; + } + + .np-card-content-training-event { + padding: 2rem 2rem 0.5rem; + } +} + +/* + 3.9 - COURSE BANNER +*/ +.np-course-banner { + position: relative; + margin-bottom: 2.5rem; + padding: 0; +} + +.np-course-banner-image { + display: block; + width: 100%; +} + +.np-course-info.np-course-banner-info { + position: absolute; + bottom: 1.5rem; + left: 1.5rem; + width: 80%; +} + +.np-course-banner .np-course-title { + font-size: 1.5rem; + margin-bottom: 2rem; + font-weight: bold; +} + +@media (min-width: 768px) { + .np-course-banner-image { + margin: 0 0 0 auto; + width: 50%; + } + + .np-course-banner-overlay { + /* background: linear-gradient(238.17deg, rgb(43, 66, 102, 0) 55.34%, #34abe2 111.28%); */ + background: linear-gradient(238.17deg, rgb(43, 66, 102, 0) 55.34%, #f2f2f2 111.28%); + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + } + + .np-course-info.np-course-banner-info { + bottom: 2rem; + left: 2rem; + width: 75%; + } + + .np-course-banner .np-course-title { + font-size: 3rem; + margin-bottom: 2.5rem; + } +} + +@media (min-width: 1170px) { + .np-course-info.np-course-banner-info { + bottom: 5.25rem; + left: 6.25rem; + width: 60%; + } + + .np-course-banner .np-course-title { + font-size: 4.125rem; + margin-bottom: 3.125rem; + } +} + +/* + 3.10 - COURSE DETAILS +*/ +.np-course-details { + display: flex; + justify-content: space-evenly; +} + +.np-course-detail { + font-size: 1.125rem; + /* color: #fff; */ + color: #34abe2; + flex: 0 1 calc(33.33%); +} + +.np-details-label { + text-transform: uppercase; + /* opacity: 0.5; */ + font-size: 0.75rem; + display: block; + font-weight: bold; + margin-top: 2px; + color: #2c4265; +} + +@media screen and (min-width: 768px) { + .np-course-detail { + font-size: 1.5rem; + } + .np-course-banner-info .np-course-details { + max-width: 430px; + } +} + +@media (min-width: 1170px) { + .np-course-banner-info .np-course-detail { + font-size: 2rem; + } + .np-course-banner-info .np-details-label { + font-size: 1.062rem; + margin-top: 3px; + } +} + +/* + 3.11 - COURSE PROGRESS & CTA +*/ +.np-card-progress-bar-container, +.np-progress-bar-container { + background: #2c4265; + border-radius: 0; +} + +.np-card-progress-bar { + border-radius: 0; + background-color: #34abe2; +} + +.np-top-cta-progress-title { + color: #2c4265; + text-transform: none; + margin-top: 0.7rem; + margin-bottom: 0.7rem; +} +.np-top-cta-progress-text { + color: #34abe2; +} + +/* + 3.12 - COURSE OUTLINE +*/ + +.np-course-outline-content { + margin-top: 20px; +} +.np-course-outline-content-section-name { + border-bottom: 1px solid #2c4265; +} + +.np-course-outline-content-activity-list { + border-bottom: 1px solid #2c4265; + padding: 1rem 0; +} + +.np-course-outline-content-activity-link { + /* color: #809299; */ + color: #2c4265; + font-size: 0.937rem; +} + +.np-course-outline-content-activity-link-completed { + /* color: #fff; */ + color: #34abe2; + font-size: 0.937rem; + font-weight: 400; +} + +.np-course-outline-content-activity-icon, +.np-course-outline-content-activity-title { + color: rgba(255, 255, 255, 0.5); + font-size: 0.937rem; + padding: 0.15rem 1.25rem 0 0.75rem; +} + +.np-course-outline-content-activity-icon.fa-check { + color: #2bb24c; +} + +.np-course-outline-content-activity-icon.icon-course-not-started { + position: relative; + width: 20px; + height: 17px; + margin-left: 11px; + margin-right: 5px; +} + +.np-course-outline-content-activity-icon.icon-course-not-started::before, +.np-course-outline-content-activity-icon.icon-course-not-started::after { + content: ""; + position: absolute; + width: 16px; + height: 2px; + background-color: rgba(255, 255, 255, 0.25); + left: 0; + top: 5px; +} + +.np-course-outline-content-activity-icon.icon-course-not-started::before { + width: 9px; + top: 10px; +} + +/* + 3.12 - FILTER DROPDOWN +*/ + +.np-button.dropdown-button { + border: 2px solid rgba(255, 255, 255, 0.25); + padding: 9px 60px 9px 20px; + height: auto; + position: relative; + color: #fff; +} + +.np-button.dropdown-button:before { + content: ""; + position: absolute; + width: 20px; + height: 100%; + border-left: 2px solid rgba(255, 255, 255, 0.25); + right: 20px; + top: 0; +} + +.np-button.dropdown-button:after { + content: "\f078"; + font-family: "Font Awesome 5 Pro"; + position: absolute; + width: 20px; + height: 100%; + color: rgba(255, 255, 255, 0.5); + right: 10px; + top: 0; + display: flex; + justify-content: center; + align-items: center; + font-size: 1rem; +} + +.dropdown-menu { + border-radius: 0; + border: 1px solid rgba(255, 255, 255, 0.25); + color: #fff; + background-color: #062531; + box-shadow: none; + top: 95%; +} + +/* + 3.13 - CAROUSEL - GLOBAL STYLES +*/ + +.np-carousel { + margin-bottom: 3rem; +} +.np-carousel-bg-blue { + background: #001E2E; +} +.np-carousel .slick-track { + display: flex; +} +.np-carousel .slick-slide { + height: auto; +} +.np-carousel .np-card { + height: 100%; +} + +.np-carousel .slick-arrow { + color: #2c4265; + font-size: 2.5rem; + opacity: 1; + transition: opacity 0.2s; + display: flex; + align-items: center; + top: 0; +} + +.np-carousel .slick-arrow:before { + position: absolute; + width: 80px; + z-index: 500; + display: flex; + height: 100%; + align-items: center; + top: 0; +} + +.np-carousel .slick-arrow.fa-chevron-left { + left: -8px; +} + +.np-carousel .slick-arrow.fa-chevron-right { + right: -8px; + justify-content: flex-end; +} + +.np-carousel .slick-arrow.fa-chevron-left:before { + background: linear-gradient(90deg, #F2F2F2 10%, rgba(0, 37, 50, 0) 100%); + cursor: pointer; +} + +.np-carousel .slick-arrow.fa-chevron-right:before { + background: linear-gradient(270deg, #F2F2F2 10%, rgba(0, 37, 50, 0) 100%); + justify-content: flex-end; + cursor: pointer; +} + +.np-carousel .slick-arrow.slick-disabled { + opacity: 0; + cursor: text; +} +.np-carousel-card .np-card { + padding-bottom: 0; +} + +.np-carousel .slick-dots { + display: flex; + justify-content: space-between; + padding: 0; + margin: 0 auto; + max-width: 200px; +} +.np-carousel .slick-dots li button { + display: none; +} + +.np-carousel .slick-dots li::marker { + color: #2bb24c; + font-size: 1.7rem; +} + +@media (min-width: 768px) { + .np-carousel .slick-track { + margin-left: 0; + } + + /* .np-carousel .slick-arrow.fa-chevron-right:before { + background: linear-gradient(270deg, #00283D 36.11%, rgba(0, 37, 50, 0) 100%); + } + + .np-carousel .slick-arrow.fa-chevron-left:before { + background: linear-gradient(90deg, #00283D 36.11%, rgba(0, 37, 50, 0) 100%); + } */ +} + +@media (min-width: 1024px) { + .np-carousel .slick-arrow:before { + width: 100px; + } +} + +/* + 3.14 - CAROUSEL - EVENTS +*/ +.events-carousel { + /* background: #001E2E; */ + background: transparent; + padding: 1.5rem 0; + margin: 0 1.1rem 3rem; +} +.events-carousel .slick-track { + padding: 0 8px; +} +.events-carousel .np-card { + padding: 0 0.8rem; +} +.events-carousel .slick-arrow.fa-chevron-right { + right: -26px; +} +.events-carousel .slick-arrow.fa-chevron-left { + left: -26px; +} + +@media (min-width: 768px) { + .events-carousel .np-card { + padding: 0 1rem; + } + .events-carousel { + padding: 2rem 0; + margin: 0 0 3rem; + } + .events-carousel .slick-arrow.fa-chevron-right { + right: -8px; + } + .events-carousel .slick-arrow.fa-chevron-left { + left: -8px; + } +} + +@media (min-width: 1170px) { + .events-carousel .np-card { + padding: 0 1rem; + } +} + +/* + 3.15 - CAROUSEL - COURSES +*/ + +@media (min-width: 768px) { + .courses-carousel { + margin-left: -1rem; + margin-right: -1rem; + } + + .courses-carousel .np-carousel-card .np-card { + padding-right: 1rem; + padding-left: 1rem; + } +} + +@media (min-width: 1024px) { + .courses-carousel { + margin-left: -2rem; + margin-right: -2rem; + } + .courses-carousel .np-carousel-card .np-card { + padding-right: 2rem; + padding-left: 2rem; + } +} + +/* + 3.16 - CAROUSEL - INSTRUCTORS +*/ +.instructors-carousel .instructor-slide { + display: flex !important; + align-items: center; +} +.instructors-carousel .instructor-image { + border-radius: 50%; + width: 100px; + height: 100px; + min-width: 100px; + background: #001E2E; + display: flex; + justify-content: center; + align-items: center; + margin-right: 16px; +} + +.instructors-carousel .instructor-image img { + border-radius: 50%; + width: 80px; + height: 80px; +} + +.instructors-carousel .instructor-name { + font-size: 18px; + line-height: 22px; + font-weight: bold; +} + +.instructors-carousel .instructor-email { + font-size: 14px; + line-height: 18px; + font-weight: 500; + color: #2bb24c; + text-decoration: none; +} + +.instructors-carousel .instructor-joined { + font-size: 14px; + line-height: 20px; + font-weight: 500; + opacity: 0.5; + margin-top: 16px; +} + +@media (min-width: 1024px) { + .instructors-carousel { + margin-top: 32px; + } + + .instructors-carousel .instructor-image { + width: 160px; + height: 160px; + min-width: 160px; + margin-right: 22px; + } + + .instructors-carousel .instructor-image img { + width: 120px; + height: 120px; + } + .instructors-carousel .instructor-name { + font-size: 20px; + line-height: 25px; + } + .instructors-carousel .instructor-email { + font-size: 16px; + line-height: 20px; + } + .instructors-carousel .instructor-joined { + font-size: 16px; + margin-top: 20px; + } +} + +/* + 3.17 - HOMEPAGE SECTION - FEATURED PHOTOGRAPHY +*/ + +.featured-photography-carousel { + margin: 0 22px 3rem; + padding: 2rem 0; +} +.featured-photography-carousel .slick-track { + padding: 0 2rem; +} +.featured-photography-carousel .slick-arrow { + margin: 0 -10px; +} + +.featured-photography-carousel .slide-label { + font-size: 0.9375rem; + margin-top: 8px; + font-weight: 600; +} + +@media (min-width: 768px) { + .featured-photography-carousel { + margin: 0 2rem 3rem; + } + .featured-photography-carousel .slick-arrow { + margin: 0; + } +} + +@media (min-width: 1024px) { + .featured-photography-carousel { + margin: 0 4.0625rem 3rem; + } +} + +/* + 3.18 - HOMEPAGE SECTION - TIPS & TRICKS +*/ + +.tips-tricks-carousel { + margin: 0 4% 3rem; +} + +.tips-tricks-carousel .quote-block { + padding: 1.5rem; + font-size: 16px; + line-height: 20px; + font-weight: 400; + position: relative; + max-width: 752px; + margin: 0 2.5rem; +} + +.tips-tricks-carousel.np-carousel .slick-arrow.fa-chevron-left:before, +.tips-tricks-carousel.np-carousel .slick-arrow.fa-chevron-right:before { + background: none; +} + +.tips-tricks-carousel .quotes-left { + font-size: 32px; + position: absolute; + top: 0px; + left: -30px; + background: linear-gradient(170.43deg, #298e4e 4.83%, #035161 92.25%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +.tips-tricks-carousel .quote-author-info { + font-size: 17px; + padding-right: 1.5rem; + text-align: right; + margin: 1rem 2.5rem 0; +} + +.tips-tricks-carousel .quote-author-info span { + font-size: 15px; + font-weight: 500; + opacity: 0.5; +} + +@media (min-width: 1024px) { + .tips-tricks-carousel { + margin: 0 4.0625rem 3rem; + } + + .tips-tricks-carousel .np-carousel-card { + display: flex !important; + align-items: center; + margin: 0 120px 0 180px; + } + + .tips-tricks-carousel .quote-block { + padding: 3.75rem; + font-size: 24px; + line-height: 30px; + margin: 0; + } + + .tips-tricks-carousel .quotes-left { + font-size: 50px; + top: 15px; + left: -30px; + } + + .tips-tricks-carousel .quote-author-info { + font-size: 20px; + margin: 0; + margin-left: 48px; + padding: 0; + text-align: left; + } + + .tips-tricks-carousel .quote-author-info span { + font-size: 16px; + } +} + +@media (min-width: 1024px) and (max-width: 1440px) { + .tips-tricks-carousel { + margin: 0 4.514vw 3rem; + } + + .tips-tricks-carousel .np-carousel-card { + margin: 0 8.333vw 0 12.5vw; + } + + .tips-tricks-carousel .quote-block { + padding: 3.472vw; + font-size: 1.667vw; + line-height: 2.083vw; + max-width: 52.222vw; + } + + .tips-tricks-carousel .quotes-left { + font-size: 3.472vw; + top: 1.042vw; + left: -2.083vw; + } + + .tips-tricks-carousel .quote-author-info { + font-size: 1.389vw; + margin-left: 3.333vw; + } + .tips-tricks-carousel .quote-author-info span { + font-size: 1.111vw; + } +} + +/* + 3.19 - HOMEPAGE SECTION - FAQ +*/ + +.np-faq { + margin-bottom: 3rem; +} +.np-accordion { + margin: 0 22px 32px; +} + +.accordion-btn { + background-color: #001E2E; + color: #fff; + cursor: pointer; + width: 100%; + min-height: 76px; + padding: 0 18px 0 92px; + text-align: left; + border: none; + outline: none; + transition: 0.4s; + position: relative; + display: flex; + align-items: center; + border-radius: 8px; +} + +.fa-plus, +.fa-minus { + /* background: linear-gradient(90deg, #089FB7 0%, #15824B 100%); */ + background: linear-gradient(45deg, #2c4265 0%, #34abe2 100%); + font-size: 2.5rem; + color: #fff; + position: absolute; + left: 0; + top: 0; + width: 76px; + height: 76px; + display: flex; + align-items: center; + justify-content: center; + transition: 0.4s; + border-radius: 8px 0 0 8px; +} + +.accordion-title, +.accordion-panel-content { + line-height: 1.375rem; + position: relative; +} +.accordion-panel-content { + padding: 18px; +} +.accordion-panel-content p { + margin-top: 0; +} + +.accordion-panel-content:before { + content: ""; + width: 75px; + height: 1px; + background: #2bb24c; + position: absolute; + top: 0; + left: 18px; +} + +.accordion-panel { + background-color: #001E2E; + max-height: 0; + overflow: hidden; + transition: max-height 0.4s ease-out; + margin-left: 76px; +} + +@media (min-width: 768px) { + .np-faqs { + margin: 0 4.0625rem; + } + .np-accordion { + margin: 0 8px 32px; + } +} + +/* + 3.20 - HOMEPAGE SECTION - FEATURED COURSES +*/ + +.np-homepage-featured-courses .np-card-container { + margin-bottom: 32px; + border-radius: 10px; +} +.np-homepage-featured-courses .col-xs-12:last-child .np-card-container { + margin-bottom: 0; +} +.np-featured-course { + display: block; + border: 1px solid #2c4265; + border-radius: 8px; +} +.np-featured-course.np-learning-path .np-card-content-progress { + color: #fff; +} +.np-featured-course .np-card-content-title { + flex: 0; + margin: 0 0 2px; +} +.np-featured-course .np-card-content-subtitle { + opacity: 0.5; +} +.np-featured-course .np-card-content-description { + /* color: #fff; */ + display: block; + line-height: 20px; + font-size: 1rem; +} +.np-featured-course .np-card-image-content-top { + width: 90%; +} +.np-featured-course-img-container { + position: relative; +} +.np-featured-course .np-card-text-wrapper { + flex: 2; +} + +@media (min-width: 992px) { + .np-featured-course { + display: flex; + } + .np-featured-course-img-container img { + position: absolute; + width: auto; + height: 100%; + } + .np-featured-course-img-container { + width: 40%; + } +} + +@media (min-width: 1200px) { + .np-featured-course-img-container { + width: 33.33%; + } +} + +/* northpass academy */ + .full-star { + color: #089FB7; + } + .empty-star { + color: #089FB7; + opacity: 0.25; + } \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Scenario/training_events.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/training_events.html.liquid new file mode 100644 index 00000000..f19e84d3 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Scenario/training_events.html.liquid @@ -0,0 +1,292 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ +
+ +
+ + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ +{% include "messages" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} + +
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+
+
+ +{% include "sub_navigation" %} +
+
+
+
+ {% t .title %} +
+
+ {% t .subtitle %}. +
+
+
+ {% include "training_events_filter" %} +
+
+ {% include "training_events_index" %} +
+{% include "footer" %} + + \ No newline at end of file diff --git a/TaskTree/obj/Debug/net6.0/project.razor.json b/TaskTree/obj/Debug/net6.0/project.razor.json index 0cc389e3..5224a92c 100644 --- a/TaskTree/obj/Debug/net6.0/project.razor.json +++ b/TaskTree/obj/Debug/net6.0/project.razor.json @@ -12,7 +12,7 @@ "ProjectWorkspaceState": { "TagHelpers": [ { - "HashCode": 57689329, + "HashCode": -1456140033, "Kind": "Components.Component", "Name": "TaskTree.Pages.Accounts", "AssemblyName": "TaskTree", @@ -28,7 +28,7 @@ } }, { - "HashCode": 1733506174, + "HashCode": -1604700676, "Kind": "Components.Component", "Name": "TaskTree.Pages.Accounts", "AssemblyName": "TaskTree", @@ -45,7 +45,7 @@ } }, { - "HashCode": 2089532476, + "HashCode": 878289724, "Kind": "Components.Component", "Name": "TaskTree.Pages.Counter", "AssemblyName": "TaskTree", @@ -61,7 +61,7 @@ } }, { - "HashCode": -1203141298, + "HashCode": 176792705, "Kind": "Components.Component", "Name": "TaskTree.Pages.Counter", "AssemblyName": "TaskTree", @@ -78,7 +78,7 @@ } }, { - "HashCode": 213751533, + "HashCode": 470653077, "Kind": "Components.Component", "Name": "TaskTree.Pages.FetchData", "AssemblyName": "TaskTree", @@ -94,7 +94,7 @@ } }, { - "HashCode": -682696182, + "HashCode": -1226295197, "Kind": "Components.Component", "Name": "TaskTree.Pages.FetchData", "AssemblyName": "TaskTree", @@ -111,7 +111,7 @@ } }, { - "HashCode": -871458694, + "HashCode": -1694883111, "Kind": "Components.Component", "Name": "TaskTree.App", "AssemblyName": "TaskTree", @@ -127,7 +127,7 @@ } }, { - "HashCode": -1368585855, + "HashCode": 2011431849, "Kind": "Components.Component", "Name": "TaskTree.App", "AssemblyName": "TaskTree", @@ -144,7 +144,7 @@ } }, { - "HashCode": -2070307387, + "HashCode": -266487078, "Kind": "Components.Component", "Name": "TaskTree.Shared.SurveyPrompt", "AssemblyName": "TaskTree", @@ -170,7 +170,7 @@ } }, { - "HashCode": 938041112, + "HashCode": 1516070918, "Kind": "Components.Component", "Name": "TaskTree.Shared.SurveyPrompt", "AssemblyName": "TaskTree", @@ -197,7 +197,7 @@ } }, { - "HashCode": -1815764147, + "HashCode": -1462033639, "Kind": "Components.Component", "Name": "TaskTree.Shared.MainLayout", "AssemblyName": "TaskTree", @@ -225,7 +225,7 @@ } }, { - "HashCode": -962133373, + "HashCode": -1800860295, "Kind": "Components.Component", "Name": "TaskTree.Shared.MainLayout", "AssemblyName": "TaskTree", @@ -254,7 +254,7 @@ } }, { - "HashCode": -889731288, + "HashCode": -418628290, "Kind": "Components.ChildContent", "Name": "TaskTree.Shared.MainLayout.Body", "AssemblyName": "TaskTree", @@ -273,7 +273,7 @@ } }, { - "HashCode": -1147701391, + "HashCode": -562523166, "Kind": "Components.ChildContent", "Name": "TaskTree.Shared.MainLayout.Body", "AssemblyName": "TaskTree", @@ -293,7 +293,7 @@ } }, { - "HashCode": 640879983, + "HashCode": -1164411303, "Kind": "Components.Component", "Name": "TaskTree.Shared.NavMenu", "AssemblyName": "TaskTree", @@ -309,7 +309,7 @@ } }, { - "HashCode": 2093031028, + "HashCode": -1932474639, "Kind": "Components.Component", "Name": "TaskTree.Shared.NavMenu", "AssemblyName": "TaskTree", @@ -326,7 +326,7 @@ } }, { - "HashCode": 1609916174, + "HashCode": 1262783546, "Kind": "Components.Component", "Name": "Blazorise.BaseElementComponent", "AssemblyName": "Blazorise", @@ -589,7 +589,7 @@ } }, { - "HashCode": 601723117, + "HashCode": 1940873815, "Kind": "Components.Component", "Name": "Blazorise.BaseElementComponent", "AssemblyName": "Blazorise", @@ -853,7 +853,7 @@ } }, { - "HashCode": -1076141287, + "HashCode": -846253508, "Kind": "Components.ChildContent", "Name": "Blazorise.BaseElementComponent.ChildContent", "AssemblyName": "Blazorise", @@ -872,7 +872,7 @@ } }, { - "HashCode": -1055347160, + "HashCode": 850195064, "Kind": "Components.ChildContent", "Name": "Blazorise.BaseElementComponent.ChildContent", "AssemblyName": "Blazorise", @@ -892,7 +892,7 @@ } }, { - "HashCode": -916110411, + "HashCode": 1464448758, "Kind": "Components.Component", "Name": "Blazorise.Accordion", "AssemblyName": "Blazorise", @@ -1155,7 +1155,7 @@ } }, { - "HashCode": -55917745, + "HashCode": 156131331, "Kind": "Components.Component", "Name": "Blazorise.Accordion", "AssemblyName": "Blazorise", @@ -1419,7 +1419,7 @@ } }, { - "HashCode": 1021967939, + "HashCode": -1134748290, "Kind": "Components.ChildContent", "Name": "Blazorise.Accordion.ChildContent", "AssemblyName": "Blazorise", @@ -1438,7 +1438,7 @@ } }, { - "HashCode": 1938350519, + "HashCode": -529847539, "Kind": "Components.ChildContent", "Name": "Blazorise.Accordion.ChildContent", "AssemblyName": "Blazorise", @@ -1458,7 +1458,7 @@ } }, { - "HashCode": -1760852294, + "HashCode": -2020004872, "Kind": "Components.Component", "Name": "Blazorise.Addon", "AssemblyName": "Blazorise", @@ -1731,7 +1731,7 @@ } }, { - "HashCode": -1078008422, + "HashCode": 1884020298, "Kind": "Components.Component", "Name": "Blazorise.Addon", "AssemblyName": "Blazorise", @@ -2005,7 +2005,7 @@ } }, { - "HashCode": -1995988342, + "HashCode": -2093710221, "Kind": "Components.ChildContent", "Name": "Blazorise.Addon.ChildContent", "AssemblyName": "Blazorise", @@ -2024,7 +2024,7 @@ } }, { - "HashCode": -1772536477, + "HashCode": 1325848287, "Kind": "Components.ChildContent", "Name": "Blazorise.Addon.ChildContent", "AssemblyName": "Blazorise", @@ -2044,7 +2044,7 @@ } }, { - "HashCode": 1228248091, + "HashCode": 702643411, "Kind": "Components.Component", "Name": "Blazorise.AddonLabel", "AssemblyName": "Blazorise", @@ -2307,7 +2307,7 @@ } }, { - "HashCode": -287819361, + "HashCode": 429180182, "Kind": "Components.Component", "Name": "Blazorise.AddonLabel", "AssemblyName": "Blazorise", @@ -2571,7 +2571,7 @@ } }, { - "HashCode": 1793670263, + "HashCode": -837974567, "Kind": "Components.ChildContent", "Name": "Blazorise.AddonLabel.ChildContent", "AssemblyName": "Blazorise", @@ -2590,7 +2590,7 @@ } }, { - "HashCode": 1076347172, + "HashCode": 1567634430, "Kind": "Components.ChildContent", "Name": "Blazorise.AddonLabel.ChildContent", "AssemblyName": "Blazorise", @@ -2610,7 +2610,7 @@ } }, { - "HashCode": 1272266996, + "HashCode": -541963794, "Kind": "Components.Component", "Name": "Blazorise.Addons", "AssemblyName": "Blazorise", @@ -2891,7 +2891,7 @@ } }, { - "HashCode": -1676453338, + "HashCode": -438319800, "Kind": "Components.Component", "Name": "Blazorise.Addons", "AssemblyName": "Blazorise", @@ -3173,7 +3173,7 @@ } }, { - "HashCode": -219982095, + "HashCode": -807708230, "Kind": "Components.ChildContent", "Name": "Blazorise.Addons.ChildContent", "AssemblyName": "Blazorise", @@ -3192,7 +3192,7 @@ } }, { - "HashCode": 339117383, + "HashCode": -1505406477, "Kind": "Components.ChildContent", "Name": "Blazorise.Addons.ChildContent", "AssemblyName": "Blazorise", @@ -3212,7 +3212,7 @@ } }, { - "HashCode": 187504110, + "HashCode": -878898772, "Kind": "Components.Component", "Name": "Blazorise.Alert", "AssemblyName": "Blazorise", @@ -3512,7 +3512,7 @@ } }, { - "HashCode": 1284762718, + "HashCode": 520902233, "Kind": "Components.Component", "Name": "Blazorise.Alert", "AssemblyName": "Blazorise", @@ -3813,7 +3813,7 @@ } }, { - "HashCode": 859331197, + "HashCode": -640968588, "Kind": "Components.ChildContent", "Name": "Blazorise.Alert.ChildContent", "AssemblyName": "Blazorise", @@ -3832,7 +3832,7 @@ } }, { - "HashCode": 380882840, + "HashCode": -1149529919, "Kind": "Components.ChildContent", "Name": "Blazorise.Alert.ChildContent", "AssemblyName": "Blazorise", @@ -3852,7 +3852,7 @@ } }, { - "HashCode": -2077735336, + "HashCode": 322960483, "Kind": "Components.Component", "Name": "Blazorise.AlertDescription", "AssemblyName": "Blazorise", @@ -4115,7 +4115,7 @@ } }, { - "HashCode": -842456855, + "HashCode": 477588068, "Kind": "Components.Component", "Name": "Blazorise.AlertDescription", "AssemblyName": "Blazorise", @@ -4379,7 +4379,7 @@ } }, { - "HashCode": 94434260, + "HashCode": -213266843, "Kind": "Components.ChildContent", "Name": "Blazorise.AlertDescription.ChildContent", "AssemblyName": "Blazorise", @@ -4398,7 +4398,7 @@ } }, { - "HashCode": -768724412, + "HashCode": -2089244737, "Kind": "Components.ChildContent", "Name": "Blazorise.AlertDescription.ChildContent", "AssemblyName": "Blazorise", @@ -4418,7 +4418,7 @@ } }, { - "HashCode": -1315675501, + "HashCode": 1888373573, "Kind": "Components.Component", "Name": "Blazorise.AlertMessage", "AssemblyName": "Blazorise", @@ -4681,7 +4681,7 @@ } }, { - "HashCode": 2036703978, + "HashCode": 1384035513, "Kind": "Components.Component", "Name": "Blazorise.AlertMessage", "AssemblyName": "Blazorise", @@ -4945,7 +4945,7 @@ } }, { - "HashCode": 123484901, + "HashCode": 166683429, "Kind": "Components.ChildContent", "Name": "Blazorise.AlertMessage.ChildContent", "AssemblyName": "Blazorise", @@ -4964,7 +4964,7 @@ } }, { - "HashCode": -1957366869, + "HashCode": -561513698, "Kind": "Components.ChildContent", "Name": "Blazorise.AlertMessage.ChildContent", "AssemblyName": "Blazorise", @@ -4984,7 +4984,7 @@ } }, { - "HashCode": 374993131, + "HashCode": 2116322057, "Kind": "Components.Component", "Name": "Blazorise.Badge", "AssemblyName": "Blazorise", @@ -5284,7 +5284,7 @@ } }, { - "HashCode": 434807311, + "HashCode": 1623169270, "Kind": "Components.Component", "Name": "Blazorise.Badge", "AssemblyName": "Blazorise", @@ -5585,7 +5585,7 @@ } }, { - "HashCode": 633621587, + "HashCode": -837621989, "Kind": "Components.ChildContent", "Name": "Blazorise.Badge.ChildContent", "AssemblyName": "Blazorise", @@ -5604,7 +5604,7 @@ } }, { - "HashCode": -774734091, + "HashCode": 1490621863, "Kind": "Components.ChildContent", "Name": "Blazorise.Badge.ChildContent", "AssemblyName": "Blazorise", @@ -5624,7 +5624,7 @@ } }, { - "HashCode": 1216821277, + "HashCode": -1877871779, "Kind": "Components.Component", "Name": "Blazorise.Bar", "AssemblyName": "Blazorise", @@ -5966,7 +5966,7 @@ } }, { - "HashCode": 865797072, + "HashCode": 849963891, "Kind": "Components.Component", "Name": "Blazorise.Bar", "AssemblyName": "Blazorise", @@ -6309,7 +6309,7 @@ } }, { - "HashCode": 757039316, + "HashCode": -422956499, "Kind": "Components.ChildContent", "Name": "Blazorise.Bar.ChildContent", "AssemblyName": "Blazorise", @@ -6328,7 +6328,7 @@ } }, { - "HashCode": 40227640, + "HashCode": 2041305646, "Kind": "Components.ChildContent", "Name": "Blazorise.Bar.ChildContent", "AssemblyName": "Blazorise", @@ -6348,7 +6348,7 @@ } }, { - "HashCode": -1272695782, + "HashCode": 609129033, "Kind": "Components.Component", "Name": "Blazorise.BarBrand", "AssemblyName": "Blazorise", @@ -6611,7 +6611,7 @@ } }, { - "HashCode": -743265600, + "HashCode": 937186315, "Kind": "Components.Component", "Name": "Blazorise.BarBrand", "AssemblyName": "Blazorise", @@ -6875,7 +6875,7 @@ } }, { - "HashCode": 1973618943, + "HashCode": 183696590, "Kind": "Components.ChildContent", "Name": "Blazorise.BarBrand.ChildContent", "AssemblyName": "Blazorise", @@ -6894,7 +6894,7 @@ } }, { - "HashCode": 462773092, + "HashCode": -262679868, "Kind": "Components.ChildContent", "Name": "Blazorise.BarBrand.ChildContent", "AssemblyName": "Blazorise", @@ -6914,7 +6914,7 @@ } }, { - "HashCode": 1308523005, + "HashCode": -1808322872, "Kind": "Components.Component", "Name": "Blazorise.BarDropdown", "AssemblyName": "Blazorise", @@ -7205,7 +7205,7 @@ } }, { - "HashCode": -1840042946, + "HashCode": 1154806581, "Kind": "Components.Component", "Name": "Blazorise.BarDropdown", "AssemblyName": "Blazorise", @@ -7497,7 +7497,7 @@ } }, { - "HashCode": -653091360, + "HashCode": 702284911, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdown.ChildContent", "AssemblyName": "Blazorise", @@ -7516,7 +7516,7 @@ } }, { - "HashCode": -1217972663, + "HashCode": -1562804446, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdown.ChildContent", "AssemblyName": "Blazorise", @@ -7536,7 +7536,7 @@ } }, { - "HashCode": -1675616535, + "HashCode": -1410376540, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownDivider", "AssemblyName": "Blazorise", @@ -7789,7 +7789,7 @@ } }, { - "HashCode": -897414698, + "HashCode": 1139822148, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownDivider", "AssemblyName": "Blazorise", @@ -8043,7 +8043,7 @@ } }, { - "HashCode": -804666552, + "HashCode": -2115701497, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownItem", "AssemblyName": "Blazorise", @@ -8362,7 +8362,7 @@ } }, { - "HashCode": -623805403, + "HashCode": -1111203583, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownItem", "AssemblyName": "Blazorise", @@ -8682,7 +8682,7 @@ } }, { - "HashCode": -516630979, + "HashCode": -62080265, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdownItem.ChildContent", "AssemblyName": "Blazorise", @@ -8701,7 +8701,7 @@ } }, { - "HashCode": -944692925, + "HashCode": 2052757310, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdownItem.ChildContent", "AssemblyName": "Blazorise", @@ -8721,7 +8721,7 @@ } }, { - "HashCode": -31444775, + "HashCode": 51084700, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownMenu", "AssemblyName": "Blazorise", @@ -8984,7 +8984,7 @@ } }, { - "HashCode": -1219657255, + "HashCode": 1412940750, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownMenu", "AssemblyName": "Blazorise", @@ -9248,7 +9248,7 @@ } }, { - "HashCode": -922329430, + "HashCode": 922832921, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdownMenu.ChildContent", "AssemblyName": "Blazorise", @@ -9267,7 +9267,7 @@ } }, { - "HashCode": -802540058, + "HashCode": 1102294936, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdownMenu.ChildContent", "AssemblyName": "Blazorise", @@ -9287,7 +9287,7 @@ } }, { - "HashCode": 1885922262, + "HashCode": -1790162874, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownToggle", "AssemblyName": "Blazorise", @@ -9569,7 +9569,7 @@ } }, { - "HashCode": 1110930768, + "HashCode": 542196075, "Kind": "Components.Component", "Name": "Blazorise.BarDropdownToggle", "AssemblyName": "Blazorise", @@ -9852,7 +9852,7 @@ } }, { - "HashCode": 1644142703, + "HashCode": -1312674451, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdownToggle.ChildContent", "AssemblyName": "Blazorise", @@ -9871,7 +9871,7 @@ } }, { - "HashCode": -1373459053, + "HashCode": 1714601733, "Kind": "Components.ChildContent", "Name": "Blazorise.BarDropdownToggle.ChildContent", "AssemblyName": "Blazorise", @@ -9891,7 +9891,7 @@ } }, { - "HashCode": 228386084, + "HashCode": 2017918528, "Kind": "Components.Component", "Name": "Blazorise.BarEnd", "AssemblyName": "Blazorise", @@ -10154,7 +10154,7 @@ } }, { - "HashCode": 714771225, + "HashCode": -1175914548, "Kind": "Components.Component", "Name": "Blazorise.BarEnd", "AssemblyName": "Blazorise", @@ -10418,7 +10418,7 @@ } }, { - "HashCode": 2087451565, + "HashCode": 906312200, "Kind": "Components.ChildContent", "Name": "Blazorise.BarEnd.ChildContent", "AssemblyName": "Blazorise", @@ -10437,7 +10437,7 @@ } }, { - "HashCode": -1118174507, + "HashCode": 1503511056, "Kind": "Components.ChildContent", "Name": "Blazorise.BarEnd.ChildContent", "AssemblyName": "Blazorise", @@ -10457,7 +10457,7 @@ } }, { - "HashCode": -1586767726, + "HashCode": 417861714, "Kind": "Components.Component", "Name": "Blazorise.BarIcon", "AssemblyName": "Blazorise", @@ -10739,7 +10739,7 @@ } }, { - "HashCode": 1610754498, + "HashCode": 1268182993, "Kind": "Components.Component", "Name": "Blazorise.BarIcon", "AssemblyName": "Blazorise", @@ -11022,7 +11022,7 @@ } }, { - "HashCode": 420785334, + "HashCode": 991345117, "Kind": "Components.Component", "Name": "Blazorise.BarItem", "AssemblyName": "Blazorise", @@ -11303,7 +11303,7 @@ } }, { - "HashCode": 970221195, + "HashCode": 1292423802, "Kind": "Components.Component", "Name": "Blazorise.BarItem", "AssemblyName": "Blazorise", @@ -11585,7 +11585,7 @@ } }, { - "HashCode": 222980855, + "HashCode": 932607154, "Kind": "Components.ChildContent", "Name": "Blazorise.BarItem.ChildContent", "AssemblyName": "Blazorise", @@ -11604,7 +11604,7 @@ } }, { - "HashCode": 1425848435, + "HashCode": -1300518638, "Kind": "Components.ChildContent", "Name": "Blazorise.BarItem.ChildContent", "AssemblyName": "Blazorise", @@ -11624,7 +11624,7 @@ } }, { - "HashCode": 161799261, + "HashCode": -74449716, "Kind": "Components.Component", "Name": "Blazorise.BarLabel", "AssemblyName": "Blazorise", @@ -11887,7 +11887,7 @@ } }, { - "HashCode": 140768808, + "HashCode": 333561277, "Kind": "Components.Component", "Name": "Blazorise.BarLabel", "AssemblyName": "Blazorise", @@ -12151,7 +12151,7 @@ } }, { - "HashCode": 888850785, + "HashCode": -344173224, "Kind": "Components.ChildContent", "Name": "Blazorise.BarLabel.ChildContent", "AssemblyName": "Blazorise", @@ -12170,7 +12170,7 @@ } }, { - "HashCode": 1771218803, + "HashCode": 587244773, "Kind": "Components.ChildContent", "Name": "Blazorise.BarLabel.ChildContent", "AssemblyName": "Blazorise", @@ -12190,7 +12190,7 @@ } }, { - "HashCode": 340430040, + "HashCode": 1301145960, "Kind": "Components.Component", "Name": "Blazorise.BarLink", "AssemblyName": "Blazorise", @@ -12500,7 +12500,7 @@ } }, { - "HashCode": 1744897498, + "HashCode": -605327109, "Kind": "Components.Component", "Name": "Blazorise.BarLink", "AssemblyName": "Blazorise", @@ -12811,7 +12811,7 @@ } }, { - "HashCode": -2127664849, + "HashCode": -586887721, "Kind": "Components.ChildContent", "Name": "Blazorise.BarLink.ChildContent", "AssemblyName": "Blazorise", @@ -12830,7 +12830,7 @@ } }, { - "HashCode": 878566936, + "HashCode": -255452169, "Kind": "Components.ChildContent", "Name": "Blazorise.BarLink.ChildContent", "AssemblyName": "Blazorise", @@ -12850,7 +12850,7 @@ } }, { - "HashCode": 2033269962, + "HashCode": -1830972082, "Kind": "Components.Component", "Name": "Blazorise.BarMenu", "AssemblyName": "Blazorise", @@ -13113,7 +13113,7 @@ } }, { - "HashCode": 276179359, + "HashCode": -242157024, "Kind": "Components.Component", "Name": "Blazorise.BarMenu", "AssemblyName": "Blazorise", @@ -13377,7 +13377,7 @@ } }, { - "HashCode": 14135578, + "HashCode": -261988156, "Kind": "Components.ChildContent", "Name": "Blazorise.BarMenu.ChildContent", "AssemblyName": "Blazorise", @@ -13396,7 +13396,7 @@ } }, { - "HashCode": 1240091136, + "HashCode": 1741976353, "Kind": "Components.ChildContent", "Name": "Blazorise.BarMenu.ChildContent", "AssemblyName": "Blazorise", @@ -13416,7 +13416,7 @@ } }, { - "HashCode": -1645864778, + "HashCode": 101775675, "Kind": "Components.Component", "Name": "Blazorise.BarStart", "AssemblyName": "Blazorise", @@ -13679,7 +13679,7 @@ } }, { - "HashCode": -927846669, + "HashCode": -1620646253, "Kind": "Components.Component", "Name": "Blazorise.BarStart", "AssemblyName": "Blazorise", @@ -13943,7 +13943,7 @@ } }, { - "HashCode": 1769103795, + "HashCode": 1361434658, "Kind": "Components.ChildContent", "Name": "Blazorise.BarStart.ChildContent", "AssemblyName": "Blazorise", @@ -13962,7 +13962,7 @@ } }, { - "HashCode": -950609324, + "HashCode": -1714007817, "Kind": "Components.ChildContent", "Name": "Blazorise.BarStart.ChildContent", "AssemblyName": "Blazorise", @@ -13982,7 +13982,7 @@ } }, { - "HashCode": -2012292860, + "HashCode": -879952662, "Kind": "Components.Component", "Name": "Blazorise.BarToggler", "AssemblyName": "Blazorise", @@ -14274,7 +14274,7 @@ } }, { - "HashCode": 1414079484, + "HashCode": 765713639, "Kind": "Components.Component", "Name": "Blazorise.BarToggler", "AssemblyName": "Blazorise", @@ -14567,7 +14567,7 @@ } }, { - "HashCode": 1581839288, + "HashCode": 684850471, "Kind": "Components.ChildContent", "Name": "Blazorise.BarToggler.ChildContent", "AssemblyName": "Blazorise", @@ -14586,7 +14586,7 @@ } }, { - "HashCode": -2072469641, + "HashCode": -1523993070, "Kind": "Components.ChildContent", "Name": "Blazorise.BarToggler.ChildContent", "AssemblyName": "Blazorise", @@ -14606,7 +14606,7 @@ } }, { - "HashCode": 2041657841, + "HashCode": -487013128, "Kind": "Components.Component", "Name": "Blazorise.Breadcrumb", "AssemblyName": "Blazorise", @@ -14879,7 +14879,7 @@ } }, { - "HashCode": -1271442027, + "HashCode": 598065626, "Kind": "Components.Component", "Name": "Blazorise.Breadcrumb", "AssemblyName": "Blazorise", @@ -15153,7 +15153,7 @@ } }, { - "HashCode": 993111384, + "HashCode": -641205155, "Kind": "Components.ChildContent", "Name": "Blazorise.Breadcrumb.ChildContent", "AssemblyName": "Blazorise", @@ -15172,7 +15172,7 @@ } }, { - "HashCode": -2137633292, + "HashCode": 188449798, "Kind": "Components.ChildContent", "Name": "Blazorise.Breadcrumb.ChildContent", "AssemblyName": "Blazorise", @@ -15192,7 +15192,7 @@ } }, { - "HashCode": -1757196543, + "HashCode": -42436131, "Kind": "Components.Component", "Name": "Blazorise.BreadcrumbItem", "AssemblyName": "Blazorise", @@ -15464,7 +15464,7 @@ } }, { - "HashCode": 1763059715, + "HashCode": -1611277702, "Kind": "Components.Component", "Name": "Blazorise.BreadcrumbItem", "AssemblyName": "Blazorise", @@ -15737,7 +15737,7 @@ } }, { - "HashCode": -1476680377, + "HashCode": 1186696044, "Kind": "Components.ChildContent", "Name": "Blazorise.BreadcrumbItem.ChildContent", "AssemblyName": "Blazorise", @@ -15756,7 +15756,7 @@ } }, { - "HashCode": -429515174, + "HashCode": 1484593014, "Kind": "Components.ChildContent", "Name": "Blazorise.BreadcrumbItem.ChildContent", "AssemblyName": "Blazorise", @@ -15776,7 +15776,7 @@ } }, { - "HashCode": -1677737292, + "HashCode": 3268222, "Kind": "Components.Component", "Name": "Blazorise.BreadcrumbLink", "AssemblyName": "Blazorise", @@ -16095,7 +16095,7 @@ } }, { - "HashCode": 1064047777, + "HashCode": 375876576, "Kind": "Components.Component", "Name": "Blazorise.BreadcrumbLink", "AssemblyName": "Blazorise", @@ -16415,7 +16415,7 @@ } }, { - "HashCode": 1239024523, + "HashCode": 1267203383, "Kind": "Components.ChildContent", "Name": "Blazorise.BreadcrumbLink.ChildContent", "AssemblyName": "Blazorise", @@ -16434,7 +16434,7 @@ } }, { - "HashCode": -1288677159, + "HashCode": 1480350641, "Kind": "Components.ChildContent", "Name": "Blazorise.BreadcrumbLink.ChildContent", "AssemblyName": "Blazorise", @@ -16454,7 +16454,7 @@ } }, { - "HashCode": 1491441962, + "HashCode": -286863619, "Kind": "Components.Component", "Name": "Blazorise.Button", "AssemblyName": "Blazorise", @@ -16864,7 +16864,7 @@ } }, { - "HashCode": 1211331821, + "HashCode": 268264212, "Kind": "Components.Component", "Name": "Blazorise.Button", "AssemblyName": "Blazorise", @@ -17275,7 +17275,7 @@ } }, { - "HashCode": 1454053581, + "HashCode": 542756425, "Kind": "Components.ChildContent", "Name": "Blazorise.Button.LoadingTemplate", "AssemblyName": "Blazorise", @@ -17294,7 +17294,7 @@ } }, { - "HashCode": 1982855526, + "HashCode": -1833158634, "Kind": "Components.ChildContent", "Name": "Blazorise.Button.LoadingTemplate", "AssemblyName": "Blazorise", @@ -17314,7 +17314,7 @@ } }, { - "HashCode": -789794490, + "HashCode": -1504316687, "Kind": "Components.ChildContent", "Name": "Blazorise.Button.ChildContent", "AssemblyName": "Blazorise", @@ -17333,7 +17333,7 @@ } }, { - "HashCode": -1855207650, + "HashCode": -2097528011, "Kind": "Components.ChildContent", "Name": "Blazorise.Button.ChildContent", "AssemblyName": "Blazorise", @@ -17353,7 +17353,7 @@ } }, { - "HashCode": 788147737, + "HashCode": 997776560, "Kind": "Components.Component", "Name": "Blazorise.Buttons", "AssemblyName": "Blazorise", @@ -17646,7 +17646,7 @@ } }, { - "HashCode": -468839411, + "HashCode": 1026637332, "Kind": "Components.Component", "Name": "Blazorise.Buttons", "AssemblyName": "Blazorise", @@ -17940,7 +17940,7 @@ } }, { - "HashCode": 110500565, + "HashCode": -757553707, "Kind": "Components.ChildContent", "Name": "Blazorise.Buttons.ChildContent", "AssemblyName": "Blazorise", @@ -17959,7 +17959,7 @@ } }, { - "HashCode": -2023342488, + "HashCode": 564338260, "Kind": "Components.ChildContent", "Name": "Blazorise.Buttons.ChildContent", "AssemblyName": "Blazorise", @@ -17979,7 +17979,7 @@ } }, { - "HashCode": 1582987191, + "HashCode": 1944590880, "Kind": "Components.Component", "Name": "Blazorise.CloseButton", "AssemblyName": "Blazorise", @@ -18261,7 +18261,7 @@ } }, { - "HashCode": 1822885766, + "HashCode": -867153318, "Kind": "Components.Component", "Name": "Blazorise.CloseButton", "AssemblyName": "Blazorise", @@ -18544,7 +18544,7 @@ } }, { - "HashCode": 1268111911, + "HashCode": -201851848, "Kind": "Components.ChildContent", "Name": "Blazorise.CloseButton.ChildContent", "AssemblyName": "Blazorise", @@ -18563,7 +18563,7 @@ } }, { - "HashCode": -1375123506, + "HashCode": 1284027273, "Kind": "Components.ChildContent", "Name": "Blazorise.CloseButton.ChildContent", "AssemblyName": "Blazorise", @@ -18583,7 +18583,7 @@ } }, { - "HashCode": 1009856537, + "HashCode": 1810011223, "Kind": "Components.Component", "Name": "Blazorise.Card", "AssemblyName": "Blazorise", @@ -18864,7 +18864,7 @@ } }, { - "HashCode": 204942869, + "HashCode": 223009000, "Kind": "Components.Component", "Name": "Blazorise.Card", "AssemblyName": "Blazorise", @@ -19146,7 +19146,7 @@ } }, { - "HashCode": 1484840785, + "HashCode": -1940585627, "Kind": "Components.ChildContent", "Name": "Blazorise.Card.ChildContent", "AssemblyName": "Blazorise", @@ -19165,7 +19165,7 @@ } }, { - "HashCode": 252599482, + "HashCode": -1975458086, "Kind": "Components.ChildContent", "Name": "Blazorise.Card.ChildContent", "AssemblyName": "Blazorise", @@ -19185,7 +19185,7 @@ } }, { - "HashCode": -747025166, + "HashCode": 1857488301, "Kind": "Components.Component", "Name": "Blazorise.CardActions", "AssemblyName": "Blazorise", @@ -19448,7 +19448,7 @@ } }, { - "HashCode": -1773241349, + "HashCode": 669717355, "Kind": "Components.Component", "Name": "Blazorise.CardActions", "AssemblyName": "Blazorise", @@ -19712,7 +19712,7 @@ } }, { - "HashCode": 1370423555, + "HashCode": -1428385413, "Kind": "Components.ChildContent", "Name": "Blazorise.CardActions.ChildContent", "AssemblyName": "Blazorise", @@ -19731,7 +19731,7 @@ } }, { - "HashCode": -2120223190, + "HashCode": 123219584, "Kind": "Components.ChildContent", "Name": "Blazorise.CardActions.ChildContent", "AssemblyName": "Blazorise", @@ -19751,7 +19751,7 @@ } }, { - "HashCode": -2016082800, + "HashCode": -766029757, "Kind": "Components.Component", "Name": "Blazorise.CardBody", "AssemblyName": "Blazorise", @@ -20014,7 +20014,7 @@ } }, { - "HashCode": 1914148047, + "HashCode": -2087784121, "Kind": "Components.Component", "Name": "Blazorise.CardBody", "AssemblyName": "Blazorise", @@ -20278,7 +20278,7 @@ } }, { - "HashCode": -1197387276, + "HashCode": -1292694894, "Kind": "Components.ChildContent", "Name": "Blazorise.CardBody.ChildContent", "AssemblyName": "Blazorise", @@ -20297,7 +20297,7 @@ } }, { - "HashCode": 538117938, + "HashCode": -1751842266, "Kind": "Components.ChildContent", "Name": "Blazorise.CardBody.ChildContent", "AssemblyName": "Blazorise", @@ -20317,7 +20317,7 @@ } }, { - "HashCode": 533913245, + "HashCode": -1747015260, "Kind": "Components.Component", "Name": "Blazorise.CardDeck", "AssemblyName": "Blazorise", @@ -20589,7 +20589,7 @@ } }, { - "HashCode": 1374936827, + "HashCode": -1143956304, "Kind": "Components.Component", "Name": "Blazorise.CardDeck", "AssemblyName": "Blazorise", @@ -20862,7 +20862,7 @@ } }, { - "HashCode": 431152166, + "HashCode": 367410411, "Kind": "Components.ChildContent", "Name": "Blazorise.CardDeck.ChildContent", "AssemblyName": "Blazorise", @@ -20881,7 +20881,7 @@ } }, { - "HashCode": 1399602233, + "HashCode": 530635872, "Kind": "Components.ChildContent", "Name": "Blazorise.CardDeck.ChildContent", "AssemblyName": "Blazorise", @@ -20901,7 +20901,7 @@ } }, { - "HashCode": 1341937597, + "HashCode": -720396383, "Kind": "Components.Component", "Name": "Blazorise.CardFooter", "AssemblyName": "Blazorise", @@ -21164,7 +21164,7 @@ } }, { - "HashCode": 1346005980, + "HashCode": -201253242, "Kind": "Components.Component", "Name": "Blazorise.CardFooter", "AssemblyName": "Blazorise", @@ -21428,7 +21428,7 @@ } }, { - "HashCode": -904564576, + "HashCode": -1141747140, "Kind": "Components.ChildContent", "Name": "Blazorise.CardFooter.ChildContent", "AssemblyName": "Blazorise", @@ -21447,7 +21447,7 @@ } }, { - "HashCode": 409648824, + "HashCode": 2110745890, "Kind": "Components.ChildContent", "Name": "Blazorise.CardFooter.ChildContent", "AssemblyName": "Blazorise", @@ -21467,7 +21467,7 @@ } }, { - "HashCode": -245198182, + "HashCode": -2018416724, "Kind": "Components.Component", "Name": "Blazorise.CardGroup", "AssemblyName": "Blazorise", @@ -21739,7 +21739,7 @@ } }, { - "HashCode": 1688730518, + "HashCode": 1994563504, "Kind": "Components.Component", "Name": "Blazorise.CardGroup", "AssemblyName": "Blazorise", @@ -22012,7 +22012,7 @@ } }, { - "HashCode": 749030304, + "HashCode": 1278228470, "Kind": "Components.ChildContent", "Name": "Blazorise.CardGroup.ChildContent", "AssemblyName": "Blazorise", @@ -22031,7 +22031,7 @@ } }, { - "HashCode": 1797190327, + "HashCode": -194594548, "Kind": "Components.ChildContent", "Name": "Blazorise.CardGroup.ChildContent", "AssemblyName": "Blazorise", @@ -22051,7 +22051,7 @@ } }, { - "HashCode": 1516016271, + "HashCode": 1036269522, "Kind": "Components.Component", "Name": "Blazorise.CardHeader", "AssemblyName": "Blazorise", @@ -22314,7 +22314,7 @@ } }, { - "HashCode": -14406588, + "HashCode": 1913655636, "Kind": "Components.Component", "Name": "Blazorise.CardHeader", "AssemblyName": "Blazorise", @@ -22578,7 +22578,7 @@ } }, { - "HashCode": -1306401497, + "HashCode": -177785569, "Kind": "Components.ChildContent", "Name": "Blazorise.CardHeader.ChildContent", "AssemblyName": "Blazorise", @@ -22597,7 +22597,7 @@ } }, { - "HashCode": 1903323739, + "HashCode": 1109290009, "Kind": "Components.ChildContent", "Name": "Blazorise.CardHeader.ChildContent", "AssemblyName": "Blazorise", @@ -22617,7 +22617,7 @@ } }, { - "HashCode": 464599269, + "HashCode": -1411592864, "Kind": "Components.Component", "Name": "Blazorise.CardImage", "AssemblyName": "Blazorise", @@ -22898,7 +22898,7 @@ } }, { - "HashCode": 692051531, + "HashCode": -1084551604, "Kind": "Components.Component", "Name": "Blazorise.CardImage", "AssemblyName": "Blazorise", @@ -23180,7 +23180,7 @@ } }, { - "HashCode": 967353765, + "HashCode": 7263650, "Kind": "Components.ChildContent", "Name": "Blazorise.CardImage.ChildContent", "AssemblyName": "Blazorise", @@ -23199,7 +23199,7 @@ } }, { - "HashCode": 968218178, + "HashCode": -211932849, "Kind": "Components.ChildContent", "Name": "Blazorise.CardImage.ChildContent", "AssemblyName": "Blazorise", @@ -23219,7 +23219,7 @@ } }, { - "HashCode": 703168057, + "HashCode": 1195825620, "Kind": "Components.Component", "Name": "Blazorise.CardLink", "AssemblyName": "Blazorise", @@ -23500,7 +23500,7 @@ } }, { - "HashCode": 840789837, + "HashCode": -2117492989, "Kind": "Components.Component", "Name": "Blazorise.CardLink", "AssemblyName": "Blazorise", @@ -23782,7 +23782,7 @@ } }, { - "HashCode": -2018921120, + "HashCode": 1932935295, "Kind": "Components.ChildContent", "Name": "Blazorise.CardLink.ChildContent", "AssemblyName": "Blazorise", @@ -23801,7 +23801,7 @@ } }, { - "HashCode": 1066776541, + "HashCode": 1230634458, "Kind": "Components.ChildContent", "Name": "Blazorise.CardLink.ChildContent", "AssemblyName": "Blazorise", @@ -23821,7 +23821,7 @@ } }, { - "HashCode": -1926699082, + "HashCode": -1561664573, "Kind": "Components.Component", "Name": "Blazorise.CardSubtitle", "AssemblyName": "Blazorise", @@ -24111,7 +24111,7 @@ } }, { - "HashCode": 50233849, + "HashCode": -648239359, "Kind": "Components.Component", "Name": "Blazorise.CardSubtitle", "AssemblyName": "Blazorise", @@ -24402,7 +24402,7 @@ } }, { - "HashCode": -1781304556, + "HashCode": 2040706750, "Kind": "Components.ChildContent", "Name": "Blazorise.CardSubtitle.ChildContent", "AssemblyName": "Blazorise", @@ -24421,7 +24421,7 @@ } }, { - "HashCode": -1295991227, + "HashCode": 1460907843, "Kind": "Components.ChildContent", "Name": "Blazorise.CardSubtitle.ChildContent", "AssemblyName": "Blazorise", @@ -24441,7 +24441,7 @@ } }, { - "HashCode": -1930593857, + "HashCode": 896919016, "Kind": "Components.Component", "Name": "Blazorise.CardText", "AssemblyName": "Blazorise", @@ -24722,7 +24722,7 @@ } }, { - "HashCode": -48788826, + "HashCode": 47853165, "Kind": "Components.Component", "Name": "Blazorise.CardText", "AssemblyName": "Blazorise", @@ -25004,7 +25004,7 @@ } }, { - "HashCode": -1714302158, + "HashCode": 1948709271, "Kind": "Components.ChildContent", "Name": "Blazorise.CardText.ChildContent", "AssemblyName": "Blazorise", @@ -25023,7 +25023,7 @@ } }, { - "HashCode": -1439132825, + "HashCode": -951980356, "Kind": "Components.ChildContent", "Name": "Blazorise.CardText.ChildContent", "AssemblyName": "Blazorise", @@ -25043,7 +25043,7 @@ } }, { - "HashCode": -1501746941, + "HashCode": 1122611883, "Kind": "Components.Component", "Name": "Blazorise.CardTitle", "AssemblyName": "Blazorise", @@ -25333,7 +25333,7 @@ } }, { - "HashCode": -1073007015, + "HashCode": -423768031, "Kind": "Components.Component", "Name": "Blazorise.CardTitle", "AssemblyName": "Blazorise", @@ -25624,7 +25624,7 @@ } }, { - "HashCode": -1716374350, + "HashCode": 1796994789, "Kind": "Components.ChildContent", "Name": "Blazorise.CardTitle.ChildContent", "AssemblyName": "Blazorise", @@ -25643,7 +25643,7 @@ } }, { - "HashCode": -2035137789, + "HashCode": -1657208060, "Kind": "Components.ChildContent", "Name": "Blazorise.CardTitle.ChildContent", "AssemblyName": "Blazorise", @@ -25663,7 +25663,7 @@ } }, { - "HashCode": -480797379, + "HashCode": -984720166, "Kind": "Components.Component", "Name": "Blazorise.Carousel", "AssemblyName": "Blazorise", @@ -26028,7 +26028,7 @@ } }, { - "HashCode": 1876097714, + "HashCode": -851774103, "Kind": "Components.Component", "Name": "Blazorise.Carousel", "AssemblyName": "Blazorise", @@ -26394,7 +26394,7 @@ } }, { - "HashCode": 1830097731, + "HashCode": 929213477, "Kind": "Components.ChildContent", "Name": "Blazorise.Carousel.ChildContent", "AssemblyName": "Blazorise", @@ -26413,7 +26413,7 @@ } }, { - "HashCode": 768313769, + "HashCode": -2032264163, "Kind": "Components.ChildContent", "Name": "Blazorise.Carousel.ChildContent", "AssemblyName": "Blazorise", @@ -26433,7 +26433,7 @@ } }, { - "HashCode": -1276924579, + "HashCode": -2045213614, "Kind": "Components.Component", "Name": "Blazorise.CarouselSlide", "AssemblyName": "Blazorise", @@ -26714,7 +26714,7 @@ } }, { - "HashCode": 721454722, + "HashCode": -719669150, "Kind": "Components.Component", "Name": "Blazorise.CarouselSlide", "AssemblyName": "Blazorise", @@ -26996,7 +26996,7 @@ } }, { - "HashCode": 922721456, + "HashCode": 483260651, "Kind": "Components.ChildContent", "Name": "Blazorise.CarouselSlide.ChildContent", "AssemblyName": "Blazorise", @@ -27015,7 +27015,7 @@ } }, { - "HashCode": -343311570, + "HashCode": 569985443, "Kind": "Components.ChildContent", "Name": "Blazorise.CarouselSlide.ChildContent", "AssemblyName": "Blazorise", @@ -27035,7 +27035,7 @@ } }, { - "HashCode": -1662346423, + "HashCode": 1054341185, "Kind": "Components.Component", "Name": "Blazorise.Check", "AssemblyName": "Blazorise", @@ -27505,7 +27505,7 @@ } }, { - "HashCode": -1987392491, + "HashCode": 2008606350, "Kind": "Components.Component", "Name": "Blazorise.Check", "AssemblyName": "Blazorise", @@ -27976,7 +27976,7 @@ } }, { - "HashCode": -314009895, + "HashCode": -78330448, "Kind": "Components.ChildContent", "Name": "Blazorise.Check.Feedback", "AssemblyName": "Blazorise", @@ -27995,7 +27995,7 @@ } }, { - "HashCode": -753239650, + "HashCode": 492694166, "Kind": "Components.ChildContent", "Name": "Blazorise.Check.Feedback", "AssemblyName": "Blazorise", @@ -28015,7 +28015,7 @@ } }, { - "HashCode": -887010363, + "HashCode": -32134706, "Kind": "Components.ChildContent", "Name": "Blazorise.Check.ChildContent", "AssemblyName": "Blazorise", @@ -28034,7 +28034,7 @@ } }, { - "HashCode": 2036727139, + "HashCode": 1725862877, "Kind": "Components.ChildContent", "Name": "Blazorise.Check.ChildContent", "AssemblyName": "Blazorise", @@ -28054,7 +28054,7 @@ } }, { - "HashCode": -478016579, + "HashCode": 263998796, "Kind": "Components.Component", "Name": "Blazorise.Collapse", "AssemblyName": "Blazorise", @@ -28326,7 +28326,7 @@ } }, { - "HashCode": -1349626738, + "HashCode": 1061525996, "Kind": "Components.Component", "Name": "Blazorise.Collapse", "AssemblyName": "Blazorise", @@ -28599,7 +28599,7 @@ } }, { - "HashCode": -1046338518, + "HashCode": 352186556, "Kind": "Components.ChildContent", "Name": "Blazorise.Collapse.ChildContent", "AssemblyName": "Blazorise", @@ -28618,7 +28618,7 @@ } }, { - "HashCode": 723480931, + "HashCode": 517708772, "Kind": "Components.ChildContent", "Name": "Blazorise.Collapse.ChildContent", "AssemblyName": "Blazorise", @@ -28638,7 +28638,7 @@ } }, { - "HashCode": -1109456784, + "HashCode": 377007519, "Kind": "Components.Component", "Name": "Blazorise.CollapseBody", "AssemblyName": "Blazorise", @@ -28901,7 +28901,7 @@ } }, { - "HashCode": 1197277552, + "HashCode": -1822696008, "Kind": "Components.Component", "Name": "Blazorise.CollapseBody", "AssemblyName": "Blazorise", @@ -29165,7 +29165,7 @@ } }, { - "HashCode": -692784139, + "HashCode": -2048529343, "Kind": "Components.ChildContent", "Name": "Blazorise.CollapseBody.ChildContent", "AssemblyName": "Blazorise", @@ -29184,7 +29184,7 @@ } }, { - "HashCode": 951094794, + "HashCode": -467799152, "Kind": "Components.ChildContent", "Name": "Blazorise.CollapseBody.ChildContent", "AssemblyName": "Blazorise", @@ -29204,7 +29204,7 @@ } }, { - "HashCode": -1514636358, + "HashCode": 1305603627, "Kind": "Components.Component", "Name": "Blazorise.CollapseHeader", "AssemblyName": "Blazorise", @@ -29477,7 +29477,7 @@ } }, { - "HashCode": 313126667, + "HashCode": 1398242287, "Kind": "Components.Component", "Name": "Blazorise.CollapseHeader", "AssemblyName": "Blazorise", @@ -29751,7 +29751,7 @@ } }, { - "HashCode": -1410089135, + "HashCode": -1691277509, "Kind": "Components.ChildContent", "Name": "Blazorise.CollapseHeader.ChildContent", "AssemblyName": "Blazorise", @@ -29770,7 +29770,7 @@ } }, { - "HashCode": 1537813878, + "HashCode": 669749909, "Kind": "Components.ChildContent", "Name": "Blazorise.CollapseHeader.ChildContent", "AssemblyName": "Blazorise", @@ -29790,7 +29790,7 @@ } }, { - "HashCode": 106156216, + "HashCode": 2039886174, "Kind": "Components.Component", "Name": "Blazorise.ColorEdit", "AssemblyName": "Blazorise", @@ -30216,7 +30216,7 @@ } }, { - "HashCode": -1636802648, + "HashCode": 2013143540, "Kind": "Components.Component", "Name": "Blazorise.ColorEdit", "AssemblyName": "Blazorise", @@ -30643,7 +30643,7 @@ } }, { - "HashCode": -1361719443, + "HashCode": -1211981816, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorEdit.Feedback", "AssemblyName": "Blazorise", @@ -30662,7 +30662,7 @@ } }, { - "HashCode": -342275332, + "HashCode": -407730516, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorEdit.Feedback", "AssemblyName": "Blazorise", @@ -30682,7 +30682,7 @@ } }, { - "HashCode": -933682257, + "HashCode": -34086674, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorEdit.ChildContent", "AssemblyName": "Blazorise", @@ -30701,7 +30701,7 @@ } }, { - "HashCode": -487877333, + "HashCode": 1910672626, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorEdit.ChildContent", "AssemblyName": "Blazorise", @@ -30721,7 +30721,7 @@ } }, { - "HashCode": -1663191720, + "HashCode": -981708523, "Kind": "Components.Component", "Name": "Blazorise.ColorPicker", "AssemblyName": "Blazorise", @@ -31202,7 +31202,7 @@ } }, { - "HashCode": 1538291181, + "HashCode": 1182382499, "Kind": "Components.Component", "Name": "Blazorise.ColorPicker", "AssemblyName": "Blazorise", @@ -31684,7 +31684,7 @@ } }, { - "HashCode": -186773815, + "HashCode": 1251241806, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorPicker.Feedback", "AssemblyName": "Blazorise", @@ -31703,7 +31703,7 @@ } }, { - "HashCode": -10807089, + "HashCode": 37491518, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorPicker.Feedback", "AssemblyName": "Blazorise", @@ -31723,7 +31723,7 @@ } }, { - "HashCode": 1890079290, + "HashCode": -800106953, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorPicker.ChildContent", "AssemblyName": "Blazorise", @@ -31742,7 +31742,7 @@ } }, { - "HashCode": -89544298, + "HashCode": -501358193, "Kind": "Components.ChildContent", "Name": "Blazorise.ColorPicker.ChildContent", "AssemblyName": "Blazorise", @@ -31762,7 +31762,7 @@ } }, { - "HashCode": 1071113096, + "HashCode": -706327603, "Kind": "Components.Component", "Name": "Blazorise.Column", "AssemblyName": "Blazorise", @@ -32034,7 +32034,7 @@ } }, { - "HashCode": 1422756256, + "HashCode": -1760013894, "Kind": "Components.Component", "Name": "Blazorise.Column", "AssemblyName": "Blazorise", @@ -32307,7 +32307,7 @@ } }, { - "HashCode": -831381327, + "HashCode": -1401457557, "Kind": "Components.ChildContent", "Name": "Blazorise.Column.ChildContent", "AssemblyName": "Blazorise", @@ -32326,7 +32326,7 @@ } }, { - "HashCode": 1420944760, + "HashCode": 1549865955, "Kind": "Components.ChildContent", "Name": "Blazorise.Column.ChildContent", "AssemblyName": "Blazorise", @@ -32346,7 +32346,7 @@ } }, { - "HashCode": -995468704, + "HashCode": 219002869, "Kind": "Components.Component", "Name": "Blazorise.Container", "AssemblyName": "Blazorise", @@ -32628,7 +32628,7 @@ } }, { - "HashCode": 91683144, + "HashCode": -1195542309, "Kind": "Components.Component", "Name": "Blazorise.Container", "AssemblyName": "Blazorise", @@ -32911,7 +32911,7 @@ } }, { - "HashCode": -580960906, + "HashCode": 894533552, "Kind": "Components.ChildContent", "Name": "Blazorise.Container.ChildContent", "AssemblyName": "Blazorise", @@ -32930,7 +32930,7 @@ } }, { - "HashCode": 1067388609, + "HashCode": -201688158, "Kind": "Components.ChildContent", "Name": "Blazorise.Container.ChildContent", "AssemblyName": "Blazorise", @@ -32950,7 +32950,7 @@ } }, { - "HashCode": -1021460021, + "HashCode": 166463446, "Kind": "Components.Component", "Name": "Blazorise.Control", "AssemblyName": "Blazorise", @@ -33232,7 +33232,7 @@ } }, { - "HashCode": 2124133617, + "HashCode": 508322037, "Kind": "Components.Component", "Name": "Blazorise.Control", "AssemblyName": "Blazorise", @@ -33515,7 +33515,7 @@ } }, { - "HashCode": 117025841, + "HashCode": 1743601827, "Kind": "Components.ChildContent", "Name": "Blazorise.Control.ChildContent", "AssemblyName": "Blazorise", @@ -33534,7 +33534,7 @@ } }, { - "HashCode": 108717302, + "HashCode": -1406607094, "Kind": "Components.ChildContent", "Name": "Blazorise.Control.ChildContent", "AssemblyName": "Blazorise", @@ -33554,7 +33554,7 @@ } }, { - "HashCode": -412584460, + "HashCode": 963316745, "Kind": "Components.Component", "Name": "Blazorise.DateEdit", "AssemblyName": "Blazorise", @@ -34096,7 +34096,7 @@ } }, { - "HashCode": 167187260, + "HashCode": 1554977381, "Kind": "Components.Component", "Name": "Blazorise.DateEdit", "AssemblyName": "Blazorise", @@ -34639,7 +34639,7 @@ } }, { - "HashCode": 214214754, + "HashCode": -2076153675, "Kind": "Components.ChildContent", "Name": "Blazorise.DateEdit.Feedback", "AssemblyName": "Blazorise", @@ -34658,7 +34658,7 @@ } }, { - "HashCode": 1034501254, + "HashCode": -369219875, "Kind": "Components.ChildContent", "Name": "Blazorise.DateEdit.Feedback", "AssemblyName": "Blazorise", @@ -34678,7 +34678,7 @@ } }, { - "HashCode": 1964801914, + "HashCode": 978687985, "Kind": "Components.ChildContent", "Name": "Blazorise.DateEdit.ChildContent", "AssemblyName": "Blazorise", @@ -34697,7 +34697,7 @@ } }, { - "HashCode": -1956999407, + "HashCode": -1272840948, "Kind": "Components.ChildContent", "Name": "Blazorise.DateEdit.ChildContent", "AssemblyName": "Blazorise", @@ -34717,7 +34717,7 @@ } }, { - "HashCode": 607657908, + "HashCode": -230595067, "Kind": "Components.Component", "Name": "Blazorise.DatePicker", "AssemblyName": "Blazorise", @@ -35329,7 +35329,7 @@ } }, { - "HashCode": -1883634390, + "HashCode": 416234626, "Kind": "Components.Component", "Name": "Blazorise.DatePicker", "AssemblyName": "Blazorise", @@ -35942,7 +35942,7 @@ } }, { - "HashCode": 1133506780, + "HashCode": -250889321, "Kind": "Components.ChildContent", "Name": "Blazorise.DatePicker.Feedback", "AssemblyName": "Blazorise", @@ -35961,7 +35961,7 @@ } }, { - "HashCode": -701177698, + "HashCode": 1303626038, "Kind": "Components.ChildContent", "Name": "Blazorise.DatePicker.Feedback", "AssemblyName": "Blazorise", @@ -35981,7 +35981,7 @@ } }, { - "HashCode": -1940779315, + "HashCode": 2114605814, "Kind": "Components.ChildContent", "Name": "Blazorise.DatePicker.ChildContent", "AssemblyName": "Blazorise", @@ -36000,7 +36000,7 @@ } }, { - "HashCode": -1382908609, + "HashCode": -1420222289, "Kind": "Components.ChildContent", "Name": "Blazorise.DatePicker.ChildContent", "AssemblyName": "Blazorise", @@ -36020,7 +36020,7 @@ } }, { - "HashCode": 31694358, + "HashCode": 1379110380, "Kind": "Components.Component", "Name": "Blazorise.Divider", "AssemblyName": "Blazorise", @@ -36291,7 +36291,7 @@ } }, { - "HashCode": 1490868170, + "HashCode": 1814497975, "Kind": "Components.Component", "Name": "Blazorise.Divider", "AssemblyName": "Blazorise", @@ -36563,7 +36563,7 @@ } }, { - "HashCode": 1610963669, + "HashCode": 286515453, "Kind": "Components.Component", "Name": "Blazorise.Dropdown", "AssemblyName": "Blazorise", @@ -36873,7 +36873,7 @@ } }, { - "HashCode": -1903608118, + "HashCode": -679532746, "Kind": "Components.Component", "Name": "Blazorise.Dropdown", "AssemblyName": "Blazorise", @@ -37184,7 +37184,7 @@ } }, { - "HashCode": 260615739, + "HashCode": -1634387883, "Kind": "Components.ChildContent", "Name": "Blazorise.Dropdown.ChildContent", "AssemblyName": "Blazorise", @@ -37203,7 +37203,7 @@ } }, { - "HashCode": 1240829998, + "HashCode": -452522020, "Kind": "Components.ChildContent", "Name": "Blazorise.Dropdown.ChildContent", "AssemblyName": "Blazorise", @@ -37223,7 +37223,7 @@ } }, { - "HashCode": -541512718, + "HashCode": 528121855, "Kind": "Components.Component", "Name": "Blazorise.DropdownDivider", "AssemblyName": "Blazorise", @@ -37476,7 +37476,7 @@ } }, { - "HashCode": -2045978167, + "HashCode": -362718476, "Kind": "Components.Component", "Name": "Blazorise.DropdownDivider", "AssemblyName": "Blazorise", @@ -37730,7 +37730,7 @@ } }, { - "HashCode": -145939651, + "HashCode": -544116780, "Kind": "Components.Component", "Name": "Blazorise.DropdownHeader", "AssemblyName": "Blazorise", @@ -37993,7 +37993,7 @@ } }, { - "HashCode": 934547162, + "HashCode": -1495780460, "Kind": "Components.Component", "Name": "Blazorise.DropdownHeader", "AssemblyName": "Blazorise", @@ -38257,7 +38257,7 @@ } }, { - "HashCode": -1581582085, + "HashCode": -1069614185, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownHeader.ChildContent", "AssemblyName": "Blazorise", @@ -38276,7 +38276,7 @@ } }, { - "HashCode": 1766688444, + "HashCode": -157418802, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownHeader.ChildContent", "AssemblyName": "Blazorise", @@ -38296,7 +38296,7 @@ } }, { - "HashCode": -1445806383, + "HashCode": 1288989179, "Kind": "Components.Component", "Name": "Blazorise.DropdownItem", "AssemblyName": "Blazorise", @@ -38596,7 +38596,7 @@ } }, { - "HashCode": -827038782, + "HashCode": 1085615421, "Kind": "Components.Component", "Name": "Blazorise.DropdownItem", "AssemblyName": "Blazorise", @@ -38897,7 +38897,7 @@ } }, { - "HashCode": 395348068, + "HashCode": 986123820, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownItem.ChildContent", "AssemblyName": "Blazorise", @@ -38916,7 +38916,7 @@ } }, { - "HashCode": 1626296078, + "HashCode": -1015334384, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownItem.ChildContent", "AssemblyName": "Blazorise", @@ -38936,7 +38936,7 @@ } }, { - "HashCode": -2023616934, + "HashCode": -781902853, "Kind": "Components.Component", "Name": "Blazorise.DropdownMenu", "AssemblyName": "Blazorise", @@ -39208,7 +39208,7 @@ } }, { - "HashCode": -701698342, + "HashCode": 610062283, "Kind": "Components.Component", "Name": "Blazorise.DropdownMenu", "AssemblyName": "Blazorise", @@ -39481,7 +39481,7 @@ } }, { - "HashCode": -1778160098, + "HashCode": 609446951, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownMenu.ChildContent", "AssemblyName": "Blazorise", @@ -39500,7 +39500,7 @@ } }, { - "HashCode": -95429583, + "HashCode": -240158547, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownMenu.ChildContent", "AssemblyName": "Blazorise", @@ -39520,7 +39520,7 @@ } }, { - "HashCode": 1481319040, + "HashCode": -361677602, "Kind": "Components.Component", "Name": "Blazorise.DropdownToggle", "AssemblyName": "Blazorise", @@ -39856,7 +39856,7 @@ } }, { - "HashCode": -297079826, + "HashCode": -1845604375, "Kind": "Components.Component", "Name": "Blazorise.DropdownToggle", "AssemblyName": "Blazorise", @@ -40193,7 +40193,7 @@ } }, { - "HashCode": 218223944, + "HashCode": -1896090168, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownToggle.ChildContent", "AssemblyName": "Blazorise", @@ -40212,7 +40212,7 @@ } }, { - "HashCode": 2021194695, + "HashCode": -1766420486, "Kind": "Components.ChildContent", "Name": "Blazorise.DropdownToggle.ChildContent", "AssemblyName": "Blazorise", @@ -40232,7 +40232,7 @@ } }, { - "HashCode": 444842767, + "HashCode": 798365597, "Kind": "Components.Component", "Name": "Blazorise.DropContainer", "AssemblyName": "Blazorise", @@ -40636,7 +40636,7 @@ } }, { - "HashCode": -576098966, + "HashCode": -1554806243, "Kind": "Components.Component", "Name": "Blazorise.DropContainer", "AssemblyName": "Blazorise", @@ -41041,7 +41041,7 @@ } }, { - "HashCode": 1001853047, + "HashCode": 581804422, "Kind": "Components.ChildContent", "Name": "Blazorise.DropContainer.ItemTemplate", "AssemblyName": "Blazorise", @@ -41072,7 +41072,7 @@ } }, { - "HashCode": -326721169, + "HashCode": -321986255, "Kind": "Components.ChildContent", "Name": "Blazorise.DropContainer.ItemTemplate", "AssemblyName": "Blazorise", @@ -41104,7 +41104,7 @@ } }, { - "HashCode": -128242266, + "HashCode": 19997682, "Kind": "Components.ChildContent", "Name": "Blazorise.DropContainer.ChildContent", "AssemblyName": "Blazorise", @@ -41123,7 +41123,7 @@ } }, { - "HashCode": -1043235365, + "HashCode": 23419682, "Kind": "Components.ChildContent", "Name": "Blazorise.DropContainer.ChildContent", "AssemblyName": "Blazorise", @@ -41143,7 +41143,7 @@ } }, { - "HashCode": 655921446, + "HashCode": -1098972001, "Kind": "Components.Component", "Name": "Blazorise.DropZone", "AssemblyName": "Blazorise", @@ -41535,7 +41535,7 @@ } }, { - "HashCode": 1814543282, + "HashCode": 1231221249, "Kind": "Components.Component", "Name": "Blazorise.DropZone", "AssemblyName": "Blazorise", @@ -41928,7 +41928,7 @@ } }, { - "HashCode": -1148630833, + "HashCode": -583765317, "Kind": "Components.ChildContent", "Name": "Blazorise.DropZone.ItemTemplate", "AssemblyName": "Blazorise", @@ -41959,7 +41959,7 @@ } }, { - "HashCode": -1026394146, + "HashCode": -173158207, "Kind": "Components.ChildContent", "Name": "Blazorise.DropZone.ItemTemplate", "AssemblyName": "Blazorise", @@ -41991,7 +41991,7 @@ } }, { - "HashCode": -192528676, + "HashCode": 2114031729, "Kind": "Components.ChildContent", "Name": "Blazorise.DropZone.ChildContent", "AssemblyName": "Blazorise", @@ -42010,7 +42010,7 @@ } }, { - "HashCode": -1271979028, + "HashCode": -1111313205, "Kind": "Components.ChildContent", "Name": "Blazorise.DropZone.ChildContent", "AssemblyName": "Blazorise", @@ -42030,7 +42030,7 @@ } }, { - "HashCode": 1221004198, + "HashCode": -1084107616, "Kind": "Components.Component", "Name": "Blazorise._Draggable", "AssemblyName": "Blazorise", @@ -42373,7 +42373,7 @@ } }, { - "HashCode": -2054982497, + "HashCode": -1060146496, "Kind": "Components.Component", "Name": "Blazorise._Draggable", "AssemblyName": "Blazorise", @@ -42717,7 +42717,7 @@ } }, { - "HashCode": -512996648, + "HashCode": 426358049, "Kind": "Components.ChildContent", "Name": "Blazorise._Draggable.ChildContent", "AssemblyName": "Blazorise", @@ -42736,7 +42736,7 @@ } }, { - "HashCode": 1433991861, + "HashCode": -984722630, "Kind": "Components.ChildContent", "Name": "Blazorise._Draggable.ChildContent", "AssemblyName": "Blazorise", @@ -42756,7 +42756,7 @@ } }, { - "HashCode": -708617532, + "HashCode": 1172216341, "Kind": "Components.Component", "Name": "Blazorise.Dynamic", "AssemblyName": "Blazorise", @@ -42840,7 +42840,7 @@ } }, { - "HashCode": -1454187640, + "HashCode": 1416509065, "Kind": "Components.Component", "Name": "Blazorise.Dynamic", "AssemblyName": "Blazorise", @@ -42925,7 +42925,7 @@ } }, { - "HashCode": -638392930, + "HashCode": -636078779, "Kind": "Components.ChildContent", "Name": "Blazorise.Dynamic.ChildContent", "AssemblyName": "Blazorise", @@ -42944,7 +42944,7 @@ } }, { - "HashCode": -811333733, + "HashCode": -441464195, "Kind": "Components.ChildContent", "Name": "Blazorise.Dynamic.ChildContent", "AssemblyName": "Blazorise", @@ -42964,7 +42964,7 @@ } }, { - "HashCode": 748278699, + "HashCode": 1220007108, "Kind": "Components.Component", "Name": "Blazorise.Field", "AssemblyName": "Blazorise", @@ -43255,7 +43255,7 @@ } }, { - "HashCode": -1803606521, + "HashCode": 1883889891, "Kind": "Components.Component", "Name": "Blazorise.Field", "AssemblyName": "Blazorise", @@ -43547,7 +43547,7 @@ } }, { - "HashCode": -2060798844, + "HashCode": 2043180675, "Kind": "Components.ChildContent", "Name": "Blazorise.Field.ChildContent", "AssemblyName": "Blazorise", @@ -43566,7 +43566,7 @@ } }, { - "HashCode": 1004818244, + "HashCode": -361003669, "Kind": "Components.ChildContent", "Name": "Blazorise.Field.ChildContent", "AssemblyName": "Blazorise", @@ -43586,7 +43586,7 @@ } }, { - "HashCode": 384213215, + "HashCode": 879344107, "Kind": "Components.Component", "Name": "Blazorise.FieldBody", "AssemblyName": "Blazorise", @@ -43858,7 +43858,7 @@ } }, { - "HashCode": 685141293, + "HashCode": 111227561, "Kind": "Components.Component", "Name": "Blazorise.FieldBody", "AssemblyName": "Blazorise", @@ -44131,7 +44131,7 @@ } }, { - "HashCode": -330167675, + "HashCode": 514366003, "Kind": "Components.ChildContent", "Name": "Blazorise.FieldBody.ChildContent", "AssemblyName": "Blazorise", @@ -44150,7 +44150,7 @@ } }, { - "HashCode": -1955078908, + "HashCode": -477357864, "Kind": "Components.ChildContent", "Name": "Blazorise.FieldBody.ChildContent", "AssemblyName": "Blazorise", @@ -44170,7 +44170,7 @@ } }, { - "HashCode": -2093683386, + "HashCode": -304646837, "Kind": "Components.Component", "Name": "Blazorise.FieldHelp", "AssemblyName": "Blazorise", @@ -44433,7 +44433,7 @@ } }, { - "HashCode": -1911799701, + "HashCode": -126433590, "Kind": "Components.Component", "Name": "Blazorise.FieldHelp", "AssemblyName": "Blazorise", @@ -44697,7 +44697,7 @@ } }, { - "HashCode": -683775782, + "HashCode": -1784718253, "Kind": "Components.ChildContent", "Name": "Blazorise.FieldHelp.ChildContent", "AssemblyName": "Blazorise", @@ -44716,7 +44716,7 @@ } }, { - "HashCode": -1080247775, + "HashCode": 193156505, "Kind": "Components.ChildContent", "Name": "Blazorise.FieldHelp.ChildContent", "AssemblyName": "Blazorise", @@ -44736,7 +44736,7 @@ } }, { - "HashCode": -592564545, + "HashCode": 2140224508, "Kind": "Components.Component", "Name": "Blazorise.FieldLabel", "AssemblyName": "Blazorise", @@ -45027,7 +45027,7 @@ } }, { - "HashCode": -1001604327, + "HashCode": 1425132895, "Kind": "Components.Component", "Name": "Blazorise.FieldLabel", "AssemblyName": "Blazorise", @@ -45319,7 +45319,7 @@ } }, { - "HashCode": -109984932, + "HashCode": 64749687, "Kind": "Components.ChildContent", "Name": "Blazorise.FieldLabel.ChildContent", "AssemblyName": "Blazorise", @@ -45338,7 +45338,7 @@ } }, { - "HashCode": 1420897995, + "HashCode": 1934279218, "Kind": "Components.ChildContent", "Name": "Blazorise.FieldLabel.ChildContent", "AssemblyName": "Blazorise", @@ -45358,7 +45358,7 @@ } }, { - "HashCode": -956803145, + "HashCode": 1182705471, "Kind": "Components.Component", "Name": "Blazorise.Fields", "AssemblyName": "Blazorise", @@ -45648,7 +45648,7 @@ } }, { - "HashCode": 1607986946, + "HashCode": 1657852268, "Kind": "Components.Component", "Name": "Blazorise.Fields", "AssemblyName": "Blazorise", @@ -45939,7 +45939,7 @@ } }, { - "HashCode": -176364304, + "HashCode": -1497544763, "Kind": "Components.ChildContent", "Name": "Blazorise.Fields.ChildContent", "AssemblyName": "Blazorise", @@ -45958,7 +45958,7 @@ } }, { - "HashCode": 1400735156, + "HashCode": -244447910, "Kind": "Components.ChildContent", "Name": "Blazorise.Fields.ChildContent", "AssemblyName": "Blazorise", @@ -45978,7 +45978,7 @@ } }, { - "HashCode": 309008069, + "HashCode": -1130620614, "Kind": "Components.Component", "Name": "Blazorise.Figure", "AssemblyName": "Blazorise", @@ -46251,7 +46251,7 @@ } }, { - "HashCode": 2028164432, + "HashCode": -183386218, "Kind": "Components.Component", "Name": "Blazorise.Figure", "AssemblyName": "Blazorise", @@ -46525,7 +46525,7 @@ } }, { - "HashCode": 510166516, + "HashCode": 1435452389, "Kind": "Components.ChildContent", "Name": "Blazorise.Figure.ChildContent", "AssemblyName": "Blazorise", @@ -46544,7 +46544,7 @@ } }, { - "HashCode": -1936901687, + "HashCode": -201944099, "Kind": "Components.ChildContent", "Name": "Blazorise.Figure.ChildContent", "AssemblyName": "Blazorise", @@ -46564,7 +46564,7 @@ } }, { - "HashCode": -609261469, + "HashCode": -1393755813, "Kind": "Components.Component", "Name": "Blazorise.FigureCaption", "AssemblyName": "Blazorise", @@ -46827,7 +46827,7 @@ } }, { - "HashCode": -1735461039, + "HashCode": -463653012, "Kind": "Components.Component", "Name": "Blazorise.FigureCaption", "AssemblyName": "Blazorise", @@ -47091,7 +47091,7 @@ } }, { - "HashCode": -945016814, + "HashCode": -799076786, "Kind": "Components.ChildContent", "Name": "Blazorise.FigureCaption.ChildContent", "AssemblyName": "Blazorise", @@ -47110,7 +47110,7 @@ } }, { - "HashCode": -1574681128, + "HashCode": 344713990, "Kind": "Components.ChildContent", "Name": "Blazorise.FigureCaption.ChildContent", "AssemblyName": "Blazorise", @@ -47130,7 +47130,7 @@ } }, { - "HashCode": 1716574303, + "HashCode": -511967069, "Kind": "Components.Component", "Name": "Blazorise.FigureImage", "AssemblyName": "Blazorise", @@ -47410,7 +47410,7 @@ } }, { - "HashCode": 453667247, + "HashCode": -1947277829, "Kind": "Components.Component", "Name": "Blazorise.FigureImage", "AssemblyName": "Blazorise", @@ -47691,7 +47691,7 @@ } }, { - "HashCode": 379174104, + "HashCode": 1689620027, "Kind": "Components.Component", "Name": "Blazorise.FileEdit", "AssemblyName": "Blazorise", @@ -48212,7 +48212,7 @@ } }, { - "HashCode": 1582433073, + "HashCode": 1645913266, "Kind": "Components.Component", "Name": "Blazorise.FileEdit", "AssemblyName": "Blazorise", @@ -48734,7 +48734,7 @@ } }, { - "HashCode": -1468703084, + "HashCode": -1446413458, "Kind": "Components.ChildContent", "Name": "Blazorise.FileEdit.Feedback", "AssemblyName": "Blazorise", @@ -48753,7 +48753,7 @@ } }, { - "HashCode": -2017134563, + "HashCode": -1096619514, "Kind": "Components.ChildContent", "Name": "Blazorise.FileEdit.Feedback", "AssemblyName": "Blazorise", @@ -48773,7 +48773,7 @@ } }, { - "HashCode": 258658490, + "HashCode": 41988616, "Kind": "Components.ChildContent", "Name": "Blazorise.FileEdit.ChildContent", "AssemblyName": "Blazorise", @@ -48792,7 +48792,7 @@ } }, { - "HashCode": -380419386, + "HashCode": -165477154, "Kind": "Components.ChildContent", "Name": "Blazorise.FileEdit.ChildContent", "AssemblyName": "Blazorise", @@ -48812,7 +48812,7 @@ } }, { - "HashCode": -1226025119, + "HashCode": -1592124558, "Kind": "Components.Component", "Name": "Blazorise.Form", "AssemblyName": "Blazorise", @@ -49075,7 +49075,7 @@ } }, { - "HashCode": 561783440, + "HashCode": 1405414995, "Kind": "Components.Component", "Name": "Blazorise.Form", "AssemblyName": "Blazorise", @@ -49339,7 +49339,7 @@ } }, { - "HashCode": 1536302393, + "HashCode": 1021609128, "Kind": "Components.ChildContent", "Name": "Blazorise.Form.ChildContent", "AssemblyName": "Blazorise", @@ -49358,7 +49358,7 @@ } }, { - "HashCode": 460750671, + "HashCode": 511807762, "Kind": "Components.ChildContent", "Name": "Blazorise.Form.ChildContent", "AssemblyName": "Blazorise", @@ -49378,7 +49378,7 @@ } }, { - "HashCode": -1990019434, + "HashCode": 499843624, "Kind": "Components.Component", "Name": "Blazorise.Help", "AssemblyName": "Blazorise", @@ -49641,7 +49641,7 @@ } }, { - "HashCode": 542891355, + "HashCode": -1829229559, "Kind": "Components.Component", "Name": "Blazorise.Help", "AssemblyName": "Blazorise", @@ -49905,7 +49905,7 @@ } }, { - "HashCode": -549508626, + "HashCode": 1640224211, "Kind": "Components.ChildContent", "Name": "Blazorise.Help.ChildContent", "AssemblyName": "Blazorise", @@ -49924,7 +49924,7 @@ } }, { - "HashCode": 1919112075, + "HashCode": -1299161081, "Kind": "Components.ChildContent", "Name": "Blazorise.Help.ChildContent", "AssemblyName": "Blazorise", @@ -49944,7 +49944,7 @@ } }, { - "HashCode": 1215898928, + "HashCode": 1246134481, "Kind": "Components.Component", "Name": "Blazorise.Icon", "AssemblyName": "Blazorise", @@ -50256,7 +50256,7 @@ } }, { - "HashCode": 1091855422, + "HashCode": 2066057502, "Kind": "Components.Component", "Name": "Blazorise.Icon", "AssemblyName": "Blazorise", @@ -50569,7 +50569,7 @@ } }, { - "HashCode": -299735579, + "HashCode": 208589409, "Kind": "Components.Component", "Name": "Blazorise.Image", "AssemblyName": "Blazorise", @@ -50849,7 +50849,7 @@ } }, { - "HashCode": -1131956673, + "HashCode": -1765263964, "Kind": "Components.Component", "Name": "Blazorise.Image", "AssemblyName": "Blazorise", @@ -51130,7 +51130,7 @@ } }, { - "HashCode": -1548383689, + "HashCode": 1085385853, "Kind": "Components.Component", "Name": "Blazorise.Inline", "AssemblyName": "Blazorise", @@ -51393,7 +51393,7 @@ } }, { - "HashCode": -565434724, + "HashCode": 1756746388, "Kind": "Components.Component", "Name": "Blazorise.Inline", "AssemblyName": "Blazorise", @@ -51657,7 +51657,7 @@ } }, { - "HashCode": 1986744497, + "HashCode": -1304291566, "Kind": "Components.ChildContent", "Name": "Blazorise.Inline.ChildContent", "AssemblyName": "Blazorise", @@ -51676,7 +51676,7 @@ } }, { - "HashCode": -401392656, + "HashCode": 812376756, "Kind": "Components.ChildContent", "Name": "Blazorise.Inline.ChildContent", "AssemblyName": "Blazorise", @@ -51696,7 +51696,7 @@ } }, { - "HashCode": 1744727303, + "HashCode": 210802013, "Kind": "Components.Component", "Name": "Blazorise.InputMask", "AssemblyName": "Blazorise", @@ -52360,7 +52360,7 @@ } }, { - "HashCode": -871238002, + "HashCode": 935303455, "Kind": "Components.Component", "Name": "Blazorise.InputMask", "AssemblyName": "Blazorise", @@ -53025,7 +53025,7 @@ } }, { - "HashCode": -1379405528, + "HashCode": 1404860228, "Kind": "Components.ChildContent", "Name": "Blazorise.InputMask.Feedback", "AssemblyName": "Blazorise", @@ -53044,7 +53044,7 @@ } }, { - "HashCode": 104015695, + "HashCode": -750645520, "Kind": "Components.ChildContent", "Name": "Blazorise.InputMask.Feedback", "AssemblyName": "Blazorise", @@ -53064,7 +53064,7 @@ } }, { - "HashCode": -419762455, + "HashCode": -738809829, "Kind": "Components.ChildContent", "Name": "Blazorise.InputMask.ChildContent", "AssemblyName": "Blazorise", @@ -53083,7 +53083,7 @@ } }, { - "HashCode": -1006197362, + "HashCode": -1777248432, "Kind": "Components.ChildContent", "Name": "Blazorise.InputMask.ChildContent", "AssemblyName": "Blazorise", @@ -53103,7 +53103,7 @@ } }, { - "HashCode": -47486812, + "HashCode": 905437684, "Kind": "Components.Component", "Name": "Blazorise.Jumbotron", "AssemblyName": "Blazorise", @@ -53366,7 +53366,7 @@ } }, { - "HashCode": -1439933660, + "HashCode": -1226476074, "Kind": "Components.Component", "Name": "Blazorise.Jumbotron", "AssemblyName": "Blazorise", @@ -53630,7 +53630,7 @@ } }, { - "HashCode": -25723376, + "HashCode": -1938345042, "Kind": "Components.ChildContent", "Name": "Blazorise.Jumbotron.ChildContent", "AssemblyName": "Blazorise", @@ -53649,7 +53649,7 @@ } }, { - "HashCode": 172827578, + "HashCode": 592452749, "Kind": "Components.ChildContent", "Name": "Blazorise.Jumbotron.ChildContent", "AssemblyName": "Blazorise", @@ -53669,7 +53669,7 @@ } }, { - "HashCode": -2106344481, + "HashCode": 931632731, "Kind": "Components.Component", "Name": "Blazorise.JumbotronSubtitle", "AssemblyName": "Blazorise", @@ -53932,7 +53932,7 @@ } }, { - "HashCode": -560722091, + "HashCode": -1764894095, "Kind": "Components.Component", "Name": "Blazorise.JumbotronSubtitle", "AssemblyName": "Blazorise", @@ -54196,7 +54196,7 @@ } }, { - "HashCode": -221636617, + "HashCode": -323026565, "Kind": "Components.ChildContent", "Name": "Blazorise.JumbotronSubtitle.ChildContent", "AssemblyName": "Blazorise", @@ -54215,7 +54215,7 @@ } }, { - "HashCode": -1585733723, + "HashCode": 1455307902, "Kind": "Components.ChildContent", "Name": "Blazorise.JumbotronSubtitle.ChildContent", "AssemblyName": "Blazorise", @@ -54235,7 +54235,7 @@ } }, { - "HashCode": 539609355, + "HashCode": -538694414, "Kind": "Components.Component", "Name": "Blazorise.JumbotronTitle", "AssemblyName": "Blazorise", @@ -54508,7 +54508,7 @@ } }, { - "HashCode": -421637658, + "HashCode": -1130401434, "Kind": "Components.Component", "Name": "Blazorise.JumbotronTitle", "AssemblyName": "Blazorise", @@ -54782,7 +54782,7 @@ } }, { - "HashCode": 725153093, + "HashCode": 10687554, "Kind": "Components.ChildContent", "Name": "Blazorise.JumbotronTitle.ChildContent", "AssemblyName": "Blazorise", @@ -54801,7 +54801,7 @@ } }, { - "HashCode": 2102367792, + "HashCode": 1861752756, "Kind": "Components.ChildContent", "Name": "Blazorise.JumbotronTitle.ChildContent", "AssemblyName": "Blazorise", @@ -54821,7 +54821,7 @@ } }, { - "HashCode": -707131386, + "HashCode": 1705195363, "Kind": "Components.Component", "Name": "Blazorise.Label", "AssemblyName": "Blazorise", @@ -55113,7 +55113,7 @@ } }, { - "HashCode": -1052308683, + "HashCode": -1974328191, "Kind": "Components.Component", "Name": "Blazorise.Label", "AssemblyName": "Blazorise", @@ -55406,7 +55406,7 @@ } }, { - "HashCode": -1404132520, + "HashCode": 1662959184, "Kind": "Components.ChildContent", "Name": "Blazorise.Label.ChildContent", "AssemblyName": "Blazorise", @@ -55425,7 +55425,7 @@ } }, { - "HashCode": -318428508, + "HashCode": 748149705, "Kind": "Components.ChildContent", "Name": "Blazorise.Label.ChildContent", "AssemblyName": "Blazorise", @@ -55445,7 +55445,7 @@ } }, { - "HashCode": -912980170, + "HashCode": -1455183220, "Kind": "Components.Component", "Name": "Blazorise.Layout", "AssemblyName": "Blazorise", @@ -55755,7 +55755,7 @@ } }, { - "HashCode": -695365145, + "HashCode": -1783257881, "Kind": "Components.Component", "Name": "Blazorise.Layout", "AssemblyName": "Blazorise", @@ -56066,7 +56066,7 @@ } }, { - "HashCode": -1862472904, + "HashCode": -329839865, "Kind": "Components.ChildContent", "Name": "Blazorise.Layout.LoadingTemplate", "AssemblyName": "Blazorise", @@ -56085,7 +56085,7 @@ } }, { - "HashCode": -1685360383, + "HashCode": -1020205867, "Kind": "Components.ChildContent", "Name": "Blazorise.Layout.LoadingTemplate", "AssemblyName": "Blazorise", @@ -56105,7 +56105,7 @@ } }, { - "HashCode": -1838274981, + "HashCode": 1792828227, "Kind": "Components.ChildContent", "Name": "Blazorise.Layout.ChildContent", "AssemblyName": "Blazorise", @@ -56124,7 +56124,7 @@ } }, { - "HashCode": -1687474203, + "HashCode": -268143538, "Kind": "Components.ChildContent", "Name": "Blazorise.Layout.ChildContent", "AssemblyName": "Blazorise", @@ -56144,7 +56144,7 @@ } }, { - "HashCode": 353280436, + "HashCode": -1070215802, "Kind": "Components.Component", "Name": "Blazorise.LayoutContent", "AssemblyName": "Blazorise", @@ -56407,7 +56407,7 @@ } }, { - "HashCode": -811278121, + "HashCode": 2125437289, "Kind": "Components.Component", "Name": "Blazorise.LayoutContent", "AssemblyName": "Blazorise", @@ -56671,7 +56671,7 @@ } }, { - "HashCode": 1241183221, + "HashCode": -1278506579, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutContent.ChildContent", "AssemblyName": "Blazorise", @@ -56690,7 +56690,7 @@ } }, { - "HashCode": -237399807, + "HashCode": -1750458731, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutContent.ChildContent", "AssemblyName": "Blazorise", @@ -56710,7 +56710,7 @@ } }, { - "HashCode": 733671838, + "HashCode": -1915140551, "Kind": "Components.Component", "Name": "Blazorise.LayoutFooter", "AssemblyName": "Blazorise", @@ -56982,7 +56982,7 @@ } }, { - "HashCode": -1210590583, + "HashCode": 2044160865, "Kind": "Components.Component", "Name": "Blazorise.LayoutFooter", "AssemblyName": "Blazorise", @@ -57255,7 +57255,7 @@ } }, { - "HashCode": -1841553322, + "HashCode": -1310164869, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutFooter.ChildContent", "AssemblyName": "Blazorise", @@ -57274,7 +57274,7 @@ } }, { - "HashCode": -252174348, + "HashCode": 1327678943, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutFooter.ChildContent", "AssemblyName": "Blazorise", @@ -57294,7 +57294,7 @@ } }, { - "HashCode": 799633465, + "HashCode": -572943113, "Kind": "Components.Component", "Name": "Blazorise.LayoutHeader", "AssemblyName": "Blazorise", @@ -57566,7 +57566,7 @@ } }, { - "HashCode": 1199175018, + "HashCode": 621766281, "Kind": "Components.Component", "Name": "Blazorise.LayoutHeader", "AssemblyName": "Blazorise", @@ -57839,7 +57839,7 @@ } }, { - "HashCode": 211203796, + "HashCode": -2107894679, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutHeader.ChildContent", "AssemblyName": "Blazorise", @@ -57858,7 +57858,7 @@ } }, { - "HashCode": -294797824, + "HashCode": -1535417283, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutHeader.ChildContent", "AssemblyName": "Blazorise", @@ -57878,7 +57878,7 @@ } }, { - "HashCode": 1793308044, + "HashCode": -1628995896, "Kind": "Components.Component", "Name": "Blazorise.LayoutSider", "AssemblyName": "Blazorise", @@ -58141,7 +58141,7 @@ } }, { - "HashCode": 960107747, + "HashCode": 2044103801, "Kind": "Components.Component", "Name": "Blazorise.LayoutSider", "AssemblyName": "Blazorise", @@ -58405,7 +58405,7 @@ } }, { - "HashCode": 1033882106, + "HashCode": -117803040, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutSider.ChildContent", "AssemblyName": "Blazorise", @@ -58424,7 +58424,7 @@ } }, { - "HashCode": -957589973, + "HashCode": -69529660, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutSider.ChildContent", "AssemblyName": "Blazorise", @@ -58444,7 +58444,7 @@ } }, { - "HashCode": -1467554576, + "HashCode": -1288216663, "Kind": "Components.Component", "Name": "Blazorise.LayoutSiderContent", "AssemblyName": "Blazorise", @@ -58707,7 +58707,7 @@ } }, { - "HashCode": -881505680, + "HashCode": -204990853, "Kind": "Components.Component", "Name": "Blazorise.LayoutSiderContent", "AssemblyName": "Blazorise", @@ -58971,7 +58971,7 @@ } }, { - "HashCode": 444426615, + "HashCode": 797437448, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutSiderContent.ChildContent", "AssemblyName": "Blazorise", @@ -58990,7 +58990,7 @@ } }, { - "HashCode": 1550281529, + "HashCode": -536128172, "Kind": "Components.ChildContent", "Name": "Blazorise.LayoutSiderContent.ChildContent", "AssemblyName": "Blazorise", @@ -59010,7 +59010,7 @@ } }, { - "HashCode": -1207942724, + "HashCode": 59665929, "Kind": "Components.Component", "Name": "Blazorise.Anchor", "AssemblyName": "Blazorise", @@ -59320,7 +59320,7 @@ } }, { - "HashCode": 1976418752, + "HashCode": -1045779581, "Kind": "Components.Component", "Name": "Blazorise.Anchor", "AssemblyName": "Blazorise", @@ -59631,7 +59631,7 @@ } }, { - "HashCode": -445216335, + "HashCode": -357857599, "Kind": "Components.ChildContent", "Name": "Blazorise.Anchor.ChildContent", "AssemblyName": "Blazorise", @@ -59650,7 +59650,7 @@ } }, { - "HashCode": 598279106, + "HashCode": 875556408, "Kind": "Components.ChildContent", "Name": "Blazorise.Anchor.ChildContent", "AssemblyName": "Blazorise", @@ -59670,7 +59670,7 @@ } }, { - "HashCode": -1764565635, + "HashCode": -1411196319, "Kind": "Components.Component", "Name": "Blazorise.Link", "AssemblyName": "Blazorise", @@ -59980,7 +59980,7 @@ } }, { - "HashCode": 839862775, + "HashCode": -1158843262, "Kind": "Components.Component", "Name": "Blazorise.Link", "AssemblyName": "Blazorise", @@ -60291,7 +60291,7 @@ } }, { - "HashCode": 397099540, + "HashCode": 1844147155, "Kind": "Components.ChildContent", "Name": "Blazorise.Link.ChildContent", "AssemblyName": "Blazorise", @@ -60310,7 +60310,7 @@ } }, { - "HashCode": -784395172, + "HashCode": -376339596, "Kind": "Components.ChildContent", "Name": "Blazorise.Link.ChildContent", "AssemblyName": "Blazorise", @@ -60330,7 +60330,7 @@ } }, { - "HashCode": -1876426110, + "HashCode": -1119540565, "Kind": "Components.Component", "Name": "Blazorise.ListGroup", "AssemblyName": "Blazorise", @@ -60631,7 +60631,7 @@ } }, { - "HashCode": 209085085, + "HashCode": 404589321, "Kind": "Components.Component", "Name": "Blazorise.ListGroup", "AssemblyName": "Blazorise", @@ -60933,7 +60933,7 @@ } }, { - "HashCode": 2091481888, + "HashCode": -1383166892, "Kind": "Components.ChildContent", "Name": "Blazorise.ListGroup.ChildContent", "AssemblyName": "Blazorise", @@ -60952,7 +60952,7 @@ } }, { - "HashCode": 1951119952, + "HashCode": 103985899, "Kind": "Components.ChildContent", "Name": "Blazorise.ListGroup.ChildContent", "AssemblyName": "Blazorise", @@ -60972,7 +60972,7 @@ } }, { - "HashCode": 690665374, + "HashCode": -2144371019, "Kind": "Components.Component", "Name": "Blazorise.ListGroupItem", "AssemblyName": "Blazorise", @@ -61272,7 +61272,7 @@ } }, { - "HashCode": 524602156, + "HashCode": 452631389, "Kind": "Components.Component", "Name": "Blazorise.ListGroupItem", "AssemblyName": "Blazorise", @@ -61573,7 +61573,7 @@ } }, { - "HashCode": 103125019, + "HashCode": 614758059, "Kind": "Components.ChildContent", "Name": "Blazorise.ListGroupItem.ChildContent", "AssemblyName": "Blazorise", @@ -61592,7 +61592,7 @@ } }, { - "HashCode": -897976582, + "HashCode": 829887076, "Kind": "Components.ChildContent", "Name": "Blazorise.ListGroupItem.ChildContent", "AssemblyName": "Blazorise", @@ -61612,7 +61612,7 @@ } }, { - "HashCode": 742807197, + "HashCode": -1495640881, "Kind": "Components.Component", "Name": "Blazorise.Media", "AssemblyName": "Blazorise", @@ -61875,7 +61875,7 @@ } }, { - "HashCode": 1467426610, + "HashCode": -254005140, "Kind": "Components.Component", "Name": "Blazorise.Media", "AssemblyName": "Blazorise", @@ -62139,7 +62139,7 @@ } }, { - "HashCode": -1266797082, + "HashCode": 601705050, "Kind": "Components.ChildContent", "Name": "Blazorise.Media.ChildContent", "AssemblyName": "Blazorise", @@ -62158,7 +62158,7 @@ } }, { - "HashCode": 117956131, + "HashCode": 1540068640, "Kind": "Components.ChildContent", "Name": "Blazorise.Media.ChildContent", "AssemblyName": "Blazorise", @@ -62178,7 +62178,7 @@ } }, { - "HashCode": 790680724, + "HashCode": -1593420524, "Kind": "Components.Component", "Name": "Blazorise.MediaBody", "AssemblyName": "Blazorise", @@ -62441,7 +62441,7 @@ } }, { - "HashCode": 2083279747, + "HashCode": 1854046540, "Kind": "Components.Component", "Name": "Blazorise.MediaBody", "AssemblyName": "Blazorise", @@ -62705,7 +62705,7 @@ } }, { - "HashCode": 664460335, + "HashCode": 160330568, "Kind": "Components.ChildContent", "Name": "Blazorise.MediaBody.ChildContent", "AssemblyName": "Blazorise", @@ -62724,7 +62724,7 @@ } }, { - "HashCode": 1244892710, + "HashCode": 966320779, "Kind": "Components.ChildContent", "Name": "Blazorise.MediaBody.ChildContent", "AssemblyName": "Blazorise", @@ -62744,7 +62744,7 @@ } }, { - "HashCode": 1397761436, + "HashCode": 1094510059, "Kind": "Components.Component", "Name": "Blazorise.MediaLeft", "AssemblyName": "Blazorise", @@ -63007,7 +63007,7 @@ } }, { - "HashCode": -724355148, + "HashCode": -1475821873, "Kind": "Components.Component", "Name": "Blazorise.MediaLeft", "AssemblyName": "Blazorise", @@ -63271,7 +63271,7 @@ } }, { - "HashCode": 126267845, + "HashCode": -449318601, "Kind": "Components.ChildContent", "Name": "Blazorise.MediaLeft.ChildContent", "AssemblyName": "Blazorise", @@ -63290,7 +63290,7 @@ } }, { - "HashCode": 1201944100, + "HashCode": -1581567664, "Kind": "Components.ChildContent", "Name": "Blazorise.MediaLeft.ChildContent", "AssemblyName": "Blazorise", @@ -63310,7 +63310,7 @@ } }, { - "HashCode": 452926077, + "HashCode": -262522259, "Kind": "Components.Component", "Name": "Blazorise.MediaRight", "AssemblyName": "Blazorise", @@ -63573,7 +63573,7 @@ } }, { - "HashCode": -993448477, + "HashCode": -499980498, "Kind": "Components.Component", "Name": "Blazorise.MediaRight", "AssemblyName": "Blazorise", @@ -63837,7 +63837,7 @@ } }, { - "HashCode": 226206970, + "HashCode": -205158886, "Kind": "Components.ChildContent", "Name": "Blazorise.MediaRight.ChildContent", "AssemblyName": "Blazorise", @@ -63856,7 +63856,7 @@ } }, { - "HashCode": -1464083444, + "HashCode": -757013982, "Kind": "Components.ChildContent", "Name": "Blazorise.MediaRight.ChildContent", "AssemblyName": "Blazorise", @@ -63876,7 +63876,7 @@ } }, { - "HashCode": -45968627, + "HashCode": -376529171, "Kind": "Components.Component", "Name": "Blazorise.MemoEdit", "AssemblyName": "Blazorise", @@ -64410,7 +64410,7 @@ } }, { - "HashCode": -734035203, + "HashCode": -771730765, "Kind": "Components.Component", "Name": "Blazorise.MemoEdit", "AssemblyName": "Blazorise", @@ -64945,7 +64945,7 @@ } }, { - "HashCode": -1512895806, + "HashCode": 1527259911, "Kind": "Components.ChildContent", "Name": "Blazorise.MemoEdit.Feedback", "AssemblyName": "Blazorise", @@ -64964,7 +64964,7 @@ } }, { - "HashCode": -1095746371, + "HashCode": 695855019, "Kind": "Components.ChildContent", "Name": "Blazorise.MemoEdit.Feedback", "AssemblyName": "Blazorise", @@ -64984,7 +64984,7 @@ } }, { - "HashCode": -2017201929, + "HashCode": 206222538, "Kind": "Components.ChildContent", "Name": "Blazorise.MemoEdit.ChildContent", "AssemblyName": "Blazorise", @@ -65003,7 +65003,7 @@ } }, { - "HashCode": -889316990, + "HashCode": 1478089868, "Kind": "Components.ChildContent", "Name": "Blazorise.MemoEdit.ChildContent", "AssemblyName": "Blazorise", @@ -65023,7 +65023,7 @@ } }, { - "HashCode": 1566489155, + "HashCode": -258855367, "Kind": "Components.Component", "Name": "Blazorise.MessageAlert", "AssemblyName": "Blazorise", @@ -65361,7 +65361,7 @@ } }, { - "HashCode": -535348457, + "HashCode": -1018947948, "Kind": "Components.Component", "Name": "Blazorise.MessageAlert", "AssemblyName": "Blazorise", @@ -65700,7 +65700,7 @@ } }, { - "HashCode": -1176930634, + "HashCode": 1919650355, "Kind": "Components.Component", "Name": "Blazorise.Modal", "AssemblyName": "Blazorise", @@ -66068,7 +66068,7 @@ } }, { - "HashCode": -1245181753, + "HashCode": 545044852, "Kind": "Components.Component", "Name": "Blazorise.Modal", "AssemblyName": "Blazorise", @@ -66437,7 +66437,7 @@ } }, { - "HashCode": 1760069417, + "HashCode": 1401345462, "Kind": "Components.ChildContent", "Name": "Blazorise.Modal.ChildContent", "AssemblyName": "Blazorise", @@ -66456,7 +66456,7 @@ } }, { - "HashCode": -565097151, + "HashCode": 1594367064, "Kind": "Components.ChildContent", "Name": "Blazorise.Modal.ChildContent", "AssemblyName": "Blazorise", @@ -66476,7 +66476,7 @@ } }, { - "HashCode": 673402637, + "HashCode": -209819771, "Kind": "Components.Component", "Name": "Blazorise.ModalBody", "AssemblyName": "Blazorise", @@ -66748,7 +66748,7 @@ } }, { - "HashCode": 1726044700, + "HashCode": 633468432, "Kind": "Components.Component", "Name": "Blazorise.ModalBody", "AssemblyName": "Blazorise", @@ -67021,7 +67021,7 @@ } }, { - "HashCode": 1364672740, + "HashCode": -2058260752, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalBody.ChildContent", "AssemblyName": "Blazorise", @@ -67040,7 +67040,7 @@ } }, { - "HashCode": 1042373719, + "HashCode": -383734444, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalBody.ChildContent", "AssemblyName": "Blazorise", @@ -67060,7 +67060,7 @@ } }, { - "HashCode": 1056381563, + "HashCode": -1301343611, "Kind": "Components.Component", "Name": "Blazorise.ModalContent", "AssemblyName": "Blazorise", @@ -67351,7 +67351,7 @@ } }, { - "HashCode": -2019948613, + "HashCode": -1458567978, "Kind": "Components.Component", "Name": "Blazorise.ModalContent", "AssemblyName": "Blazorise", @@ -67643,7 +67643,7 @@ } }, { - "HashCode": -1173320548, + "HashCode": 1559521968, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalContent.ChildContent", "AssemblyName": "Blazorise", @@ -67662,7 +67662,7 @@ } }, { - "HashCode": 2058307263, + "HashCode": 1840642600, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalContent.ChildContent", "AssemblyName": "Blazorise", @@ -67682,7 +67682,7 @@ } }, { - "HashCode": 1212797718, + "HashCode": -1261014303, "Kind": "Components.Component", "Name": "Blazorise.ModalFooter", "AssemblyName": "Blazorise", @@ -67945,7 +67945,7 @@ } }, { - "HashCode": 105262561, + "HashCode": 1497694757, "Kind": "Components.Component", "Name": "Blazorise.ModalFooter", "AssemblyName": "Blazorise", @@ -68209,7 +68209,7 @@ } }, { - "HashCode": 369995400, + "HashCode": -275550925, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalFooter.ChildContent", "AssemblyName": "Blazorise", @@ -68228,7 +68228,7 @@ } }, { - "HashCode": -651744945, + "HashCode": -627986936, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalFooter.ChildContent", "AssemblyName": "Blazorise", @@ -68248,7 +68248,7 @@ } }, { - "HashCode": 1195125326, + "HashCode": -141839393, "Kind": "Components.Component", "Name": "Blazorise.ModalHeader", "AssemblyName": "Blazorise", @@ -68511,7 +68511,7 @@ } }, { - "HashCode": -1534197351, + "HashCode": -1871277630, "Kind": "Components.Component", "Name": "Blazorise.ModalHeader", "AssemblyName": "Blazorise", @@ -68775,7 +68775,7 @@ } }, { - "HashCode": 1725810007, + "HashCode": -47065558, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalHeader.ChildContent", "AssemblyName": "Blazorise", @@ -68794,7 +68794,7 @@ } }, { - "HashCode": 421661579, + "HashCode": 1205336256, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalHeader.ChildContent", "AssemblyName": "Blazorise", @@ -68814,7 +68814,7 @@ } }, { - "HashCode": -111426508, + "HashCode": -1255220383, "Kind": "Components.Component", "Name": "Blazorise.ModalTitle", "AssemblyName": "Blazorise", @@ -69087,7 +69087,7 @@ } }, { - "HashCode": -618053354, + "HashCode": 1313067368, "Kind": "Components.Component", "Name": "Blazorise.ModalTitle", "AssemblyName": "Blazorise", @@ -69361,7 +69361,7 @@ } }, { - "HashCode": -1066361654, + "HashCode": 1728095318, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalTitle.ChildContent", "AssemblyName": "Blazorise", @@ -69380,7 +69380,7 @@ } }, { - "HashCode": -1885586322, + "HashCode": -1230363819, "Kind": "Components.ChildContent", "Name": "Blazorise.ModalTitle.ChildContent", "AssemblyName": "Blazorise", @@ -69400,7 +69400,7 @@ } }, { - "HashCode": 1841078515, + "HashCode": 1232043754, "Kind": "Components.Component", "Name": "Blazorise._ModalBackdrop", "AssemblyName": "Blazorise", @@ -69653,7 +69653,7 @@ } }, { - "HashCode": 489099852, + "HashCode": 1172721006, "Kind": "Components.Component", "Name": "Blazorise._ModalBackdrop", "AssemblyName": "Blazorise", @@ -69907,7 +69907,7 @@ } }, { - "HashCode": 1056953979, + "HashCode": -1432795894, "Kind": "Components.Component", "Name": "Blazorise.NumericEdit", "AssemblyName": "Blazorise", @@ -70459,7 +70459,7 @@ } }, { - "HashCode": -987708847, + "HashCode": -2005378427, "Kind": "Components.Component", "Name": "Blazorise.NumericEdit", "AssemblyName": "Blazorise", @@ -71012,7 +71012,7 @@ } }, { - "HashCode": -1868323304, + "HashCode": -1951570887, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericEdit.Feedback", "AssemblyName": "Blazorise", @@ -71031,7 +71031,7 @@ } }, { - "HashCode": 2076617081, + "HashCode": 187485322, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericEdit.Feedback", "AssemblyName": "Blazorise", @@ -71051,7 +71051,7 @@ } }, { - "HashCode": -740709518, + "HashCode": 966634434, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericEdit.ChildContent", "AssemblyName": "Blazorise", @@ -71070,7 +71070,7 @@ } }, { - "HashCode": 530248508, + "HashCode": 1971522659, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericEdit.ChildContent", "AssemblyName": "Blazorise", @@ -71090,7 +71090,7 @@ } }, { - "HashCode": 452176180, + "HashCode": -1278514771, "Kind": "Components.Component", "Name": "Blazorise.NumericPicker", "AssemblyName": "Blazorise", @@ -71772,7 +71772,7 @@ } }, { - "HashCode": 661695490, + "HashCode": -1361587528, "Kind": "Components.Component", "Name": "Blazorise.NumericPicker", "AssemblyName": "Blazorise", @@ -72455,7 +72455,7 @@ } }, { - "HashCode": 1024102836, + "HashCode": -67512095, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericPicker.Feedback", "AssemblyName": "Blazorise", @@ -72474,7 +72474,7 @@ } }, { - "HashCode": -1950678465, + "HashCode": 1691505060, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericPicker.Feedback", "AssemblyName": "Blazorise", @@ -72494,7 +72494,7 @@ } }, { - "HashCode": -92784084, + "HashCode": -706052224, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericPicker.ChildContent", "AssemblyName": "Blazorise", @@ -72513,7 +72513,7 @@ } }, { - "HashCode": 215081689, + "HashCode": 1557296924, "Kind": "Components.ChildContent", "Name": "Blazorise.NumericPicker.ChildContent", "AssemblyName": "Blazorise", @@ -72533,7 +72533,7 @@ } }, { - "HashCode": -1883334213, + "HashCode": 1865707392, "Kind": "Components.Component", "Name": "Blazorise.Pagination", "AssemblyName": "Blazorise", @@ -72815,7 +72815,7 @@ } }, { - "HashCode": 1083465012, + "HashCode": -2056255056, "Kind": "Components.Component", "Name": "Blazorise.Pagination", "AssemblyName": "Blazorise", @@ -73098,7 +73098,7 @@ } }, { - "HashCode": -323214652, + "HashCode": -243577948, "Kind": "Components.ChildContent", "Name": "Blazorise.Pagination.ChildContent", "AssemblyName": "Blazorise", @@ -73117,7 +73117,7 @@ } }, { - "HashCode": -1094463970, + "HashCode": 982748088, "Kind": "Components.ChildContent", "Name": "Blazorise.Pagination.ChildContent", "AssemblyName": "Blazorise", @@ -73137,7 +73137,7 @@ } }, { - "HashCode": -1333612602, + "HashCode": 287222584, "Kind": "Components.Component", "Name": "Blazorise.PaginationItem", "AssemblyName": "Blazorise", @@ -73418,7 +73418,7 @@ } }, { - "HashCode": -301812597, + "HashCode": -1032205643, "Kind": "Components.Component", "Name": "Blazorise.PaginationItem", "AssemblyName": "Blazorise", @@ -73700,7 +73700,7 @@ } }, { - "HashCode": 1117436727, + "HashCode": -1898124968, "Kind": "Components.ChildContent", "Name": "Blazorise.PaginationItem.ChildContent", "AssemblyName": "Blazorise", @@ -73719,7 +73719,7 @@ } }, { - "HashCode": -697520308, + "HashCode": 1414728632, "Kind": "Components.ChildContent", "Name": "Blazorise.PaginationItem.ChildContent", "AssemblyName": "Blazorise", @@ -73739,7 +73739,7 @@ } }, { - "HashCode": 270050907, + "HashCode": 1908181785, "Kind": "Components.Component", "Name": "Blazorise.PaginationLink", "AssemblyName": "Blazorise", @@ -74021,7 +74021,7 @@ } }, { - "HashCode": 930865929, + "HashCode": -1137706063, "Kind": "Components.Component", "Name": "Blazorise.PaginationLink", "AssemblyName": "Blazorise", @@ -74304,7 +74304,7 @@ } }, { - "HashCode": 2117219329, + "HashCode": -691475096, "Kind": "Components.ChildContent", "Name": "Blazorise.PaginationLink.ChildContent", "AssemblyName": "Blazorise", @@ -74323,7 +74323,7 @@ } }, { - "HashCode": -750760735, + "HashCode": -1784757617, "Kind": "Components.ChildContent", "Name": "Blazorise.PaginationLink.ChildContent", "AssemblyName": "Blazorise", @@ -74343,7 +74343,7 @@ } }, { - "HashCode": 1146162384, + "HashCode": 1041822070, "Kind": "Components.Component", "Name": "Blazorise.PageProgress", "AssemblyName": "Blazorise", @@ -74623,7 +74623,7 @@ } }, { - "HashCode": -231939019, + "HashCode": -1864208272, "Kind": "Components.Component", "Name": "Blazorise.PageProgress", "AssemblyName": "Blazorise", @@ -74904,7 +74904,7 @@ } }, { - "HashCode": 1718421816, + "HashCode": 589466840, "Kind": "Components.Component", "Name": "Blazorise.PageProgressAlert", "AssemblyName": "Blazorise", @@ -75157,7 +75157,7 @@ } }, { - "HashCode": -1065066529, + "HashCode": -70252861, "Kind": "Components.Component", "Name": "Blazorise.PageProgressAlert", "AssemblyName": "Blazorise", @@ -75411,7 +75411,7 @@ } }, { - "HashCode": -554652882, + "HashCode": 1576877702, "Kind": "Components.Component", "Name": "Blazorise.Progress", "AssemblyName": "Blazorise", @@ -75737,7 +75737,7 @@ } }, { - "HashCode": 597626238, + "HashCode": 1844798685, "Kind": "Components.Component", "Name": "Blazorise.Progress", "AssemblyName": "Blazorise", @@ -76064,7 +76064,7 @@ } }, { - "HashCode": -2119596615, + "HashCode": 198490500, "Kind": "Components.ChildContent", "Name": "Blazorise.Progress.ChildContent", "AssemblyName": "Blazorise", @@ -76083,7 +76083,7 @@ } }, { - "HashCode": 162225502, + "HashCode": -1097102671, "Kind": "Components.ChildContent", "Name": "Blazorise.Progress.ChildContent", "AssemblyName": "Blazorise", @@ -76103,7 +76103,7 @@ } }, { - "HashCode": -785609176, + "HashCode": -2063680606, "Kind": "Components.Component", "Name": "Blazorise.ProgressBar", "AssemblyName": "Blazorise", @@ -76420,7 +76420,7 @@ } }, { - "HashCode": -871856202, + "HashCode": 871359165, "Kind": "Components.Component", "Name": "Blazorise.ProgressBar", "AssemblyName": "Blazorise", @@ -76738,7 +76738,7 @@ } }, { - "HashCode": 1026298414, + "HashCode": -1844858142, "Kind": "Components.ChildContent", "Name": "Blazorise.ProgressBar.ChildContent", "AssemblyName": "Blazorise", @@ -76757,7 +76757,7 @@ } }, { - "HashCode": 1592229248, + "HashCode": -1867478825, "Kind": "Components.ChildContent", "Name": "Blazorise.ProgressBar.ChildContent", "AssemblyName": "Blazorise", @@ -76777,7 +76777,7 @@ } }, { - "HashCode": -2122698204, + "HashCode": -1700225498, "Kind": "Components.Component", "Name": "Blazorise.Radio", "AssemblyName": "Blazorise", @@ -77253,7 +77253,7 @@ } }, { - "HashCode": -1648128194, + "HashCode": 1955405185, "Kind": "Components.Component", "Name": "Blazorise.Radio", "AssemblyName": "Blazorise", @@ -77730,7 +77730,7 @@ } }, { - "HashCode": 1768173323, + "HashCode": -997013232, "Kind": "Components.ChildContent", "Name": "Blazorise.Radio.Feedback", "AssemblyName": "Blazorise", @@ -77749,7 +77749,7 @@ } }, { - "HashCode": -1743547577, + "HashCode": -537411428, "Kind": "Components.ChildContent", "Name": "Blazorise.Radio.Feedback", "AssemblyName": "Blazorise", @@ -77769,7 +77769,7 @@ } }, { - "HashCode": -2122965612, + "HashCode": -1115733384, "Kind": "Components.ChildContent", "Name": "Blazorise.Radio.ChildContent", "AssemblyName": "Blazorise", @@ -77788,7 +77788,7 @@ } }, { - "HashCode": 1169373780, + "HashCode": -157492636, "Kind": "Components.ChildContent", "Name": "Blazorise.Radio.ChildContent", "AssemblyName": "Blazorise", @@ -77808,7 +77808,7 @@ } }, { - "HashCode": 1716262667, + "HashCode": -916040085, "Kind": "Components.Component", "Name": "Blazorise.RadioGroup", "AssemblyName": "Blazorise", @@ -78287,7 +78287,7 @@ } }, { - "HashCode": 1496261845, + "HashCode": -2137736808, "Kind": "Components.Component", "Name": "Blazorise.RadioGroup", "AssemblyName": "Blazorise", @@ -78767,7 +78767,7 @@ } }, { - "HashCode": 2048473243, + "HashCode": -978083692, "Kind": "Components.ChildContent", "Name": "Blazorise.RadioGroup.Feedback", "AssemblyName": "Blazorise", @@ -78786,7 +78786,7 @@ } }, { - "HashCode": -1864959053, + "HashCode": -1283079243, "Kind": "Components.ChildContent", "Name": "Blazorise.RadioGroup.Feedback", "AssemblyName": "Blazorise", @@ -78806,7 +78806,7 @@ } }, { - "HashCode": -1168005676, + "HashCode": -1882537686, "Kind": "Components.ChildContent", "Name": "Blazorise.RadioGroup.ChildContent", "AssemblyName": "Blazorise", @@ -78825,7 +78825,7 @@ } }, { - "HashCode": -709013472, + "HashCode": 276584123, "Kind": "Components.ChildContent", "Name": "Blazorise.RadioGroup.ChildContent", "AssemblyName": "Blazorise", @@ -78845,7 +78845,7 @@ } }, { - "HashCode": 325202607, + "HashCode": 230571469, "Kind": "Components.Component", "Name": "Blazorise.Rating", "AssemblyName": "Blazorise", @@ -79217,7 +79217,7 @@ } }, { - "HashCode": 360929492, + "HashCode": -602444523, "Kind": "Components.Component", "Name": "Blazorise.Rating", "AssemblyName": "Blazorise", @@ -79590,7 +79590,7 @@ } }, { - "HashCode": 1217378633, + "HashCode": 1040776640, "Kind": "Components.Component", "Name": "Blazorise.RatingItem", "AssemblyName": "Blazorise", @@ -79881,7 +79881,7 @@ } }, { - "HashCode": 278670633, + "HashCode": 673945783, "Kind": "Components.Component", "Name": "Blazorise.RatingItem", "AssemblyName": "Blazorise", @@ -80173,7 +80173,7 @@ } }, { - "HashCode": -1237927094, + "HashCode": -713664097, "Kind": "Components.Component", "Name": "Blazorise.Repeater", "AssemblyName": "Blazorise", @@ -80263,7 +80263,7 @@ } }, { - "HashCode": -28879956, + "HashCode": 1293068223, "Kind": "Components.Component", "Name": "Blazorise.Repeater", "AssemblyName": "Blazorise", @@ -80354,7 +80354,7 @@ } }, { - "HashCode": 851960209, + "HashCode": -1772219533, "Kind": "Components.ChildContent", "Name": "Blazorise.Repeater.ChildContent", "AssemblyName": "Blazorise", @@ -80385,7 +80385,7 @@ } }, { - "HashCode": 370883794, + "HashCode": 1183274625, "Kind": "Components.ChildContent", "Name": "Blazorise.Repeater.ChildContent", "AssemblyName": "Blazorise", @@ -80417,7 +80417,7 @@ } }, { - "HashCode": 97370931, + "HashCode": 2062146943, "Kind": "Components.Component", "Name": "Blazorise.Row", "AssemblyName": "Blazorise", @@ -80707,7 +80707,7 @@ } }, { - "HashCode": 1149291760, + "HashCode": 2011490142, "Kind": "Components.Component", "Name": "Blazorise.Row", "AssemblyName": "Blazorise", @@ -80998,7 +80998,7 @@ } }, { - "HashCode": -1917999552, + "HashCode": -707955450, "Kind": "Components.ChildContent", "Name": "Blazorise.Row.ChildContent", "AssemblyName": "Blazorise", @@ -81017,7 +81017,7 @@ } }, { - "HashCode": 1956717436, + "HashCode": -1460187501, "Kind": "Components.ChildContent", "Name": "Blazorise.Row.ChildContent", "AssemblyName": "Blazorise", @@ -81037,7 +81037,7 @@ } }, { - "HashCode": 1446204368, + "HashCode": 1966212711, "Kind": "Components.Component", "Name": "Blazorise.Select", "AssemblyName": "Blazorise", @@ -81537,7 +81537,7 @@ } }, { - "HashCode": 842756301, + "HashCode": 873094403, "Kind": "Components.Component", "Name": "Blazorise.Select", "AssemblyName": "Blazorise", @@ -82038,7 +82038,7 @@ } }, { - "HashCode": 54922207, + "HashCode": -488731772, "Kind": "Components.ChildContent", "Name": "Blazorise.Select.Feedback", "AssemblyName": "Blazorise", @@ -82057,7 +82057,7 @@ } }, { - "HashCode": -1634551601, + "HashCode": -1403852372, "Kind": "Components.ChildContent", "Name": "Blazorise.Select.Feedback", "AssemblyName": "Blazorise", @@ -82077,7 +82077,7 @@ } }, { - "HashCode": -155228759, + "HashCode": -147951682, "Kind": "Components.ChildContent", "Name": "Blazorise.Select.ChildContent", "AssemblyName": "Blazorise", @@ -82096,7 +82096,7 @@ } }, { - "HashCode": -1602111345, + "HashCode": -1395745307, "Kind": "Components.ChildContent", "Name": "Blazorise.Select.ChildContent", "AssemblyName": "Blazorise", @@ -82116,7 +82116,7 @@ } }, { - "HashCode": 547118667, + "HashCode": 1767661660, "Kind": "Components.Component", "Name": "Blazorise.SelectGroup", "AssemblyName": "Blazorise", @@ -82388,7 +82388,7 @@ } }, { - "HashCode": -765362707, + "HashCode": 372896542, "Kind": "Components.Component", "Name": "Blazorise.SelectGroup", "AssemblyName": "Blazorise", @@ -82661,7 +82661,7 @@ } }, { - "HashCode": -63319817, + "HashCode": -1922547052, "Kind": "Components.ChildContent", "Name": "Blazorise.SelectGroup.ChildContent", "AssemblyName": "Blazorise", @@ -82680,7 +82680,7 @@ } }, { - "HashCode": 1576192947, + "HashCode": -1868171541, "Kind": "Components.ChildContent", "Name": "Blazorise.SelectGroup.ChildContent", "AssemblyName": "Blazorise", @@ -82700,7 +82700,7 @@ } }, { - "HashCode": -1354284547, + "HashCode": 1318104629, "Kind": "Components.Component", "Name": "Blazorise.SelectItem", "AssemblyName": "Blazorise", @@ -83003,7 +83003,7 @@ } }, { - "HashCode": -1039644656, + "HashCode": -743506137, "Kind": "Components.Component", "Name": "Blazorise.SelectItem", "AssemblyName": "Blazorise", @@ -83307,7 +83307,7 @@ } }, { - "HashCode": -1970591749, + "HashCode": -318146322, "Kind": "Components.ChildContent", "Name": "Blazorise.SelectItem.ChildContent", "AssemblyName": "Blazorise", @@ -83326,7 +83326,7 @@ } }, { - "HashCode": 358847207, + "HashCode": -482207665, "Kind": "Components.ChildContent", "Name": "Blazorise.SelectItem.ChildContent", "AssemblyName": "Blazorise", @@ -83346,7 +83346,7 @@ } }, { - "HashCode": 976574968, + "HashCode": 1586999694, "Kind": "Components.Component", "Name": "Blazorise.Slider", "AssemblyName": "Blazorise", @@ -83818,7 +83818,7 @@ } }, { - "HashCode": -501481811, + "HashCode": -1038000315, "Kind": "Components.Component", "Name": "Blazorise.Slider", "AssemblyName": "Blazorise", @@ -84291,7 +84291,7 @@ } }, { - "HashCode": 851040570, + "HashCode": -651730748, "Kind": "Components.ChildContent", "Name": "Blazorise.Slider.Feedback", "AssemblyName": "Blazorise", @@ -84310,7 +84310,7 @@ } }, { - "HashCode": -1278054734, + "HashCode": -1872664225, "Kind": "Components.ChildContent", "Name": "Blazorise.Slider.Feedback", "AssemblyName": "Blazorise", @@ -84330,7 +84330,7 @@ } }, { - "HashCode": 1692681987, + "HashCode": -2009165708, "Kind": "Components.ChildContent", "Name": "Blazorise.Slider.ChildContent", "AssemblyName": "Blazorise", @@ -84349,7 +84349,7 @@ } }, { - "HashCode": -892426128, + "HashCode": -2044688775, "Kind": "Components.ChildContent", "Name": "Blazorise.Slider.ChildContent", "AssemblyName": "Blazorise", @@ -84369,7 +84369,7 @@ } }, { - "HashCode": -1532286230, + "HashCode": 1334605907, "Kind": "Components.Component", "Name": "Blazorise.Step", "AssemblyName": "Blazorise", @@ -84698,7 +84698,7 @@ } }, { - "HashCode": 262865856, + "HashCode": -680983297, "Kind": "Components.Component", "Name": "Blazorise.Step", "AssemblyName": "Blazorise", @@ -85028,7 +85028,7 @@ } }, { - "HashCode": 1821803564, + "HashCode": -1924062612, "Kind": "Components.ChildContent", "Name": "Blazorise.Step.Marker", "AssemblyName": "Blazorise", @@ -85047,7 +85047,7 @@ } }, { - "HashCode": -511987243, + "HashCode": -1085961775, "Kind": "Components.ChildContent", "Name": "Blazorise.Step.Marker", "AssemblyName": "Blazorise", @@ -85067,7 +85067,7 @@ } }, { - "HashCode": -1490310275, + "HashCode": -1061176103, "Kind": "Components.ChildContent", "Name": "Blazorise.Step.Caption", "AssemblyName": "Blazorise", @@ -85086,7 +85086,7 @@ } }, { - "HashCode": 1290499373, + "HashCode": -1209448425, "Kind": "Components.ChildContent", "Name": "Blazorise.Step.Caption", "AssemblyName": "Blazorise", @@ -85106,7 +85106,7 @@ } }, { - "HashCode": 989495670, + "HashCode": -2024253575, "Kind": "Components.ChildContent", "Name": "Blazorise.Step.ChildContent", "AssemblyName": "Blazorise", @@ -85125,7 +85125,7 @@ } }, { - "HashCode": 1672221054, + "HashCode": 107892621, "Kind": "Components.ChildContent", "Name": "Blazorise.Step.ChildContent", "AssemblyName": "Blazorise", @@ -85145,7 +85145,7 @@ } }, { - "HashCode": 1926170780, + "HashCode": 383783492, "Kind": "Components.Component", "Name": "Blazorise.StepPanel", "AssemblyName": "Blazorise", @@ -85417,7 +85417,7 @@ } }, { - "HashCode": -2129960457, + "HashCode": -1368584516, "Kind": "Components.Component", "Name": "Blazorise.StepPanel", "AssemblyName": "Blazorise", @@ -85690,7 +85690,7 @@ } }, { - "HashCode": 1440654233, + "HashCode": -1390491048, "Kind": "Components.ChildContent", "Name": "Blazorise.StepPanel.ChildContent", "AssemblyName": "Blazorise", @@ -85709,7 +85709,7 @@ } }, { - "HashCode": 239991839, + "HashCode": -997443166, "Kind": "Components.ChildContent", "Name": "Blazorise.StepPanel.ChildContent", "AssemblyName": "Blazorise", @@ -85729,7 +85729,7 @@ } }, { - "HashCode": -2055945304, + "HashCode": 1809319950, "Kind": "Components.Component", "Name": "Blazorise.Steps", "AssemblyName": "Blazorise", @@ -86031,7 +86031,7 @@ } }, { - "HashCode": -602267387, + "HashCode": 1758783517, "Kind": "Components.Component", "Name": "Blazorise.Steps", "AssemblyName": "Blazorise", @@ -86334,7 +86334,7 @@ } }, { - "HashCode": -69891427, + "HashCode": 681421401, "Kind": "Components.ChildContent", "Name": "Blazorise.Steps.Items", "AssemblyName": "Blazorise", @@ -86353,7 +86353,7 @@ } }, { - "HashCode": 1646563618, + "HashCode": 1706238868, "Kind": "Components.ChildContent", "Name": "Blazorise.Steps.Items", "AssemblyName": "Blazorise", @@ -86373,7 +86373,7 @@ } }, { - "HashCode": 798408506, + "HashCode": -411395784, "Kind": "Components.ChildContent", "Name": "Blazorise.Steps.Content", "AssemblyName": "Blazorise", @@ -86392,7 +86392,7 @@ } }, { - "HashCode": -1323677253, + "HashCode": -45819318, "Kind": "Components.ChildContent", "Name": "Blazorise.Steps.Content", "AssemblyName": "Blazorise", @@ -86412,7 +86412,7 @@ } }, { - "HashCode": -1049968826, + "HashCode": -500777816, "Kind": "Components.ChildContent", "Name": "Blazorise.Steps.ChildContent", "AssemblyName": "Blazorise", @@ -86431,7 +86431,7 @@ } }, { - "HashCode": 381288088, + "HashCode": 663228572, "Kind": "Components.ChildContent", "Name": "Blazorise.Steps.ChildContent", "AssemblyName": "Blazorise", @@ -86451,7 +86451,7 @@ } }, { - "HashCode": -1543110324, + "HashCode": -1726380577, "Kind": "Components.Component", "Name": "Blazorise.StepsContent", "AssemblyName": "Blazorise", @@ -86733,7 +86733,7 @@ } }, { - "HashCode": 1891032958, + "HashCode": -624502470, "Kind": "Components.Component", "Name": "Blazorise.StepsContent", "AssemblyName": "Blazorise", @@ -87016,7 +87016,7 @@ } }, { - "HashCode": 1687055924, + "HashCode": 964874283, "Kind": "Components.ChildContent", "Name": "Blazorise.StepsContent.ChildContent", "AssemblyName": "Blazorise", @@ -87035,7 +87035,7 @@ } }, { - "HashCode": -427365697, + "HashCode": 1829067661, "Kind": "Components.ChildContent", "Name": "Blazorise.StepsContent.ChildContent", "AssemblyName": "Blazorise", @@ -87055,7 +87055,7 @@ } }, { - "HashCode": 54541134, + "HashCode": -1876039048, "Kind": "Components.Component", "Name": "Blazorise.Switch", "AssemblyName": "Blazorise", @@ -87525,7 +87525,7 @@ } }, { - "HashCode": -230222937, + "HashCode": 663658322, "Kind": "Components.Component", "Name": "Blazorise.Switch", "AssemblyName": "Blazorise", @@ -87996,7 +87996,7 @@ } }, { - "HashCode": 215575040, + "HashCode": 80033250, "Kind": "Components.ChildContent", "Name": "Blazorise.Switch.Feedback", "AssemblyName": "Blazorise", @@ -88015,7 +88015,7 @@ } }, { - "HashCode": 460177117, + "HashCode": 309562099, "Kind": "Components.ChildContent", "Name": "Blazorise.Switch.Feedback", "AssemblyName": "Blazorise", @@ -88035,7 +88035,7 @@ } }, { - "HashCode": 1785105083, + "HashCode": 578558591, "Kind": "Components.ChildContent", "Name": "Blazorise.Switch.ChildContent", "AssemblyName": "Blazorise", @@ -88054,7 +88054,7 @@ } }, { - "HashCode": 170800934, + "HashCode": -1980747133, "Kind": "Components.ChildContent", "Name": "Blazorise.Switch.ChildContent", "AssemblyName": "Blazorise", @@ -88074,7 +88074,7 @@ } }, { - "HashCode": 1730639234, + "HashCode": -991653014, "Kind": "Components.Component", "Name": "Blazorise.Table", "AssemblyName": "Blazorise", @@ -88588,7 +88588,7 @@ } }, { - "HashCode": 19610493, + "HashCode": -918913219, "Kind": "Components.Component", "Name": "Blazorise.Table", "AssemblyName": "Blazorise", @@ -89103,7 +89103,7 @@ } }, { - "HashCode": -1816225225, + "HashCode": -92270245, "Kind": "Components.ChildContent", "Name": "Blazorise.Table.ChildContent", "AssemblyName": "Blazorise", @@ -89122,7 +89122,7 @@ } }, { - "HashCode": -1649409488, + "HashCode": 1765719549, "Kind": "Components.ChildContent", "Name": "Blazorise.Table.ChildContent", "AssemblyName": "Blazorise", @@ -89142,7 +89142,7 @@ } }, { - "HashCode": 1522749562, + "HashCode": -69779029, "Kind": "Components.Component", "Name": "Blazorise.TableBody", "AssemblyName": "Blazorise", @@ -89547,7 +89547,7 @@ } }, { - "HashCode": 2042795620, + "HashCode": 1685075824, "Kind": "Components.Component", "Name": "Blazorise.TableBody", "AssemblyName": "Blazorise", @@ -89953,7 +89953,7 @@ } }, { - "HashCode": 264299396, + "HashCode": -994773592, "Kind": "Components.ChildContent", "Name": "Blazorise.TableBody.ChildContent", "AssemblyName": "Blazorise", @@ -89972,7 +89972,7 @@ } }, { - "HashCode": 640460503, + "HashCode": -1618357931, "Kind": "Components.ChildContent", "Name": "Blazorise.TableBody.ChildContent", "AssemblyName": "Blazorise", @@ -89992,7 +89992,7 @@ } }, { - "HashCode": -1679822283, + "HashCode": 1769312695, "Kind": "Components.Component", "Name": "Blazorise.TableFooter", "AssemblyName": "Blazorise", @@ -90397,7 +90397,7 @@ } }, { - "HashCode": 1535314421, + "HashCode": 44514669, "Kind": "Components.Component", "Name": "Blazorise.TableFooter", "AssemblyName": "Blazorise", @@ -90803,7 +90803,7 @@ } }, { - "HashCode": 1468083793, + "HashCode": -15067025, "Kind": "Components.ChildContent", "Name": "Blazorise.TableFooter.ChildContent", "AssemblyName": "Blazorise", @@ -90822,7 +90822,7 @@ } }, { - "HashCode": 215331896, + "HashCode": 88636802, "Kind": "Components.ChildContent", "Name": "Blazorise.TableFooter.ChildContent", "AssemblyName": "Blazorise", @@ -90842,7 +90842,7 @@ } }, { - "HashCode": -2147131913, + "HashCode": -69800065, "Kind": "Components.Component", "Name": "Blazorise.TableHeader", "AssemblyName": "Blazorise", @@ -91257,7 +91257,7 @@ } }, { - "HashCode": -1010097390, + "HashCode": 1877301858, "Kind": "Components.Component", "Name": "Blazorise.TableHeader", "AssemblyName": "Blazorise", @@ -91673,7 +91673,7 @@ } }, { - "HashCode": -466826684, + "HashCode": -369246395, "Kind": "Components.ChildContent", "Name": "Blazorise.TableHeader.ChildContent", "AssemblyName": "Blazorise", @@ -91692,7 +91692,7 @@ } }, { - "HashCode": 1881615612, + "HashCode": -1007118528, "Kind": "Components.ChildContent", "Name": "Blazorise.TableHeader.ChildContent", "AssemblyName": "Blazorise", @@ -91712,7 +91712,7 @@ } }, { - "HashCode": 1589669738, + "HashCode": 1728911208, "Kind": "Components.Component", "Name": "Blazorise.TableHeaderCell", "AssemblyName": "Blazorise", @@ -92145,7 +92145,7 @@ } }, { - "HashCode": 693763818, + "HashCode": 2075646012, "Kind": "Components.Component", "Name": "Blazorise.TableHeaderCell", "AssemblyName": "Blazorise", @@ -92579,7 +92579,7 @@ } }, { - "HashCode": 1385113046, + "HashCode": 838008246, "Kind": "Components.ChildContent", "Name": "Blazorise.TableHeaderCell.ChildContent", "AssemblyName": "Blazorise", @@ -92598,7 +92598,7 @@ } }, { - "HashCode": -2129257294, + "HashCode": -1807292103, "Kind": "Components.ChildContent", "Name": "Blazorise.TableHeaderCell.ChildContent", "AssemblyName": "Blazorise", @@ -92618,7 +92618,7 @@ } }, { - "HashCode": 1932276439, + "HashCode": 330234715, "Kind": "Components.Component", "Name": "Blazorise.TableRow", "AssemblyName": "Blazorise", @@ -93071,7 +93071,7 @@ } }, { - "HashCode": 2015617838, + "HashCode": -578805544, "Kind": "Components.Component", "Name": "Blazorise.TableRow", "AssemblyName": "Blazorise", @@ -93525,7 +93525,7 @@ } }, { - "HashCode": -1858541475, + "HashCode": -1493373113, "Kind": "Components.ChildContent", "Name": "Blazorise.TableRow.ChildContent", "AssemblyName": "Blazorise", @@ -93544,7 +93544,7 @@ } }, { - "HashCode": 30724652, + "HashCode": 545643976, "Kind": "Components.ChildContent", "Name": "Blazorise.TableRow.ChildContent", "AssemblyName": "Blazorise", @@ -93564,7 +93564,7 @@ } }, { - "HashCode": -1486353269, + "HashCode": 1267310011, "Kind": "Components.Component", "Name": "Blazorise.TableRowCell", "AssemblyName": "Blazorise", @@ -94006,7 +94006,7 @@ } }, { - "HashCode": 1363024403, + "HashCode": -381536143, "Kind": "Components.Component", "Name": "Blazorise.TableRowCell", "AssemblyName": "Blazorise", @@ -94449,7 +94449,7 @@ } }, { - "HashCode": 354226344, + "HashCode": 24234845, "Kind": "Components.ChildContent", "Name": "Blazorise.TableRowCell.ChildContent", "AssemblyName": "Blazorise", @@ -94468,7 +94468,7 @@ } }, { - "HashCode": 1807788140, + "HashCode": 2085366230, "Kind": "Components.ChildContent", "Name": "Blazorise.TableRowCell.ChildContent", "AssemblyName": "Blazorise", @@ -94488,7 +94488,7 @@ } }, { - "HashCode": -732466707, + "HashCode": -1756494192, "Kind": "Components.Component", "Name": "Blazorise.TableRowHeader", "AssemblyName": "Blazorise", @@ -94903,7 +94903,7 @@ } }, { - "HashCode": -2072404016, + "HashCode": 1461975672, "Kind": "Components.Component", "Name": "Blazorise.TableRowHeader", "AssemblyName": "Blazorise", @@ -95319,7 +95319,7 @@ } }, { - "HashCode": -14536181, + "HashCode": 918478876, "Kind": "Components.ChildContent", "Name": "Blazorise.TableRowHeader.ChildContent", "AssemblyName": "Blazorise", @@ -95338,7 +95338,7 @@ } }, { - "HashCode": 661265710, + "HashCode": -614765490, "Kind": "Components.ChildContent", "Name": "Blazorise.TableRowHeader.ChildContent", "AssemblyName": "Blazorise", @@ -95358,7 +95358,7 @@ } }, { - "HashCode": 845951525, + "HashCode": -1787219965, "Kind": "Components.Component", "Name": "Blazorise.Tab", "AssemblyName": "Blazorise", @@ -95649,7 +95649,7 @@ } }, { - "HashCode": 1815971787, + "HashCode": 206418594, "Kind": "Components.Component", "Name": "Blazorise.Tab", "AssemblyName": "Blazorise", @@ -95941,7 +95941,7 @@ } }, { - "HashCode": 112583533, + "HashCode": 1825768887, "Kind": "Components.ChildContent", "Name": "Blazorise.Tab.ChildContent", "AssemblyName": "Blazorise", @@ -95960,7 +95960,7 @@ } }, { - "HashCode": 1544883867, + "HashCode": -1550178628, "Kind": "Components.ChildContent", "Name": "Blazorise.Tab.ChildContent", "AssemblyName": "Blazorise", @@ -95980,7 +95980,7 @@ } }, { - "HashCode": 71375879, + "HashCode": 377482756, "Kind": "Components.Component", "Name": "Blazorise.TabPanel", "AssemblyName": "Blazorise", @@ -96252,7 +96252,7 @@ } }, { - "HashCode": 1738382879, + "HashCode": 532034249, "Kind": "Components.Component", "Name": "Blazorise.TabPanel", "AssemblyName": "Blazorise", @@ -96525,7 +96525,7 @@ } }, { - "HashCode": -1852915621, + "HashCode": 731600234, "Kind": "Components.ChildContent", "Name": "Blazorise.TabPanel.ChildContent", "AssemblyName": "Blazorise", @@ -96544,7 +96544,7 @@ } }, { - "HashCode": 2028153547, + "HashCode": -912009539, "Kind": "Components.ChildContent", "Name": "Blazorise.TabPanel.ChildContent", "AssemblyName": "Blazorise", @@ -96564,7 +96564,7 @@ } }, { - "HashCode": 167552143, + "HashCode": -1537823629, "Kind": "Components.Component", "Name": "Blazorise.Tabs", "AssemblyName": "Blazorise", @@ -96922,7 +96922,7 @@ } }, { - "HashCode": -1329560065, + "HashCode": 1100631397, "Kind": "Components.Component", "Name": "Blazorise.Tabs", "AssemblyName": "Blazorise", @@ -97281,7 +97281,7 @@ } }, { - "HashCode": -803348452, + "HashCode": 1643091467, "Kind": "Components.ChildContent", "Name": "Blazorise.Tabs.Items", "AssemblyName": "Blazorise", @@ -97300,7 +97300,7 @@ } }, { - "HashCode": 1077309359, + "HashCode": -1622198684, "Kind": "Components.ChildContent", "Name": "Blazorise.Tabs.Items", "AssemblyName": "Blazorise", @@ -97320,7 +97320,7 @@ } }, { - "HashCode": -1895523591, + "HashCode": 813395892, "Kind": "Components.ChildContent", "Name": "Blazorise.Tabs.Content", "AssemblyName": "Blazorise", @@ -97339,7 +97339,7 @@ } }, { - "HashCode": -569417055, + "HashCode": 458001225, "Kind": "Components.ChildContent", "Name": "Blazorise.Tabs.Content", "AssemblyName": "Blazorise", @@ -97359,7 +97359,7 @@ } }, { - "HashCode": -1356467153, + "HashCode": 42623358, "Kind": "Components.ChildContent", "Name": "Blazorise.Tabs.ChildContent", "AssemblyName": "Blazorise", @@ -97378,7 +97378,7 @@ } }, { - "HashCode": -54669810, + "HashCode": -714608291, "Kind": "Components.ChildContent", "Name": "Blazorise.Tabs.ChildContent", "AssemblyName": "Blazorise", @@ -97398,7 +97398,7 @@ } }, { - "HashCode": 347579716, + "HashCode": -1354136770, "Kind": "Components.Component", "Name": "Blazorise.TabsContent", "AssemblyName": "Blazorise", @@ -97680,7 +97680,7 @@ } }, { - "HashCode": 509635980, + "HashCode": 2140399387, "Kind": "Components.Component", "Name": "Blazorise.TabsContent", "AssemblyName": "Blazorise", @@ -97963,7 +97963,7 @@ } }, { - "HashCode": -1129793642, + "HashCode": -1940630725, "Kind": "Components.ChildContent", "Name": "Blazorise.TabsContent.ChildContent", "AssemblyName": "Blazorise", @@ -97982,7 +97982,7 @@ } }, { - "HashCode": 560116161, + "HashCode": -2056874331, "Kind": "Components.ChildContent", "Name": "Blazorise.TabsContent.ChildContent", "AssemblyName": "Blazorise", @@ -98002,7 +98002,7 @@ } }, { - "HashCode": -717959739, + "HashCode": -11567698, "Kind": "Components.Component", "Name": "Blazorise.TextEdit", "AssemblyName": "Blazorise", @@ -98548,7 +98548,7 @@ } }, { - "HashCode": -1578199849, + "HashCode": 758712181, "Kind": "Components.Component", "Name": "Blazorise.TextEdit", "AssemblyName": "Blazorise", @@ -99095,7 +99095,7 @@ } }, { - "HashCode": -1202923498, + "HashCode": 716940383, "Kind": "Components.ChildContent", "Name": "Blazorise.TextEdit.Feedback", "AssemblyName": "Blazorise", @@ -99114,7 +99114,7 @@ } }, { - "HashCode": -306025181, + "HashCode": -362884429, "Kind": "Components.ChildContent", "Name": "Blazorise.TextEdit.Feedback", "AssemblyName": "Blazorise", @@ -99134,7 +99134,7 @@ } }, { - "HashCode": 781109268, + "HashCode": -534685857, "Kind": "Components.ChildContent", "Name": "Blazorise.TextEdit.ChildContent", "AssemblyName": "Blazorise", @@ -99153,7 +99153,7 @@ } }, { - "HashCode": 1980691236, + "HashCode": 1314903866, "Kind": "Components.ChildContent", "Name": "Blazorise.TextEdit.ChildContent", "AssemblyName": "Blazorise", @@ -99173,7 +99173,7 @@ } }, { - "HashCode": 1301317216, + "HashCode": 607865036, "Kind": "Components.Component", "Name": "Blazorise.ThemeProvider", "AssemblyName": "Blazorise", @@ -99220,7 +99220,7 @@ } }, { - "HashCode": -1159236437, + "HashCode": 44535179, "Kind": "Components.Component", "Name": "Blazorise.ThemeProvider", "AssemblyName": "Blazorise", @@ -99268,7 +99268,7 @@ } }, { - "HashCode": -543912687, + "HashCode": -636667021, "Kind": "Components.ChildContent", "Name": "Blazorise.ThemeProvider.ChildContent", "AssemblyName": "Blazorise", @@ -99287,7 +99287,7 @@ } }, { - "HashCode": 698519631, + "HashCode": -1584976688, "Kind": "Components.ChildContent", "Name": "Blazorise.ThemeProvider.ChildContent", "AssemblyName": "Blazorise", @@ -99307,7 +99307,7 @@ } }, { - "HashCode": 211350890, + "HashCode": -130345337, "Kind": "Components.Component", "Name": "Blazorise.TimeEdit", "AssemblyName": "Blazorise", @@ -99839,7 +99839,7 @@ } }, { - "HashCode": 1391001060, + "HashCode": 1191678737, "Kind": "Components.Component", "Name": "Blazorise.TimeEdit", "AssemblyName": "Blazorise", @@ -100372,7 +100372,7 @@ } }, { - "HashCode": -1059019260, + "HashCode": -2043757193, "Kind": "Components.ChildContent", "Name": "Blazorise.TimeEdit.Feedback", "AssemblyName": "Blazorise", @@ -100391,7 +100391,7 @@ } }, { - "HashCode": 1473838476, + "HashCode": 1310876367, "Kind": "Components.ChildContent", "Name": "Blazorise.TimeEdit.Feedback", "AssemblyName": "Blazorise", @@ -100411,7 +100411,7 @@ } }, { - "HashCode": 1244458733, + "HashCode": -1914916323, "Kind": "Components.ChildContent", "Name": "Blazorise.TimeEdit.ChildContent", "AssemblyName": "Blazorise", @@ -100430,7 +100430,7 @@ } }, { - "HashCode": -473719890, + "HashCode": -254184935, "Kind": "Components.ChildContent", "Name": "Blazorise.TimeEdit.ChildContent", "AssemblyName": "Blazorise", @@ -100450,7 +100450,7 @@ } }, { - "HashCode": -56077937, + "HashCode": 592429208, "Kind": "Components.Component", "Name": "Blazorise.TimePicker", "AssemblyName": "Blazorise", @@ -100991,7 +100991,7 @@ } }, { - "HashCode": -1871224629, + "HashCode": -1916646356, "Kind": "Components.Component", "Name": "Blazorise.TimePicker", "AssemblyName": "Blazorise", @@ -101533,7 +101533,7 @@ } }, { - "HashCode": 2117737859, + "HashCode": 1615434620, "Kind": "Components.ChildContent", "Name": "Blazorise.TimePicker.Feedback", "AssemblyName": "Blazorise", @@ -101552,7 +101552,7 @@ } }, { - "HashCode": 42620625, + "HashCode": -384917705, "Kind": "Components.ChildContent", "Name": "Blazorise.TimePicker.Feedback", "AssemblyName": "Blazorise", @@ -101572,7 +101572,7 @@ } }, { - "HashCode": -1575103284, + "HashCode": 895532476, "Kind": "Components.ChildContent", "Name": "Blazorise.TimePicker.ChildContent", "AssemblyName": "Blazorise", @@ -101591,7 +101591,7 @@ } }, { - "HashCode": -1953425331, + "HashCode": -1395192596, "Kind": "Components.ChildContent", "Name": "Blazorise.TimePicker.ChildContent", "AssemblyName": "Blazorise", @@ -101611,7 +101611,7 @@ } }, { - "HashCode": 1385265367, + "HashCode": -980526648, "Kind": "Components.Component", "Name": "Blazorise.Tooltip", "AssemblyName": "Blazorise", @@ -101966,7 +101966,7 @@ } }, { - "HashCode": 1073616913, + "HashCode": 1187144063, "Kind": "Components.Component", "Name": "Blazorise.Tooltip", "AssemblyName": "Blazorise", @@ -102322,7 +102322,7 @@ } }, { - "HashCode": 218169738, + "HashCode": 1661419520, "Kind": "Components.ChildContent", "Name": "Blazorise.Tooltip.ChildContent", "AssemblyName": "Blazorise", @@ -102341,7 +102341,7 @@ } }, { - "HashCode": -1635170559, + "HashCode": 2054245475, "Kind": "Components.ChildContent", "Name": "Blazorise.Tooltip.ChildContent", "AssemblyName": "Blazorise", @@ -102361,7 +102361,7 @@ } }, { - "HashCode": -1511986087, + "HashCode": 144383622, "Kind": "Components.Component", "Name": "Blazorise.Blockquote", "AssemblyName": "Blazorise", @@ -102642,7 +102642,7 @@ } }, { - "HashCode": -1036219877, + "HashCode": -605985429, "Kind": "Components.Component", "Name": "Blazorise.Blockquote", "AssemblyName": "Blazorise", @@ -102924,7 +102924,7 @@ } }, { - "HashCode": 1385609982, + "HashCode": 1829532194, "Kind": "Components.ChildContent", "Name": "Blazorise.Blockquote.ChildContent", "AssemblyName": "Blazorise", @@ -102943,7 +102943,7 @@ } }, { - "HashCode": -1759524853, + "HashCode": 267815519, "Kind": "Components.ChildContent", "Name": "Blazorise.Blockquote.ChildContent", "AssemblyName": "Blazorise", @@ -102963,7 +102963,7 @@ } }, { - "HashCode": -1396655777, + "HashCode": -1950064595, "Kind": "Components.Component", "Name": "Blazorise.BlockquoteFooter", "AssemblyName": "Blazorise", @@ -103244,7 +103244,7 @@ } }, { - "HashCode": -409529509, + "HashCode": 2097260496, "Kind": "Components.Component", "Name": "Blazorise.BlockquoteFooter", "AssemblyName": "Blazorise", @@ -103526,7 +103526,7 @@ } }, { - "HashCode": 86840250, + "HashCode": 163810359, "Kind": "Components.ChildContent", "Name": "Blazorise.BlockquoteFooter.ChildContent", "AssemblyName": "Blazorise", @@ -103545,7 +103545,7 @@ } }, { - "HashCode": -1645295173, + "HashCode": 2086436787, "Kind": "Components.ChildContent", "Name": "Blazorise.BlockquoteFooter.ChildContent", "AssemblyName": "Blazorise", @@ -103565,7 +103565,7 @@ } }, { - "HashCode": 1833787113, + "HashCode": 137416102, "Kind": "Components.Component", "Name": "Blazorise.Code", "AssemblyName": "Blazorise", @@ -103855,7 +103855,7 @@ } }, { - "HashCode": -439400213, + "HashCode": -1596863207, "Kind": "Components.Component", "Name": "Blazorise.Code", "AssemblyName": "Blazorise", @@ -104146,7 +104146,7 @@ } }, { - "HashCode": -1632748260, + "HashCode": -363231832, "Kind": "Components.ChildContent", "Name": "Blazorise.Code.ChildContent", "AssemblyName": "Blazorise", @@ -104165,7 +104165,7 @@ } }, { - "HashCode": 557320653, + "HashCode": 2043860011, "Kind": "Components.ChildContent", "Name": "Blazorise.Code.ChildContent", "AssemblyName": "Blazorise", @@ -104185,7 +104185,7 @@ } }, { - "HashCode": 89599842, + "HashCode": 36610177, "Kind": "Components.Component", "Name": "Blazorise.DescriptionList", "AssemblyName": "Blazorise", @@ -104475,7 +104475,7 @@ } }, { - "HashCode": 1575745671, + "HashCode": -1488441101, "Kind": "Components.Component", "Name": "Blazorise.DescriptionList", "AssemblyName": "Blazorise", @@ -104766,7 +104766,7 @@ } }, { - "HashCode": 795738770, + "HashCode": 69234250, "Kind": "Components.ChildContent", "Name": "Blazorise.DescriptionList.ChildContent", "AssemblyName": "Blazorise", @@ -104785,7 +104785,7 @@ } }, { - "HashCode": 1077036031, + "HashCode": -1102223576, "Kind": "Components.ChildContent", "Name": "Blazorise.DescriptionList.ChildContent", "AssemblyName": "Blazorise", @@ -104805,7 +104805,7 @@ } }, { - "HashCode": -1715589215, + "HashCode": -1525644961, "Kind": "Components.Component", "Name": "Blazorise.DescriptionListDefinition", "AssemblyName": "Blazorise", @@ -105095,7 +105095,7 @@ } }, { - "HashCode": 1006305935, + "HashCode": -874119698, "Kind": "Components.Component", "Name": "Blazorise.DescriptionListDefinition", "AssemblyName": "Blazorise", @@ -105386,7 +105386,7 @@ } }, { - "HashCode": 463153092, + "HashCode": -1859858191, "Kind": "Components.ChildContent", "Name": "Blazorise.DescriptionListDefinition.ChildContent", "AssemblyName": "Blazorise", @@ -105405,7 +105405,7 @@ } }, { - "HashCode": 881283964, + "HashCode": -1154956617, "Kind": "Components.ChildContent", "Name": "Blazorise.DescriptionListDefinition.ChildContent", "AssemblyName": "Blazorise", @@ -105425,7 +105425,7 @@ } }, { - "HashCode": -1217084392, + "HashCode": 2017333630, "Kind": "Components.Component", "Name": "Blazorise.DescriptionListTerm", "AssemblyName": "Blazorise", @@ -105715,7 +105715,7 @@ } }, { - "HashCode": -1790271785, + "HashCode": 405055602, "Kind": "Components.Component", "Name": "Blazorise.DescriptionListTerm", "AssemblyName": "Blazorise", @@ -106006,7 +106006,7 @@ } }, { - "HashCode": -497489779, + "HashCode": -1835936550, "Kind": "Components.ChildContent", "Name": "Blazorise.DescriptionListTerm.ChildContent", "AssemblyName": "Blazorise", @@ -106025,7 +106025,7 @@ } }, { - "HashCode": 756940325, + "HashCode": -189233941, "Kind": "Components.ChildContent", "Name": "Blazorise.DescriptionListTerm.ChildContent", "AssemblyName": "Blazorise", @@ -106045,7 +106045,7 @@ } }, { - "HashCode": -848629175, + "HashCode": 1262200829, "Kind": "Components.Component", "Name": "Blazorise.DisplayHeading", "AssemblyName": "Blazorise", @@ -106336,7 +106336,7 @@ } }, { - "HashCode": 1516619616, + "HashCode": -394560455, "Kind": "Components.Component", "Name": "Blazorise.DisplayHeading", "AssemblyName": "Blazorise", @@ -106628,7 +106628,7 @@ } }, { - "HashCode": -498755999, + "HashCode": -1806860640, "Kind": "Components.ChildContent", "Name": "Blazorise.DisplayHeading.ChildContent", "AssemblyName": "Blazorise", @@ -106647,7 +106647,7 @@ } }, { - "HashCode": 128809575, + "HashCode": -518016067, "Kind": "Components.ChildContent", "Name": "Blazorise.DisplayHeading.ChildContent", "AssemblyName": "Blazorise", @@ -106667,7 +106667,7 @@ } }, { - "HashCode": -1827788689, + "HashCode": 1470291985, "Kind": "Components.Component", "Name": "Blazorise.Heading", "AssemblyName": "Blazorise", @@ -106958,7 +106958,7 @@ } }, { - "HashCode": -1724886526, + "HashCode": 1949597207, "Kind": "Components.Component", "Name": "Blazorise.Heading", "AssemblyName": "Blazorise", @@ -107250,7 +107250,7 @@ } }, { - "HashCode": 1093258982, + "HashCode": -1224851234, "Kind": "Components.ChildContent", "Name": "Blazorise.Heading.ChildContent", "AssemblyName": "Blazorise", @@ -107269,7 +107269,7 @@ } }, { - "HashCode": -1854707792, + "HashCode": 1161047101, "Kind": "Components.ChildContent", "Name": "Blazorise.Heading.ChildContent", "AssemblyName": "Blazorise", @@ -107289,7 +107289,7 @@ } }, { - "HashCode": 97223719, + "HashCode": -1341265284, "Kind": "Components.Component", "Name": "Blazorise.OrderedList", "AssemblyName": "Blazorise", @@ -107589,7 +107589,7 @@ } }, { - "HashCode": -1369076316, + "HashCode": 407805008, "Kind": "Components.Component", "Name": "Blazorise.OrderedList", "AssemblyName": "Blazorise", @@ -107890,7 +107890,7 @@ } }, { - "HashCode": -404078542, + "HashCode": 334737562, "Kind": "Components.ChildContent", "Name": "Blazorise.OrderedList.ChildContent", "AssemblyName": "Blazorise", @@ -107909,7 +107909,7 @@ } }, { - "HashCode": 2133268216, + "HashCode": -1214438060, "Kind": "Components.ChildContent", "Name": "Blazorise.OrderedList.ChildContent", "AssemblyName": "Blazorise", @@ -107929,7 +107929,7 @@ } }, { - "HashCode": 1693087438, + "HashCode": -1672093220, "Kind": "Components.Component", "Name": "Blazorise.OrderedListItem", "AssemblyName": "Blazorise", @@ -108210,7 +108210,7 @@ } }, { - "HashCode": 1855429915, + "HashCode": 235758919, "Kind": "Components.Component", "Name": "Blazorise.OrderedListItem", "AssemblyName": "Blazorise", @@ -108492,7 +108492,7 @@ } }, { - "HashCode": 2051467946, + "HashCode": 575823731, "Kind": "Components.ChildContent", "Name": "Blazorise.OrderedListItem.ChildContent", "AssemblyName": "Blazorise", @@ -108511,7 +108511,7 @@ } }, { - "HashCode": 1805095187, + "HashCode": 2129566022, "Kind": "Components.ChildContent", "Name": "Blazorise.OrderedListItem.ChildContent", "AssemblyName": "Blazorise", @@ -108531,7 +108531,7 @@ } }, { - "HashCode": -1879706805, + "HashCode": 1019578034, "Kind": "Components.Component", "Name": "Blazorise.Paragraph", "AssemblyName": "Blazorise", @@ -108812,7 +108812,7 @@ } }, { - "HashCode": 1376810679, + "HashCode": 932897343, "Kind": "Components.Component", "Name": "Blazorise.Paragraph", "AssemblyName": "Blazorise", @@ -109094,7 +109094,7 @@ } }, { - "HashCode": 582038002, + "HashCode": 1347183747, "Kind": "Components.ChildContent", "Name": "Blazorise.Paragraph.ChildContent", "AssemblyName": "Blazorise", @@ -109113,7 +109113,7 @@ } }, { - "HashCode": -53634237, + "HashCode": -763519659, "Kind": "Components.ChildContent", "Name": "Blazorise.Paragraph.ChildContent", "AssemblyName": "Blazorise", @@ -109133,7 +109133,7 @@ } }, { - "HashCode": -1106600208, + "HashCode": 1869963314, "Kind": "Components.Component", "Name": "Blazorise.Text", "AssemblyName": "Blazorise", @@ -109414,7 +109414,7 @@ } }, { - "HashCode": -2136133689, + "HashCode": -1737610836, "Kind": "Components.Component", "Name": "Blazorise.Text", "AssemblyName": "Blazorise", @@ -109696,7 +109696,7 @@ } }, { - "HashCode": 136212821, + "HashCode": -282614444, "Kind": "Components.ChildContent", "Name": "Blazorise.Text.ChildContent", "AssemblyName": "Blazorise", @@ -109715,7 +109715,7 @@ } }, { - "HashCode": 1246786021, + "HashCode": 1691676821, "Kind": "Components.ChildContent", "Name": "Blazorise.Text.ChildContent", "AssemblyName": "Blazorise", @@ -109735,7 +109735,7 @@ } }, { - "HashCode": -1191547458, + "HashCode": -1142298493, "Kind": "Components.Component", "Name": "Blazorise.UnorderedList", "AssemblyName": "Blazorise", @@ -110025,7 +110025,7 @@ } }, { - "HashCode": 353603174, + "HashCode": 1039754367, "Kind": "Components.Component", "Name": "Blazorise.UnorderedList", "AssemblyName": "Blazorise", @@ -110316,7 +110316,7 @@ } }, { - "HashCode": 1119533494, + "HashCode": 220851460, "Kind": "Components.ChildContent", "Name": "Blazorise.UnorderedList.ChildContent", "AssemblyName": "Blazorise", @@ -110335,7 +110335,7 @@ } }, { - "HashCode": -2078352647, + "HashCode": -1870139059, "Kind": "Components.ChildContent", "Name": "Blazorise.UnorderedList.ChildContent", "AssemblyName": "Blazorise", @@ -110355,7 +110355,7 @@ } }, { - "HashCode": -702832788, + "HashCode": -1480903143, "Kind": "Components.Component", "Name": "Blazorise.UnorderedListItem", "AssemblyName": "Blazorise", @@ -110636,7 +110636,7 @@ } }, { - "HashCode": -1057039160, + "HashCode": 171527455, "Kind": "Components.Component", "Name": "Blazorise.UnorderedListItem", "AssemblyName": "Blazorise", @@ -110918,7 +110918,7 @@ } }, { - "HashCode": -679835798, + "HashCode": 1318866799, "Kind": "Components.ChildContent", "Name": "Blazorise.UnorderedListItem.ChildContent", "AssemblyName": "Blazorise", @@ -110937,7 +110937,7 @@ } }, { - "HashCode": -1885075765, + "HashCode": 1638510120, "Kind": "Components.ChildContent", "Name": "Blazorise.UnorderedListItem.ChildContent", "AssemblyName": "Blazorise", @@ -110957,7 +110957,7 @@ } }, { - "HashCode": -1336165466, + "HashCode": 1323526185, "Kind": "Components.Component", "Name": "Blazorise.Validation", "AssemblyName": "Blazorise", @@ -111054,7 +111054,7 @@ } }, { - "HashCode": 57489233, + "HashCode": -431371417, "Kind": "Components.Component", "Name": "Blazorise.Validation", "AssemblyName": "Blazorise", @@ -111152,7 +111152,7 @@ } }, { - "HashCode": -207228623, + "HashCode": 537898038, "Kind": "Components.ChildContent", "Name": "Blazorise.Validation.ChildContent", "AssemblyName": "Blazorise", @@ -111171,7 +111171,7 @@ } }, { - "HashCode": 2052931434, + "HashCode": -8061523, "Kind": "Components.ChildContent", "Name": "Blazorise.Validation.ChildContent", "AssemblyName": "Blazorise", @@ -111191,7 +111191,7 @@ } }, { - "HashCode": -1471905010, + "HashCode": -2015535251, "Kind": "Components.Component", "Name": "Blazorise.ValidationError", "AssemblyName": "Blazorise", @@ -111472,7 +111472,7 @@ } }, { - "HashCode": -457165094, + "HashCode": 371070176, "Kind": "Components.Component", "Name": "Blazorise.ValidationError", "AssemblyName": "Blazorise", @@ -111754,7 +111754,7 @@ } }, { - "HashCode": 151400181, + "HashCode": 702043761, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationError.ChildContent", "AssemblyName": "Blazorise", @@ -111773,7 +111773,7 @@ } }, { - "HashCode": -2088579649, + "HashCode": -1461390769, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationError.ChildContent", "AssemblyName": "Blazorise", @@ -111793,7 +111793,7 @@ } }, { - "HashCode": 1498451425, + "HashCode": -1680193389, "Kind": "Components.Component", "Name": "Blazorise.ValidationNone", "AssemblyName": "Blazorise", @@ -112056,7 +112056,7 @@ } }, { - "HashCode": -111773685, + "HashCode": -546474362, "Kind": "Components.Component", "Name": "Blazorise.ValidationNone", "AssemblyName": "Blazorise", @@ -112320,7 +112320,7 @@ } }, { - "HashCode": -18466808, + "HashCode": 748411959, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationNone.ChildContent", "AssemblyName": "Blazorise", @@ -112339,7 +112339,7 @@ } }, { - "HashCode": -873034356, + "HashCode": 1219973019, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationNone.ChildContent", "AssemblyName": "Blazorise", @@ -112359,7 +112359,7 @@ } }, { - "HashCode": 1260788659, + "HashCode": -282227797, "Kind": "Components.Component", "Name": "Blazorise.Validations", "AssemblyName": "Blazorise", @@ -112454,7 +112454,7 @@ } }, { - "HashCode": -101380124, + "HashCode": 874325908, "Kind": "Components.Component", "Name": "Blazorise.Validations", "AssemblyName": "Blazorise", @@ -112550,7 +112550,7 @@ } }, { - "HashCode": -335901951, + "HashCode": -1707880457, "Kind": "Components.ChildContent", "Name": "Blazorise.Validations.ChildContent", "AssemblyName": "Blazorise", @@ -112569,7 +112569,7 @@ } }, { - "HashCode": -1798679732, + "HashCode": -1706242785, "Kind": "Components.ChildContent", "Name": "Blazorise.Validations.ChildContent", "AssemblyName": "Blazorise", @@ -112589,7 +112589,7 @@ } }, { - "HashCode": -1971095020, + "HashCode": -2063592035, "Kind": "Components.Component", "Name": "Blazorise.ValidationSuccess", "AssemblyName": "Blazorise", @@ -112861,7 +112861,7 @@ } }, { - "HashCode": 1200623598, + "HashCode": -1332297812, "Kind": "Components.Component", "Name": "Blazorise.ValidationSuccess", "AssemblyName": "Blazorise", @@ -113134,7 +113134,7 @@ } }, { - "HashCode": -2059332479, + "HashCode": -1631718630, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationSuccess.ChildContent", "AssemblyName": "Blazorise", @@ -113153,7 +113153,7 @@ } }, { - "HashCode": -455539527, + "HashCode": 870287246, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationSuccess.ChildContent", "AssemblyName": "Blazorise", @@ -113173,7 +113173,7 @@ } }, { - "HashCode": 439674420, + "HashCode": 1449398496, "Kind": "Components.Component", "Name": "Blazorise.ValidationSummary", "AssemblyName": "Blazorise", @@ -113454,7 +113454,7 @@ } }, { - "HashCode": 1314580756, + "HashCode": 1233501897, "Kind": "Components.Component", "Name": "Blazorise.ValidationSummary", "AssemblyName": "Blazorise", @@ -113736,7 +113736,7 @@ } }, { - "HashCode": -988855343, + "HashCode": 1091445080, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationSummary.ChildContent", "AssemblyName": "Blazorise", @@ -113755,7 +113755,7 @@ } }, { - "HashCode": -33674161, + "HashCode": -590843439, "Kind": "Components.ChildContent", "Name": "Blazorise.ValidationSummary.ChildContent", "AssemblyName": "Blazorise", @@ -113775,7 +113775,7 @@ } }, { - "HashCode": -233377734, + "HashCode": 707845829, "Kind": "Components.Component", "Name": "Blazorise.Abbreviation", "AssemblyName": "Blazorise", @@ -114047,7 +114047,7 @@ } }, { - "HashCode": 651942788, + "HashCode": 710140171, "Kind": "Components.Component", "Name": "Blazorise.Abbreviation", "AssemblyName": "Blazorise", @@ -114320,7 +114320,7 @@ } }, { - "HashCode": 1454407805, + "HashCode": -1197516917, "Kind": "Components.ChildContent", "Name": "Blazorise.Abbreviation.ChildContent", "AssemblyName": "Blazorise", @@ -114339,7 +114339,7 @@ } }, { - "HashCode": 1005943678, + "HashCode": -1381202814, "Kind": "Components.ChildContent", "Name": "Blazorise.Abbreviation.ChildContent", "AssemblyName": "Blazorise", @@ -114359,7 +114359,7 @@ } }, { - "HashCode": 931020092, + "HashCode": -699207267, "Kind": "Components.Component", "Name": "Blazorise.Address", "AssemblyName": "Blazorise", @@ -114622,7 +114622,7 @@ } }, { - "HashCode": 373708176, + "HashCode": -1445899718, "Kind": "Components.Component", "Name": "Blazorise.Address", "AssemblyName": "Blazorise", @@ -114886,7 +114886,7 @@ } }, { - "HashCode": 660100993, + "HashCode": -518176400, "Kind": "Components.ChildContent", "Name": "Blazorise.Address.ChildContent", "AssemblyName": "Blazorise", @@ -114905,7 +114905,7 @@ } }, { - "HashCode": -532409375, + "HashCode": 3878321, "Kind": "Components.ChildContent", "Name": "Blazorise.Address.ChildContent", "AssemblyName": "Blazorise", @@ -114925,7 +114925,7 @@ } }, { - "HashCode": 34883081, + "HashCode": 1685765084, "Kind": "Components.Component", "Name": "Blazorise.Div", "AssemblyName": "Blazorise", @@ -115188,7 +115188,7 @@ } }, { - "HashCode": -1421271243, + "HashCode": 510103124, "Kind": "Components.Component", "Name": "Blazorise.Div", "AssemblyName": "Blazorise", @@ -115452,7 +115452,7 @@ } }, { - "HashCode": 16639255, + "HashCode": 1042975963, "Kind": "Components.ChildContent", "Name": "Blazorise.Div.ChildContent", "AssemblyName": "Blazorise", @@ -115471,7 +115471,7 @@ } }, { - "HashCode": -1374907056, + "HashCode": 993691553, "Kind": "Components.ChildContent", "Name": "Blazorise.Div.ChildContent", "AssemblyName": "Blazorise", @@ -115491,7 +115491,7 @@ } }, { - "HashCode": -933464211, + "HashCode": -774212345, "Kind": "Components.Component", "Name": "Blazorise.Small", "AssemblyName": "Blazorise", @@ -115754,7 +115754,7 @@ } }, { - "HashCode": 384171260, + "HashCode": -957777642, "Kind": "Components.Component", "Name": "Blazorise.Small", "AssemblyName": "Blazorise", @@ -116018,7 +116018,7 @@ } }, { - "HashCode": 2121913671, + "HashCode": 1056308587, "Kind": "Components.ChildContent", "Name": "Blazorise.Small.ChildContent", "AssemblyName": "Blazorise", @@ -116037,7 +116037,7 @@ } }, { - "HashCode": -2016463776, + "HashCode": -1866213781, "Kind": "Components.ChildContent", "Name": "Blazorise.Small.ChildContent", "AssemblyName": "Blazorise", @@ -116057,7 +116057,7 @@ } }, { - "HashCode": -1163844068, + "HashCode": -2097711624, "Kind": "Components.Component", "Name": "Blazorise.Span", "AssemblyName": "Blazorise", @@ -116320,7 +116320,7 @@ } }, { - "HashCode": 1643723432, + "HashCode": 1114175159, "Kind": "Components.Component", "Name": "Blazorise.Span", "AssemblyName": "Blazorise", @@ -116584,7 +116584,7 @@ } }, { - "HashCode": -1521800128, + "HashCode": 280122075, "Kind": "Components.ChildContent", "Name": "Blazorise.Span.ChildContent", "AssemblyName": "Blazorise", @@ -116603,7 +116603,7 @@ } }, { - "HashCode": 670244585, + "HashCode": 282335740, "Kind": "Components.ChildContent", "Name": "Blazorise.Span.ChildContent", "AssemblyName": "Blazorise", @@ -116623,7 +116623,7 @@ } }, { - "HashCode": 837511950, + "HashCode": -1260234508, "Kind": "Components.Component", "Name": "Blazorise.Strong", "AssemblyName": "Blazorise", @@ -116886,7 +116886,7 @@ } }, { - "HashCode": 356003468, + "HashCode": 1954901024, "Kind": "Components.Component", "Name": "Blazorise.Strong", "AssemblyName": "Blazorise", @@ -117150,7 +117150,7 @@ } }, { - "HashCode": -590110897, + "HashCode": 1611693282, "Kind": "Components.ChildContent", "Name": "Blazorise.Strong.ChildContent", "AssemblyName": "Blazorise", @@ -117169,7 +117169,7 @@ } }, { - "HashCode": 927073851, + "HashCode": -1046786306, "Kind": "Components.ChildContent", "Name": "Blazorise.Strong.ChildContent", "AssemblyName": "Blazorise", @@ -117189,7 +117189,7 @@ } }, { - "HashCode": -1128392470, + "HashCode": -534570560, "Kind": "Components.Component", "Name": "Blazorise._Imports", "AssemblyName": "Blazorise", @@ -117205,7 +117205,7 @@ } }, { - "HashCode": -1168642609, + "HashCode": -174572095, "Kind": "Components.Component", "Name": "Blazorise._Imports", "AssemblyName": "Blazorise", @@ -117222,7 +117222,7 @@ } }, { - "HashCode": 380476574, + "HashCode": -366948979, "Kind": "Components.Component", "Name": "Blazorise.TreeView.TreeView", "AssemblyName": "Blazorise.TreeView", @@ -117612,7 +117612,7 @@ } }, { - "HashCode": 1256411005, + "HashCode": 1755278504, "Kind": "Components.Component", "Name": "Blazorise.TreeView.TreeView", "AssemblyName": "Blazorise.TreeView", @@ -118003,7 +118003,7 @@ } }, { - "HashCode": -1878623800, + "HashCode": 1903088967, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView.TreeView.NodeContent", "AssemblyName": "Blazorise.TreeView", @@ -118034,7 +118034,7 @@ } }, { - "HashCode": 180714886, + "HashCode": 169399133, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView.TreeView.NodeContent", "AssemblyName": "Blazorise.TreeView", @@ -118066,7 +118066,7 @@ } }, { - "HashCode": -2021377751, + "HashCode": -468938125, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView.TreeView.ChildContent", "AssemblyName": "Blazorise.TreeView", @@ -118084,7 +118084,7 @@ } }, { - "HashCode": 1981376584, + "HashCode": 108045166, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView.TreeView.ChildContent", "AssemblyName": "Blazorise.TreeView", @@ -118103,7 +118103,7 @@ } }, { - "HashCode": -1549656799, + "HashCode": 1630215448, "Kind": "Components.Component", "Name": "Blazorise.TreeView._TreeViewNode", "AssemblyName": "Blazorise.TreeView", @@ -118474,7 +118474,7 @@ } }, { - "HashCode": -991582724, + "HashCode": -52308674, "Kind": "Components.Component", "Name": "Blazorise.TreeView._TreeViewNode", "AssemblyName": "Blazorise.TreeView", @@ -118846,7 +118846,7 @@ } }, { - "HashCode": 79069064, + "HashCode": -2014509997, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView._TreeViewNode.NodeContent", "AssemblyName": "Blazorise.TreeView", @@ -118876,7 +118876,7 @@ } }, { - "HashCode": 1951642030, + "HashCode": -446983753, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView._TreeViewNode.NodeContent", "AssemblyName": "Blazorise.TreeView", @@ -118907,7 +118907,7 @@ } }, { - "HashCode": 1382605838, + "HashCode": 1760347925, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView._TreeViewNode.ChildContent", "AssemblyName": "Blazorise.TreeView", @@ -118925,7 +118925,7 @@ } }, { - "HashCode": -1688724975, + "HashCode": -656229844, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView._TreeViewNode.ChildContent", "AssemblyName": "Blazorise.TreeView", @@ -118944,7 +118944,7 @@ } }, { - "HashCode": 1112479763, + "HashCode": -453222834, "Kind": "Components.Component", "Name": "Blazorise.TreeView._TreeViewNodeContent", "AssemblyName": "Blazorise.TreeView", @@ -119248,7 +119248,7 @@ } }, { - "HashCode": -1823213840, + "HashCode": 2128980975, "Kind": "Components.Component", "Name": "Blazorise.TreeView._TreeViewNodeContent", "AssemblyName": "Blazorise.TreeView", @@ -119553,7 +119553,7 @@ } }, { - "HashCode": 1208294483, + "HashCode": -1517838687, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView._TreeViewNodeContent.ChildContent", "AssemblyName": "Blazorise.TreeView", @@ -119571,7 +119571,7 @@ } }, { - "HashCode": -781030276, + "HashCode": 614702838, "Kind": "Components.ChildContent", "Name": "Blazorise.TreeView._TreeViewNodeContent.ChildContent", "AssemblyName": "Blazorise.TreeView", @@ -119590,7 +119590,7 @@ } }, { - "HashCode": 2080719638, + "HashCode": 1546081635, "Kind": "Components.Component", "Name": "Blazorise.TreeView._Imports", "AssemblyName": "Blazorise.TreeView", @@ -119606,7 +119606,7 @@ } }, { - "HashCode": -751418329, + "HashCode": -1051757053, "Kind": "Components.Component", "Name": "Blazorise.TreeView._Imports", "AssemblyName": "Blazorise.TreeView", @@ -119623,7 +119623,7 @@ } }, { - "HashCode": 2088753491, + "HashCode": 2121561041, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -119700,7 +119700,7 @@ } }, { - "HashCode": -285460159, + "HashCode": -942028738, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -119778,7 +119778,7 @@ } }, { - "HashCode": -1841287799, + "HashCode": 870285718, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -119809,7 +119809,7 @@ } }, { - "HashCode": 1261567463, + "HashCode": 1636259266, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -119841,7 +119841,7 @@ } }, { - "HashCode": 564803038, + "HashCode": -1872687544, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -119860,7 +119860,7 @@ } }, { - "HashCode": 64488153, + "HashCode": -1239197063, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -119880,7 +119880,7 @@ } }, { - "HashCode": 957765471, + "HashCode": -1165268587, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -119976,7 +119976,7 @@ } }, { - "HashCode": 296731362, + "HashCode": -669322022, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120073,7 +120073,7 @@ } }, { - "HashCode": -1136811465, + "HashCode": 414047906, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120104,7 +120104,7 @@ } }, { - "HashCode": -1893065220, + "HashCode": 290107177, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120136,7 +120136,7 @@ } }, { - "HashCode": -1890497689, + "HashCode": -79742699, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120167,7 +120167,7 @@ } }, { - "HashCode": -119869084, + "HashCode": -254196738, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120199,7 +120199,7 @@ } }, { - "HashCode": 629592123, + "HashCode": -262029594, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120230,7 +120230,7 @@ } }, { - "HashCode": 1094184863, + "HashCode": -963273423, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120262,7 +120262,7 @@ } }, { - "HashCode": 302961491, + "HashCode": -1822683243, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120281,7 +120281,7 @@ } }, { - "HashCode": 729181630, + "HashCode": -1773023910, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120301,7 +120301,7 @@ } }, { - "HashCode": -1027500165, + "HashCode": -420744837, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120329,7 +120329,7 @@ } }, { - "HashCode": 527343415, + "HashCode": 352834130, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120358,7 +120358,7 @@ } }, { - "HashCode": 1381714767, + "HashCode": -678370359, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120377,7 +120377,7 @@ } }, { - "HashCode": -163190136, + "HashCode": 961480804, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -120397,7 +120397,7 @@ } }, { - "HashCode": 2074442050, + "HashCode": -2050819389, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120466,7 +120466,7 @@ } }, { - "HashCode": -1220423194, + "HashCode": -580022195, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120536,7 +120536,7 @@ } }, { - "HashCode": -550707607, + "HashCode": 67732089, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120555,7 +120555,7 @@ } }, { - "HashCode": 1575267149, + "HashCode": 681559381, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120575,7 +120575,7 @@ } }, { - "HashCode": -1954602521, + "HashCode": 214661964, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120613,7 +120613,7 @@ } }, { - "HashCode": 1837006718, + "HashCode": 458739233, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120652,7 +120652,7 @@ } }, { - "HashCode": 678210953, + "HashCode": 668621198, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120690,7 +120690,7 @@ } }, { - "HashCode": 1106070228, + "HashCode": 870348651, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120729,7 +120729,7 @@ } }, { - "HashCode": 140819585, + "HashCode": 1782095982, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120748,7 +120748,7 @@ } }, { - "HashCode": 1924216065, + "HashCode": -1737958057, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120768,7 +120768,7 @@ } }, { - "HashCode": -434031713, + "HashCode": -440514318, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120806,7 +120806,7 @@ } }, { - "HashCode": -493010364, + "HashCode": 1257681064, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120845,7 +120845,7 @@ } }, { - "HashCode": 934572083, + "HashCode": 1681590557, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -120944,7 +120944,7 @@ } }, { - "HashCode": -1322055884, + "HashCode": 787163489, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -121044,7 +121044,7 @@ } }, { - "HashCode": -1586090514, + "HashCode": 161283511, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -121063,7 +121063,7 @@ } }, { - "HashCode": 1195226419, + "HashCode": 1803834916, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -121083,7 +121083,7 @@ } }, { - "HashCode": -1793974710, + "HashCode": -230643096, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -121114,7 +121114,7 @@ } }, { - "HashCode": 1939587532, + "HashCode": -1493384725, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -121146,7 +121146,7 @@ } }, { - "HashCode": 1550554141, + "HashCode": -1736308809, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -121165,7 +121165,7 @@ } }, { - "HashCode": -1223991453, + "HashCode": 899850367, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -121185,7 +121185,7 @@ } }, { - "HashCode": 1104312341, + "HashCode": -247575972, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -121202,7 +121202,7 @@ } }, { - "HashCode": 1778597382, + "HashCode": 1797472468, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -121220,7 +121220,7 @@ } }, { - "HashCode": 1816691600, + "HashCode": -452896661, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121316,7 +121316,7 @@ } }, { - "HashCode": 913197973, + "HashCode": 909864264, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121413,7 +121413,7 @@ } }, { - "HashCode": 1878232463, + "HashCode": 975716500, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121444,7 +121444,7 @@ } }, { - "HashCode": -843192619, + "HashCode": -661819599, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121476,7 +121476,7 @@ } }, { - "HashCode": -585987003, + "HashCode": 147494700, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121541,7 +121541,7 @@ } }, { - "HashCode": -1983288295, + "HashCode": 108741570, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121607,7 +121607,7 @@ } }, { - "HashCode": -1931598168, + "HashCode": 1376972735, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121706,7 +121706,7 @@ } }, { - "HashCode": -1332008517, + "HashCode": 1628593191, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121806,7 +121806,7 @@ } }, { - "HashCode": -807298437, + "HashCode": 97929097, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121844,7 +121844,7 @@ } }, { - "HashCode": 969456661, + "HashCode": 1477077814, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121883,7 +121883,7 @@ } }, { - "HashCode": -30655613, + "HashCode": -235102393, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -121972,7 +121972,7 @@ } }, { - "HashCode": 1319005411, + "HashCode": -1988918278, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122062,7 +122062,7 @@ } }, { - "HashCode": -435803919, + "HashCode": -979720853, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122121,7 +122121,7 @@ } }, { - "HashCode": -125058503, + "HashCode": -1733717885, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122181,7 +122181,7 @@ } }, { - "HashCode": 536807856, + "HashCode": 1601423437, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122280,7 +122280,7 @@ } }, { - "HashCode": -416165024, + "HashCode": -33891971, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122380,7 +122380,7 @@ } }, { - "HashCode": -1303307478, + "HashCode": -1862358816, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122399,7 +122399,7 @@ } }, { - "HashCode": -645684901, + "HashCode": 1340721914, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122419,7 +122419,7 @@ } }, { - "HashCode": 1651608839, + "HashCode": 1218017095, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122509,7 +122509,7 @@ } }, { - "HashCode": -1929732824, + "HashCode": 1767659935, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122600,7 +122600,7 @@ } }, { - "HashCode": -713146602, + "HashCode": 94145117, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122619,7 +122619,7 @@ } }, { - "HashCode": 428087852, + "HashCode": 970147423, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122639,7 +122639,7 @@ } }, { - "HashCode": -389858243, + "HashCode": 1292219308, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122704,7 +122704,7 @@ } }, { - "HashCode": -680808087, + "HashCode": 2113073277, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122770,7 +122770,7 @@ } }, { - "HashCode": -778606526, + "HashCode": 2032276109, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122835,7 +122835,7 @@ } }, { - "HashCode": 1322615178, + "HashCode": 470700206, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122901,7 +122901,7 @@ } }, { - "HashCode": 304263895, + "HashCode": -808078148, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -122951,7 +122951,7 @@ } }, { - "HashCode": 1821614454, + "HashCode": 1870394043, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123002,7 +123002,7 @@ } }, { - "HashCode": 628073309, + "HashCode": -724624780, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123039,7 +123039,7 @@ } }, { - "HashCode": 622227640, + "HashCode": 229133919, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123077,7 +123077,7 @@ } }, { - "HashCode": 2074783401, + "HashCode": 201683578, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123114,7 +123114,7 @@ } }, { - "HashCode": -1873270347, + "HashCode": -491504269, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123152,7 +123152,7 @@ } }, { - "HashCode": 1964802706, + "HashCode": -320305158, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123209,7 +123209,7 @@ } }, { - "HashCode": 557410031, + "HashCode": 1584667910, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123267,7 +123267,7 @@ } }, { - "HashCode": 100313067, + "HashCode": 1341932670, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123286,7 +123286,7 @@ } }, { - "HashCode": -1537976112, + "HashCode": 706159756, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123306,7 +123306,7 @@ } }, { - "HashCode": -95504226, + "HashCode": -117164107, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123335,7 +123335,7 @@ } }, { - "HashCode": -982749320, + "HashCode": -1341168096, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123365,7 +123365,7 @@ } }, { - "HashCode": -83413069, + "HashCode": -2104054415, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123384,7 +123384,7 @@ } }, { - "HashCode": 1752113130, + "HashCode": 1357447395, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123404,7 +123404,7 @@ } }, { - "HashCode": -2073163222, + "HashCode": -1575792696, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123421,7 +123421,7 @@ } }, { - "HashCode": 1488243984, + "HashCode": 420812537, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123439,7 +123439,7 @@ } }, { - "HashCode": -1234031506, + "HashCode": 1321991045, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123468,7 +123468,7 @@ } }, { - "HashCode": -922402604, + "HashCode": -1191411754, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123498,7 +123498,7 @@ } }, { - "HashCode": 1724498635, + "HashCode": 1811180338, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123517,7 +123517,7 @@ } }, { - "HashCode": 1501680976, + "HashCode": -223301154, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123537,7 +123537,7 @@ } }, { - "HashCode": 1986643943, + "HashCode": 1835549384, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123595,7 +123595,7 @@ } }, { - "HashCode": 555668296, + "HashCode": -916302333, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123654,7 +123654,7 @@ } }, { - "HashCode": 137001226, + "HashCode": -900378922, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123673,7 +123673,7 @@ } }, { - "HashCode": 2110695038, + "HashCode": 1503777522, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123693,7 +123693,7 @@ } }, { - "HashCode": -1548425071, + "HashCode": -660999574, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123724,7 +123724,7 @@ } }, { - "HashCode": -688997084, + "HashCode": -647490644, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123756,7 +123756,7 @@ } }, { - "HashCode": -734202640, + "HashCode": -373192234, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123868,7 +123868,7 @@ } }, { - "HashCode": 1822091595, + "HashCode": -2018436205, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -123981,7 +123981,7 @@ } }, { - "HashCode": 938293743, + "HashCode": -1831194480, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -124012,7 +124012,7 @@ } }, { - "HashCode": 1230735497, + "HashCode": -1481994524, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -124044,7 +124044,7 @@ } }, { - "HashCode": 1612279654, + "HashCode": 522733807, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -124075,7 +124075,7 @@ } }, { - "HashCode": 1871186175, + "HashCode": -71311032, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -124107,7 +124107,7 @@ } }, { - "HashCode": -1985035176, + "HashCode": 787809707, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -124138,7 +124138,7 @@ } }, { - "HashCode": 347259040, + "HashCode": 1676065419, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -124170,7 +124170,7 @@ } }, { - "HashCode": -992503577, + "HashCode": -683198775, "Kind": "Components.EventHandler", "Name": "onmouseenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124251,7 +124251,7 @@ } }, { - "HashCode": 1632723556, + "HashCode": 455788059, "Kind": "Components.EventHandler", "Name": "onmouseleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124332,7 +124332,7 @@ } }, { - "HashCode": -1455458786, + "HashCode": 1822964942, "Kind": "Components.EventHandler", "Name": "onfocus", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124413,7 +124413,7 @@ } }, { - "HashCode": -1219671159, + "HashCode": -1978956536, "Kind": "Components.EventHandler", "Name": "onblur", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124494,7 +124494,7 @@ } }, { - "HashCode": -1897957429, + "HashCode": 2098663487, "Kind": "Components.EventHandler", "Name": "onfocusin", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124575,7 +124575,7 @@ } }, { - "HashCode": -1105024584, + "HashCode": 1952572323, "Kind": "Components.EventHandler", "Name": "onfocusout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124656,7 +124656,7 @@ } }, { - "HashCode": 144773042, + "HashCode": -1405911945, "Kind": "Components.EventHandler", "Name": "onmouseover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124737,7 +124737,7 @@ } }, { - "HashCode": 232256089, + "HashCode": 1830746892, "Kind": "Components.EventHandler", "Name": "onmouseout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124818,7 +124818,7 @@ } }, { - "HashCode": -2136013936, + "HashCode": 85432456, "Kind": "Components.EventHandler", "Name": "onmousemove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124899,7 +124899,7 @@ } }, { - "HashCode": -645926154, + "HashCode": -1845981745, "Kind": "Components.EventHandler", "Name": "onmousedown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -124980,7 +124980,7 @@ } }, { - "HashCode": -924363582, + "HashCode": -85604012, "Kind": "Components.EventHandler", "Name": "onmouseup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125061,7 +125061,7 @@ } }, { - "HashCode": 1352353494, + "HashCode": 1185311411, "Kind": "Components.EventHandler", "Name": "onclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125142,7 +125142,7 @@ } }, { - "HashCode": -1286136701, + "HashCode": 474762248, "Kind": "Components.EventHandler", "Name": "ondblclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125223,7 +125223,7 @@ } }, { - "HashCode": -1704687914, + "HashCode": 525838261, "Kind": "Components.EventHandler", "Name": "onwheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125304,7 +125304,7 @@ } }, { - "HashCode": 1151067226, + "HashCode": 555744602, "Kind": "Components.EventHandler", "Name": "onmousewheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125385,7 +125385,7 @@ } }, { - "HashCode": -893040186, + "HashCode": -1110827480, "Kind": "Components.EventHandler", "Name": "oncontextmenu", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125466,7 +125466,7 @@ } }, { - "HashCode": -647949697, + "HashCode": 1153900832, "Kind": "Components.EventHandler", "Name": "ondrag", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125547,7 +125547,7 @@ } }, { - "HashCode": 487104583, + "HashCode": -469730145, "Kind": "Components.EventHandler", "Name": "ondragend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125628,7 +125628,7 @@ } }, { - "HashCode": -220400603, + "HashCode": 1762673760, "Kind": "Components.EventHandler", "Name": "ondragenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125709,7 +125709,7 @@ } }, { - "HashCode": 1736805982, + "HashCode": 1018278945, "Kind": "Components.EventHandler", "Name": "ondragleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125790,7 +125790,7 @@ } }, { - "HashCode": 789953174, + "HashCode": -1487846988, "Kind": "Components.EventHandler", "Name": "ondragover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125871,7 +125871,7 @@ } }, { - "HashCode": 2138233427, + "HashCode": -436624430, "Kind": "Components.EventHandler", "Name": "ondragstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -125952,7 +125952,7 @@ } }, { - "HashCode": 687536228, + "HashCode": -800404629, "Kind": "Components.EventHandler", "Name": "ondrop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126033,7 +126033,7 @@ } }, { - "HashCode": 931158270, + "HashCode": 342604440, "Kind": "Components.EventHandler", "Name": "onkeydown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126114,7 +126114,7 @@ } }, { - "HashCode": 1628266960, + "HashCode": -954429201, "Kind": "Components.EventHandler", "Name": "onkeyup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126195,7 +126195,7 @@ } }, { - "HashCode": -1485912477, + "HashCode": -843110707, "Kind": "Components.EventHandler", "Name": "onkeypress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126276,7 +126276,7 @@ } }, { - "HashCode": -111881939, + "HashCode": 1809610246, "Kind": "Components.EventHandler", "Name": "onchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126357,7 +126357,7 @@ } }, { - "HashCode": 1404811942, + "HashCode": -2070905338, "Kind": "Components.EventHandler", "Name": "oninput", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126438,7 +126438,7 @@ } }, { - "HashCode": -1854526549, + "HashCode": -589027738, "Kind": "Components.EventHandler", "Name": "oninvalid", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126519,7 +126519,7 @@ } }, { - "HashCode": -550581929, + "HashCode": -934747538, "Kind": "Components.EventHandler", "Name": "onreset", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126600,7 +126600,7 @@ } }, { - "HashCode": 1004422511, + "HashCode": -966060263, "Kind": "Components.EventHandler", "Name": "onselect", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126681,7 +126681,7 @@ } }, { - "HashCode": -2131390833, + "HashCode": 765711152, "Kind": "Components.EventHandler", "Name": "onselectstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126762,7 +126762,7 @@ } }, { - "HashCode": 975788213, + "HashCode": -1256077711, "Kind": "Components.EventHandler", "Name": "onselectionchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126843,7 +126843,7 @@ } }, { - "HashCode": 1399186206, + "HashCode": 2069995678, "Kind": "Components.EventHandler", "Name": "onsubmit", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -126924,7 +126924,7 @@ } }, { - "HashCode": 1542816632, + "HashCode": -2048886391, "Kind": "Components.EventHandler", "Name": "onbeforecopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127005,7 +127005,7 @@ } }, { - "HashCode": 627419292, + "HashCode": 1833103653, "Kind": "Components.EventHandler", "Name": "onbeforecut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127086,7 +127086,7 @@ } }, { - "HashCode": -834717405, + "HashCode": 991014563, "Kind": "Components.EventHandler", "Name": "onbeforepaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127167,7 +127167,7 @@ } }, { - "HashCode": -1612486350, + "HashCode": 1910891945, "Kind": "Components.EventHandler", "Name": "oncopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127248,7 +127248,7 @@ } }, { - "HashCode": -76234498, + "HashCode": 1369760254, "Kind": "Components.EventHandler", "Name": "oncut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127329,7 +127329,7 @@ } }, { - "HashCode": 974993167, + "HashCode": 911254126, "Kind": "Components.EventHandler", "Name": "onpaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127410,7 +127410,7 @@ } }, { - "HashCode": 1828344384, + "HashCode": -1966108578, "Kind": "Components.EventHandler", "Name": "ontouchcancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127491,7 +127491,7 @@ } }, { - "HashCode": -1983294622, + "HashCode": 1294984848, "Kind": "Components.EventHandler", "Name": "ontouchend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127572,7 +127572,7 @@ } }, { - "HashCode": 88501343, + "HashCode": 393631529, "Kind": "Components.EventHandler", "Name": "ontouchmove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127653,7 +127653,7 @@ } }, { - "HashCode": 1282226222, + "HashCode": 1590722041, "Kind": "Components.EventHandler", "Name": "ontouchstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127734,7 +127734,7 @@ } }, { - "HashCode": 1178587775, + "HashCode": 1938350536, "Kind": "Components.EventHandler", "Name": "ontouchenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127815,7 +127815,7 @@ } }, { - "HashCode": 27509116, + "HashCode": 2097539291, "Kind": "Components.EventHandler", "Name": "ontouchleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127896,7 +127896,7 @@ } }, { - "HashCode": -314628499, + "HashCode": 2059726250, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -127977,7 +127977,7 @@ } }, { - "HashCode": 1958635349, + "HashCode": 34005751, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128058,7 +128058,7 @@ } }, { - "HashCode": 253605707, + "HashCode": -633726571, "Kind": "Components.EventHandler", "Name": "onpointercancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128139,7 +128139,7 @@ } }, { - "HashCode": -1201190938, + "HashCode": 1426844755, "Kind": "Components.EventHandler", "Name": "onpointerdown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128220,7 +128220,7 @@ } }, { - "HashCode": -216342770, + "HashCode": -1580217900, "Kind": "Components.EventHandler", "Name": "onpointerenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128301,7 +128301,7 @@ } }, { - "HashCode": -885206806, + "HashCode": 1017387014, "Kind": "Components.EventHandler", "Name": "onpointerleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128382,7 +128382,7 @@ } }, { - "HashCode": 1253825365, + "HashCode": -1296559441, "Kind": "Components.EventHandler", "Name": "onpointermove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128463,7 +128463,7 @@ } }, { - "HashCode": -1015676737, + "HashCode": 1518406787, "Kind": "Components.EventHandler", "Name": "onpointerout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128544,7 +128544,7 @@ } }, { - "HashCode": 776887055, + "HashCode": 1668495678, "Kind": "Components.EventHandler", "Name": "onpointerover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128625,7 +128625,7 @@ } }, { - "HashCode": -1205839630, + "HashCode": -1089216979, "Kind": "Components.EventHandler", "Name": "onpointerup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128706,7 +128706,7 @@ } }, { - "HashCode": -92313849, + "HashCode": -330927127, "Kind": "Components.EventHandler", "Name": "oncanplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128787,7 +128787,7 @@ } }, { - "HashCode": 230418742, + "HashCode": -1388687558, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128868,7 +128868,7 @@ } }, { - "HashCode": -624291239, + "HashCode": 1263324440, "Kind": "Components.EventHandler", "Name": "oncuechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -128949,7 +128949,7 @@ } }, { - "HashCode": -1743702958, + "HashCode": 1356011896, "Kind": "Components.EventHandler", "Name": "ondurationchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129030,7 +129030,7 @@ } }, { - "HashCode": -270228433, + "HashCode": -370511783, "Kind": "Components.EventHandler", "Name": "onemptied", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129111,7 +129111,7 @@ } }, { - "HashCode": 278720586, + "HashCode": 2102102003, "Kind": "Components.EventHandler", "Name": "onpause", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129192,7 +129192,7 @@ } }, { - "HashCode": 2092562487, + "HashCode": -524181067, "Kind": "Components.EventHandler", "Name": "onplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129273,7 +129273,7 @@ } }, { - "HashCode": -1959126320, + "HashCode": 1371574340, "Kind": "Components.EventHandler", "Name": "onplaying", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129354,7 +129354,7 @@ } }, { - "HashCode": 291175453, + "HashCode": 1484489153, "Kind": "Components.EventHandler", "Name": "onratechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129435,7 +129435,7 @@ } }, { - "HashCode": -1064138054, + "HashCode": -1235093949, "Kind": "Components.EventHandler", "Name": "onseeked", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129516,7 +129516,7 @@ } }, { - "HashCode": -620385784, + "HashCode": -1959094854, "Kind": "Components.EventHandler", "Name": "onseeking", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129597,7 +129597,7 @@ } }, { - "HashCode": -2057545467, + "HashCode": -693009894, "Kind": "Components.EventHandler", "Name": "onstalled", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129678,7 +129678,7 @@ } }, { - "HashCode": -265956090, + "HashCode": 1678998956, "Kind": "Components.EventHandler", "Name": "onstop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129759,7 +129759,7 @@ } }, { - "HashCode": -126992563, + "HashCode": -1495657214, "Kind": "Components.EventHandler", "Name": "onsuspend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129840,7 +129840,7 @@ } }, { - "HashCode": -1024427634, + "HashCode": 1720472196, "Kind": "Components.EventHandler", "Name": "ontimeupdate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -129921,7 +129921,7 @@ } }, { - "HashCode": -789450281, + "HashCode": 1839503680, "Kind": "Components.EventHandler", "Name": "onvolumechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130002,7 +130002,7 @@ } }, { - "HashCode": -1881557604, + "HashCode": 1762377468, "Kind": "Components.EventHandler", "Name": "onwaiting", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130083,7 +130083,7 @@ } }, { - "HashCode": 436901285, + "HashCode": -633870182, "Kind": "Components.EventHandler", "Name": "onloadstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130164,7 +130164,7 @@ } }, { - "HashCode": -550113822, + "HashCode": -441956873, "Kind": "Components.EventHandler", "Name": "ontimeout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130245,7 +130245,7 @@ } }, { - "HashCode": -1293624112, + "HashCode": 554125012, "Kind": "Components.EventHandler", "Name": "onabort", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130326,7 +130326,7 @@ } }, { - "HashCode": 2062677949, + "HashCode": 179902494, "Kind": "Components.EventHandler", "Name": "onload", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130407,7 +130407,7 @@ } }, { - "HashCode": 512232319, + "HashCode": -892431445, "Kind": "Components.EventHandler", "Name": "onloadend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130488,7 +130488,7 @@ } }, { - "HashCode": -1312758626, + "HashCode": -2066191922, "Kind": "Components.EventHandler", "Name": "onprogress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130569,7 +130569,7 @@ } }, { - "HashCode": 780448549, + "HashCode": 1434708818, "Kind": "Components.EventHandler", "Name": "onerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130650,7 +130650,7 @@ } }, { - "HashCode": -1637700696, + "HashCode": 1920250938, "Kind": "Components.EventHandler", "Name": "onactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130731,7 +130731,7 @@ } }, { - "HashCode": 911151184, + "HashCode": 553102247, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130812,7 +130812,7 @@ } }, { - "HashCode": -416220658, + "HashCode": 862502520, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130893,7 +130893,7 @@ } }, { - "HashCode": 869411420, + "HashCode": -744369255, "Kind": "Components.EventHandler", "Name": "ondeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -130974,7 +130974,7 @@ } }, { - "HashCode": 563502130, + "HashCode": -1021682015, "Kind": "Components.EventHandler", "Name": "onended", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131055,7 +131055,7 @@ } }, { - "HashCode": -1469830991, + "HashCode": -1414935851, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131136,7 +131136,7 @@ } }, { - "HashCode": -1458933722, + "HashCode": -341066944, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131217,7 +131217,7 @@ } }, { - "HashCode": -445532064, + "HashCode": -500292830, "Kind": "Components.EventHandler", "Name": "onloadeddata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131298,7 +131298,7 @@ } }, { - "HashCode": 1594651464, + "HashCode": 1780620709, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131379,7 +131379,7 @@ } }, { - "HashCode": 483344873, + "HashCode": -2096151796, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131460,7 +131460,7 @@ } }, { - "HashCode": -529187560, + "HashCode": 569803856, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131541,7 +131541,7 @@ } }, { - "HashCode": -700644812, + "HashCode": -1302548938, "Kind": "Components.EventHandler", "Name": "onreadystatechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131622,7 +131622,7 @@ } }, { - "HashCode": 187450178, + "HashCode": -141027798, "Kind": "Components.EventHandler", "Name": "onscroll", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131703,7 +131703,7 @@ } }, { - "HashCode": 376412505, + "HashCode": -259226445, "Kind": "Components.EventHandler", "Name": "ontoggle", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131784,7 +131784,7 @@ } }, { - "HashCode": 647124010, + "HashCode": -480188354, "Kind": "Components.Splat", "Name": "Attributes", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -131823,7 +131823,7 @@ } }, { - "HashCode": -411685074, + "HashCode": -1176704614, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.Razor", @@ -132138,7 +132138,7 @@ } }, { - "HashCode": 728335900, + "HashCode": -373695205, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -132335,7 +132335,7 @@ } }, { - "HashCode": -600254123, + "HashCode": -2096945070, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -132462,7 +132462,7 @@ } }, { - "HashCode": 1865816951, + "HashCode": -1438690741, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -132517,7 +132517,7 @@ } }, { - "HashCode": 1838446155, + "HashCode": 1703108490, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -132649,7 +132649,7 @@ } }, { - "HashCode": -733793020, + "HashCode": 1813971304, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -132695,7 +132695,7 @@ } }, { - "HashCode": -1286140662, + "HashCode": -184139320, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133112,7 +133112,7 @@ } }, { - "HashCode": -1310378058, + "HashCode": 1901869433, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133214,7 +133214,7 @@ } }, { - "HashCode": 489831468, + "HashCode": 1929199375, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133260,7 +133260,7 @@ } }, { - "HashCode": 943452226, + "HashCode": -584436509, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133330,7 +133330,7 @@ } }, { - "HashCode": -1348602050, + "HashCode": -106899279, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133363,7 +133363,7 @@ } }, { - "HashCode": -1267793740, + "HashCode": 1681061380, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133559,7 +133559,7 @@ } }, { - "HashCode": 1865443567, + "HashCode": -1712859548, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133587,7 +133587,7 @@ } }, { - "HashCode": -1445164754, + "HashCode": 1815542656, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133668,7 +133668,7 @@ } }, { - "HashCode": -899508804, + "HashCode": -1152758685, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133697,7 +133697,7 @@ } }, { - "HashCode": -430872275, + "HashCode": 1529966198, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133850,7 +133850,7 @@ } }, { - "HashCode": 550809393, + "HashCode": 1315961642, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133909,7 +133909,7 @@ } }, { - "HashCode": -1230523400, + "HashCode": 47917688, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133951,7 +133951,7 @@ } }, { - "HashCode": -1065892366, + "HashCode": 1609906682, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -133984,7 +133984,7 @@ } }, { - "HashCode": -1582921270, + "HashCode": 528336840, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -134018,7 +134018,7 @@ } }, { - "HashCode": -171839904, + "HashCode": -2058054106, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134087,7 +134087,7 @@ } }, { - "HashCode": 1556219031, + "HashCode": -2135097898, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134165,7 +134165,7 @@ } }, { - "HashCode": -320775153, + "HashCode": 579465856, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134243,7 +134243,7 @@ } }, { - "HashCode": 813261350, + "HashCode": -623457727, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134327,7 +134327,7 @@ } }, { - "HashCode": 1116212483, + "HashCode": -1125853402, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134411,7 +134411,7 @@ } }, { - "HashCode": 2062022685, + "HashCode": 1176931447, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134495,7 +134495,7 @@ } }, { - "HashCode": 361547141, + "HashCode": 1844188249, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134579,7 +134579,7 @@ } }, { - "HashCode": -692971520, + "HashCode": 1945775560, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134663,7 +134663,7 @@ } }, { - "HashCode": 1955262561, + "HashCode": -1532613609, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134747,7 +134747,7 @@ } }, { - "HashCode": 143572276, + "HashCode": 1023557350, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134831,7 +134831,7 @@ } }, { - "HashCode": 1374269653, + "HashCode": -38403411, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134915,7 +134915,7 @@ } }, { - "HashCode": -866282786, + "HashCode": -2065697021, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -134999,7 +134999,7 @@ } }, { - "HashCode": -2114664683, + "HashCode": 2033728673, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -135083,7 +135083,7 @@ } }, { - "HashCode": -220970568, + "HashCode": 644817947, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -135167,7 +135167,7 @@ } }, { - "HashCode": -91175305, + "HashCode": -228631528, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -135251,7 +135251,7 @@ } }, { - "HashCode": 240592955, + "HashCode": -1232737878, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -135329,7 +135329,7 @@ } }, { - "HashCode": 2080411166, + "HashCode": 1207055183, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -135407,7 +135407,7 @@ } }, { - "HashCode": 904028557, + "HashCode": 1282586490, "Kind": "Components.Bind", "Name": "Blazorise.Alert", "AssemblyName": "Blazorise", @@ -135447,7 +135447,7 @@ } }, { - "HashCode": 1698189510, + "HashCode": -446799382, "Kind": "Components.Bind", "Name": "Blazorise.Alert", "AssemblyName": "Blazorise", @@ -135488,7 +135488,7 @@ } }, { - "HashCode": 1216802469, + "HashCode": -1373421878, "Kind": "Components.Bind", "Name": "Blazorise.Bar", "AssemblyName": "Blazorise", @@ -135528,7 +135528,7 @@ } }, { - "HashCode": 380132634, + "HashCode": 301408562, "Kind": "Components.Bind", "Name": "Blazorise.Bar", "AssemblyName": "Blazorise", @@ -135569,7 +135569,7 @@ } }, { - "HashCode": 1910186426, + "HashCode": -1331553308, "Kind": "Components.Bind", "Name": "Blazorise.BarDropdown", "AssemblyName": "Blazorise", @@ -135609,7 +135609,7 @@ } }, { - "HashCode": 1861206801, + "HashCode": 404493447, "Kind": "Components.Bind", "Name": "Blazorise.BarDropdown", "AssemblyName": "Blazorise", @@ -135650,7 +135650,7 @@ } }, { - "HashCode": -161929964, + "HashCode": 1651337228, "Kind": "Components.Bind", "Name": "Blazorise.Carousel", "AssemblyName": "Blazorise", @@ -135690,7 +135690,7 @@ } }, { - "HashCode": -1598548693, + "HashCode": 797193229, "Kind": "Components.Bind", "Name": "Blazorise.Carousel", "AssemblyName": "Blazorise", @@ -135731,7 +135731,7 @@ } }, { - "HashCode": -1360152468, + "HashCode": 1440617904, "Kind": "Components.Bind", "Name": "Blazorise.Check", "AssemblyName": "Blazorise", @@ -135772,7 +135772,7 @@ } }, { - "HashCode": 179834391, + "HashCode": -598483998, "Kind": "Components.Bind", "Name": "Blazorise.Check", "AssemblyName": "Blazorise", @@ -135814,7 +135814,7 @@ } }, { - "HashCode": -1943609034, + "HashCode": 1302684951, "Kind": "Components.Bind", "Name": "Blazorise.ColorEdit", "AssemblyName": "Blazorise", @@ -135855,7 +135855,7 @@ } }, { - "HashCode": -327621159, + "HashCode": -272403537, "Kind": "Components.Bind", "Name": "Blazorise.ColorEdit", "AssemblyName": "Blazorise", @@ -135897,7 +135897,7 @@ } }, { - "HashCode": -640556979, + "HashCode": 1630904662, "Kind": "Components.Bind", "Name": "Blazorise.ColorPicker", "AssemblyName": "Blazorise", @@ -135938,7 +135938,7 @@ } }, { - "HashCode": 1804035332, + "HashCode": -310201693, "Kind": "Components.Bind", "Name": "Blazorise.ColorPicker", "AssemblyName": "Blazorise", @@ -135980,7 +135980,7 @@ } }, { - "HashCode": -176405764, + "HashCode": 1328276613, "Kind": "Components.Bind", "Name": "Blazorise.DateEdit", "AssemblyName": "Blazorise", @@ -136021,7 +136021,7 @@ } }, { - "HashCode": -137837848, + "HashCode": 1681485635, "Kind": "Components.Bind", "Name": "Blazorise.DateEdit", "AssemblyName": "Blazorise", @@ -136063,7 +136063,7 @@ } }, { - "HashCode": 1627494341, + "HashCode": -685089703, "Kind": "Components.Bind", "Name": "Blazorise.DatePicker", "AssemblyName": "Blazorise", @@ -136104,7 +136104,7 @@ } }, { - "HashCode": -1645777124, + "HashCode": -1401605585, "Kind": "Components.Bind", "Name": "Blazorise.DatePicker", "AssemblyName": "Blazorise", @@ -136145,7 +136145,7 @@ } }, { - "HashCode": -1060323801, + "HashCode": 378054212, "Kind": "Components.Bind", "Name": "Blazorise.DatePicker", "AssemblyName": "Blazorise", @@ -136187,7 +136187,7 @@ } }, { - "HashCode": 214711344, + "HashCode": -1208156235, "Kind": "Components.Bind", "Name": "Blazorise.DatePicker", "AssemblyName": "Blazorise", @@ -136229,7 +136229,7 @@ } }, { - "HashCode": 388967699, + "HashCode": 1584602812, "Kind": "Components.Bind", "Name": "Blazorise.Dropdown", "AssemblyName": "Blazorise", @@ -136269,7 +136269,7 @@ } }, { - "HashCode": 522148420, + "HashCode": 1152786115, "Kind": "Components.Bind", "Name": "Blazorise.Dropdown", "AssemblyName": "Blazorise", @@ -136310,7 +136310,7 @@ } }, { - "HashCode": -1570037385, + "HashCode": -1552309203, "Kind": "Components.Bind", "Name": "Blazorise.Dynamic", "AssemblyName": "Blazorise", @@ -136350,7 +136350,7 @@ } }, { - "HashCode": 922918543, + "HashCode": 143169171, "Kind": "Components.Bind", "Name": "Blazorise.Dynamic", "AssemblyName": "Blazorise", @@ -136391,7 +136391,7 @@ } }, { - "HashCode": -1481302188, + "HashCode": -1392904643, "Kind": "Components.Bind", "Name": "Blazorise.InputMask", "AssemblyName": "Blazorise", @@ -136432,7 +136432,7 @@ } }, { - "HashCode": 1423721627, + "HashCode": 2105213017, "Kind": "Components.Bind", "Name": "Blazorise.InputMask", "AssemblyName": "Blazorise", @@ -136474,7 +136474,7 @@ } }, { - "HashCode": -60880594, + "HashCode": 1523653617, "Kind": "Components.Bind", "Name": "Blazorise.Layout", "AssemblyName": "Blazorise", @@ -136514,7 +136514,7 @@ } }, { - "HashCode": 627869891, + "HashCode": 1363758148, "Kind": "Components.Bind", "Name": "Blazorise.Layout", "AssemblyName": "Blazorise", @@ -136555,7 +136555,7 @@ } }, { - "HashCode": -1533222116, + "HashCode": -1774106489, "Kind": "Components.Bind", "Name": "Blazorise.ListGroup", "AssemblyName": "Blazorise", @@ -136595,7 +136595,7 @@ } }, { - "HashCode": 1629790943, + "HashCode": 1252109698, "Kind": "Components.Bind", "Name": "Blazorise.ListGroup", "AssemblyName": "Blazorise", @@ -136636,7 +136636,7 @@ } }, { - "HashCode": 1508833599, + "HashCode": -867212385, "Kind": "Components.Bind", "Name": "Blazorise.MemoEdit", "AssemblyName": "Blazorise", @@ -136677,7 +136677,7 @@ } }, { - "HashCode": -1524779684, + "HashCode": -1049666721, "Kind": "Components.Bind", "Name": "Blazorise.MemoEdit", "AssemblyName": "Blazorise", @@ -136719,7 +136719,7 @@ } }, { - "HashCode": -1828098883, + "HashCode": 1639905673, "Kind": "Components.Bind", "Name": "Blazorise.Modal", "AssemblyName": "Blazorise", @@ -136759,7 +136759,7 @@ } }, { - "HashCode": -933762171, + "HashCode": -1299592734, "Kind": "Components.Bind", "Name": "Blazorise.Modal", "AssemblyName": "Blazorise", @@ -136800,7 +136800,7 @@ } }, { - "HashCode": -1793605463, + "HashCode": 1698854274, "Kind": "Components.Bind", "Name": "Blazorise.NumericEdit", "AssemblyName": "Blazorise", @@ -136841,7 +136841,7 @@ } }, { - "HashCode": -556493055, + "HashCode": 156179170, "Kind": "Components.Bind", "Name": "Blazorise.NumericEdit", "AssemblyName": "Blazorise", @@ -136883,7 +136883,7 @@ } }, { - "HashCode": -1931139988, + "HashCode": 2022049441, "Kind": "Components.Bind", "Name": "Blazorise.NumericPicker", "AssemblyName": "Blazorise", @@ -136924,7 +136924,7 @@ } }, { - "HashCode": 1810906208, + "HashCode": -2063972279, "Kind": "Components.Bind", "Name": "Blazorise.NumericPicker", "AssemblyName": "Blazorise", @@ -136966,7 +136966,7 @@ } }, { - "HashCode": -239334960, + "HashCode": 1781258905, "Kind": "Components.Bind", "Name": "Blazorise.Radio", "AssemblyName": "Blazorise", @@ -137007,7 +137007,7 @@ } }, { - "HashCode": 847099398, + "HashCode": -1065397380, "Kind": "Components.Bind", "Name": "Blazorise.Radio", "AssemblyName": "Blazorise", @@ -137049,7 +137049,7 @@ } }, { - "HashCode": -1399508559, + "HashCode": -511803154, "Kind": "Components.Bind", "Name": "Blazorise.RadioGroup", "AssemblyName": "Blazorise", @@ -137090,7 +137090,7 @@ } }, { - "HashCode": 828559152, + "HashCode": -15494482, "Kind": "Components.Bind", "Name": "Blazorise.RadioGroup", "AssemblyName": "Blazorise", @@ -137132,7 +137132,7 @@ } }, { - "HashCode": -519835079, + "HashCode": -1591390720, "Kind": "Components.Bind", "Name": "Blazorise.Rating", "AssemblyName": "Blazorise", @@ -137172,7 +137172,7 @@ } }, { - "HashCode": 1435681094, + "HashCode": 291388416, "Kind": "Components.Bind", "Name": "Blazorise.Rating", "AssemblyName": "Blazorise", @@ -137213,7 +137213,7 @@ } }, { - "HashCode": -682024454, + "HashCode": -185109411, "Kind": "Components.Bind", "Name": "Blazorise.Select", "AssemblyName": "Blazorise", @@ -137254,7 +137254,7 @@ } }, { - "HashCode": 652632354, + "HashCode": -1888300987, "Kind": "Components.Bind", "Name": "Blazorise.Select", "AssemblyName": "Blazorise", @@ -137295,7 +137295,7 @@ } }, { - "HashCode": -471380189, + "HashCode": 595678294, "Kind": "Components.Bind", "Name": "Blazorise.Select", "AssemblyName": "Blazorise", @@ -137337,7 +137337,7 @@ } }, { - "HashCode": 1538350769, + "HashCode": -684019923, "Kind": "Components.Bind", "Name": "Blazorise.Select", "AssemblyName": "Blazorise", @@ -137379,7 +137379,7 @@ } }, { - "HashCode": -490974988, + "HashCode": -1528729532, "Kind": "Components.Bind", "Name": "Blazorise.Slider", "AssemblyName": "Blazorise", @@ -137420,7 +137420,7 @@ } }, { - "HashCode": -3211091, + "HashCode": -1235560330, "Kind": "Components.Bind", "Name": "Blazorise.Slider", "AssemblyName": "Blazorise", @@ -137462,7 +137462,7 @@ } }, { - "HashCode": 766692340, + "HashCode": -342347950, "Kind": "Components.Bind", "Name": "Blazorise.Steps", "AssemblyName": "Blazorise", @@ -137502,7 +137502,7 @@ } }, { - "HashCode": -1640099601, + "HashCode": 150801173, "Kind": "Components.Bind", "Name": "Blazorise.Steps", "AssemblyName": "Blazorise", @@ -137543,7 +137543,7 @@ } }, { - "HashCode": 707588819, + "HashCode": 887085225, "Kind": "Components.Bind", "Name": "Blazorise.StepsContent", "AssemblyName": "Blazorise", @@ -137583,7 +137583,7 @@ } }, { - "HashCode": -539716673, + "HashCode": -1529793985, "Kind": "Components.Bind", "Name": "Blazorise.StepsContent", "AssemblyName": "Blazorise", @@ -137624,7 +137624,7 @@ } }, { - "HashCode": -1563681391, + "HashCode": 1079644015, "Kind": "Components.Bind", "Name": "Blazorise.Switch", "AssemblyName": "Blazorise", @@ -137665,7 +137665,7 @@ } }, { - "HashCode": 1562387030, + "HashCode": 322535998, "Kind": "Components.Bind", "Name": "Blazorise.Switch", "AssemblyName": "Blazorise", @@ -137707,7 +137707,7 @@ } }, { - "HashCode": 1678188371, + "HashCode": 1713858397, "Kind": "Components.Bind", "Name": "Blazorise.Tabs", "AssemblyName": "Blazorise", @@ -137747,7 +137747,7 @@ } }, { - "HashCode": -1820465582, + "HashCode": -876491636, "Kind": "Components.Bind", "Name": "Blazorise.Tabs", "AssemblyName": "Blazorise", @@ -137788,7 +137788,7 @@ } }, { - "HashCode": 378561672, + "HashCode": 1575520745, "Kind": "Components.Bind", "Name": "Blazorise.TabsContent", "AssemblyName": "Blazorise", @@ -137828,7 +137828,7 @@ } }, { - "HashCode": -1920922570, + "HashCode": 1707242229, "Kind": "Components.Bind", "Name": "Blazorise.TabsContent", "AssemblyName": "Blazorise", @@ -137869,7 +137869,7 @@ } }, { - "HashCode": -1069786958, + "HashCode": 1861967749, "Kind": "Components.Bind", "Name": "Blazorise.TextEdit", "AssemblyName": "Blazorise", @@ -137910,7 +137910,7 @@ } }, { - "HashCode": 222320857, + "HashCode": -223751741, "Kind": "Components.Bind", "Name": "Blazorise.TextEdit", "AssemblyName": "Blazorise", @@ -137952,7 +137952,7 @@ } }, { - "HashCode": 464389535, + "HashCode": 547291266, "Kind": "Components.Bind", "Name": "Blazorise.TimeEdit", "AssemblyName": "Blazorise", @@ -137993,7 +137993,7 @@ } }, { - "HashCode": -1800612894, + "HashCode": -361437327, "Kind": "Components.Bind", "Name": "Blazorise.TimeEdit", "AssemblyName": "Blazorise", @@ -138035,7 +138035,7 @@ } }, { - "HashCode": -468057375, + "HashCode": -1507301967, "Kind": "Components.Bind", "Name": "Blazorise.TimePicker", "AssemblyName": "Blazorise", @@ -138076,7 +138076,7 @@ } }, { - "HashCode": -278509292, + "HashCode": -780491436, "Kind": "Components.Bind", "Name": "Blazorise.TimePicker", "AssemblyName": "Blazorise", @@ -138118,7 +138118,7 @@ } }, { - "HashCode": -1597603396, + "HashCode": -419965402, "Kind": "Components.Bind", "Name": "Blazorise.Validation", "AssemblyName": "Blazorise", @@ -138159,7 +138159,7 @@ } }, { - "HashCode": -932738469, + "HashCode": 1234131735, "Kind": "Components.Bind", "Name": "Blazorise.Validation", "AssemblyName": "Blazorise", @@ -138201,7 +138201,7 @@ } }, { - "HashCode": -1597184926, + "HashCode": -1143781723, "Kind": "Components.Bind", "Name": "Blazorise.TreeView.TreeView", "AssemblyName": "Blazorise.TreeView", @@ -138241,7 +138241,7 @@ } }, { - "HashCode": 160170790, + "HashCode": 1648484444, "Kind": "Components.Bind", "Name": "Blazorise.TreeView.TreeView", "AssemblyName": "Blazorise.TreeView", @@ -138281,7 +138281,7 @@ } }, { - "HashCode": 2045472144, + "HashCode": 631133509, "Kind": "Components.Bind", "Name": "Blazorise.TreeView.TreeView", "AssemblyName": "Blazorise.TreeView", @@ -138322,7 +138322,7 @@ } }, { - "HashCode": -1290188488, + "HashCode": -1298972995, "Kind": "Components.Bind", "Name": "Blazorise.TreeView.TreeView", "AssemblyName": "Blazorise.TreeView", @@ -138363,7 +138363,7 @@ } }, { - "HashCode": 1269665327, + "HashCode": -1348691214, "Kind": "Components.Bind", "Name": "Blazorise.TreeView._TreeViewNode", "AssemblyName": "Blazorise.TreeView", @@ -138403,7 +138403,7 @@ } }, { - "HashCode": 45184389, + "HashCode": 417874958, "Kind": "Components.Bind", "Name": "Blazorise.TreeView._TreeViewNode", "AssemblyName": "Blazorise.TreeView", @@ -138444,7 +138444,7 @@ } }, { - "HashCode": -1693952621, + "HashCode": -671123771, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138485,7 +138485,7 @@ } }, { - "HashCode": 478468030, + "HashCode": 129581113, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138527,7 +138527,7 @@ } }, { - "HashCode": 1790051922, + "HashCode": -209343777, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138568,7 +138568,7 @@ } }, { - "HashCode": -1793245286, + "HashCode": -1633625619, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138610,7 +138610,7 @@ } }, { - "HashCode": 768284713, + "HashCode": -627002829, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138651,7 +138651,7 @@ } }, { - "HashCode": -521901218, + "HashCode": 400869027, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138693,7 +138693,7 @@ } }, { - "HashCode": 342258539, + "HashCode": 319910005, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138734,7 +138734,7 @@ } }, { - "HashCode": 637865609, + "HashCode": 1803404175, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138776,7 +138776,7 @@ } }, { - "HashCode": 1597614192, + "HashCode": 1220745541, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138817,7 +138817,7 @@ } }, { - "HashCode": -1639394413, + "HashCode": -1425780485, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138859,7 +138859,7 @@ } }, { - "HashCode": 1054247231, + "HashCode": 1769978686, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138900,7 +138900,7 @@ } }, { - "HashCode": 1448409877, + "HashCode": 736694356, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138942,7 +138942,7 @@ } }, { - "HashCode": 969514852, + "HashCode": -748746307, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -138983,7 +138983,7 @@ } }, { - "HashCode": 114297805, + "HashCode": 127930093, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -139025,7 +139025,7 @@ } }, { - "HashCode": 187676159, + "HashCode": -1927046404, "Kind": "Components.Ref", "Name": "Ref", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -139064,7 +139064,7 @@ } }, { - "HashCode": 725478467, + "HashCode": -1332700366, "Kind": "Components.Key", "Name": "Key", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -139108,13 +139108,28 @@ "RootNamespace": "TaskTree", "Documents": [ { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/MainLayout.razor", - "TargetPath": "Shared\\MainLayout.razor", + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/App.razor", + "TargetPath": "App.razor", "FileKind": "component" }, { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/NavMenu.razor", - "TargetPath": "Shared\\NavMenu.razor", + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/SurveyPrompt.razor", + "TargetPath": "Shared\\SurveyPrompt.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/Error.cshtml", + "TargetPath": "Pages\\Error.cshtml", + "FileKind": "mvc" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/_Imports.razor", + "TargetPath": "_Imports.razor", + "FileKind": "componentImport" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/Counter.razor", + "TargetPath": "Pages\\Counter.razor", "FileKind": "component" }, { @@ -139122,16 +139137,6 @@ "TargetPath": "Pages\\_Layout.cshtml", "FileKind": "mvc" }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/App.razor", - "TargetPath": "App.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/FetchData.razor", - "TargetPath": "Pages\\FetchData.razor", - "FileKind": "component" - }, { "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/_Host.cshtml", "TargetPath": "Pages\\_Host.cshtml", @@ -139143,24 +139148,19 @@ "FileKind": "component" }, { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/_Imports.razor", - "TargetPath": "_Imports.razor", - "FileKind": "componentImport" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/SurveyPrompt.razor", - "TargetPath": "Shared\\SurveyPrompt.razor", + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/FetchData.razor", + "TargetPath": "Pages\\FetchData.razor", "FileKind": "component" }, { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/Counter.razor", - "TargetPath": "Pages\\Counter.razor", + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/NavMenu.razor", + "TargetPath": "Shared\\NavMenu.razor", "FileKind": "component" }, { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/Error.cshtml", - "TargetPath": "Pages\\Error.cshtml", - "FileKind": "mvc" + "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/MainLayout.razor", + "TargetPath": "Shared\\MainLayout.razor", + "FileKind": "component" } ], "SerializationFormat": "0.2" diff --git a/TodoList/obj/Debug/net6.0/project.razor.json b/TodoList/obj/Debug/net6.0/project.razor.json index ba47aca9..7771e1ec 100644 --- a/TodoList/obj/Debug/net6.0/project.razor.json +++ b/TodoList/obj/Debug/net6.0/project.razor.json @@ -12,7 +12,7 @@ "ProjectWorkspaceState": { "TagHelpers": [ { - "HashCode": -981412876, + "HashCode": -2074526890, "Kind": "Components.Component", "Name": "TodoList.Pages.Accounts", "AssemblyName": "TodoList", @@ -28,7 +28,7 @@ } }, { - "HashCode": -1504912013, + "HashCode": 1714989449, "Kind": "Components.Component", "Name": "TodoList.Pages.Accounts", "AssemblyName": "TodoList", @@ -45,7 +45,7 @@ } }, { - "HashCode": -987706616, + "HashCode": -1693021814, "Kind": "Components.Component", "Name": "TodoList.Pages.AccountTasks", "AssemblyName": "TodoList", @@ -61,7 +61,7 @@ } }, { - "HashCode": -236141564, + "HashCode": -1584420185, "Kind": "Components.Component", "Name": "TodoList.Pages.AccountTasks", "AssemblyName": "TodoList", @@ -78,7 +78,7 @@ } }, { - "HashCode": -311707680, + "HashCode": -1265818129, "Kind": "Components.Component", "Name": "TodoList.Pages.Counter", "AssemblyName": "TodoList", @@ -94,7 +94,7 @@ } }, { - "HashCode": 1517158903, + "HashCode": 226564716, "Kind": "Components.Component", "Name": "TodoList.Pages.Counter", "AssemblyName": "TodoList", @@ -111,7 +111,7 @@ } }, { - "HashCode": -1026327926, + "HashCode": -1538857236, "Kind": "Components.Component", "Name": "TodoList.Pages.FetchData", "AssemblyName": "TodoList", @@ -127,7 +127,7 @@ } }, { - "HashCode": 967753272, + "HashCode": -239662922, "Kind": "Components.Component", "Name": "TodoList.Pages.FetchData", "AssemblyName": "TodoList", @@ -144,7 +144,7 @@ } }, { - "HashCode": 2089638411, + "HashCode": 244816393, "Kind": "Components.Component", "Name": "TodoList.Pages.Index", "AssemblyName": "TodoList", @@ -160,7 +160,7 @@ } }, { - "HashCode": 1154517844, + "HashCode": 1271679756, "Kind": "Components.Component", "Name": "TodoList.Pages.Index", "AssemblyName": "TodoList", @@ -177,7 +177,7 @@ } }, { - "HashCode": -439714847, + "HashCode": 1142255801, "Kind": "Components.Component", "Name": "TodoList.Pages.Todo", "AssemblyName": "TodoList", @@ -193,7 +193,7 @@ } }, { - "HashCode": -1182467422, + "HashCode": -937661286, "Kind": "Components.Component", "Name": "TodoList.Pages.Todo", "AssemblyName": "TodoList", @@ -210,7 +210,7 @@ } }, { - "HashCode": -496476029, + "HashCode": 331836674, "Kind": "Components.Component", "Name": "TodoList.App", "AssemblyName": "TodoList", @@ -226,7 +226,7 @@ } }, { - "HashCode": 272329017, + "HashCode": -850814352, "Kind": "Components.Component", "Name": "TodoList.App", "AssemblyName": "TodoList", @@ -243,7 +243,7 @@ } }, { - "HashCode": 277067405, + "HashCode": 1103965388, "Kind": "Components.Component", "Name": "TodoList.Shared.SurveyPrompt", "AssemblyName": "TodoList", @@ -269,7 +269,7 @@ } }, { - "HashCode": -1846349517, + "HashCode": 1074186297, "Kind": "Components.Component", "Name": "TodoList.Shared.SurveyPrompt", "AssemblyName": "TodoList", @@ -296,7 +296,7 @@ } }, { - "HashCode": 2062591449, + "HashCode": 1654843519, "Kind": "Components.Component", "Name": "TodoList.Shared.MainLayout", "AssemblyName": "TodoList", @@ -324,7 +324,7 @@ } }, { - "HashCode": 1393891270, + "HashCode": 1794095865, "Kind": "Components.Component", "Name": "TodoList.Shared.MainLayout", "AssemblyName": "TodoList", @@ -353,7 +353,7 @@ } }, { - "HashCode": 563589459, + "HashCode": -977397009, "Kind": "Components.ChildContent", "Name": "TodoList.Shared.MainLayout.Body", "AssemblyName": "TodoList", @@ -372,7 +372,7 @@ } }, { - "HashCode": 922481995, + "HashCode": -1715421207, "Kind": "Components.ChildContent", "Name": "TodoList.Shared.MainLayout.Body", "AssemblyName": "TodoList", @@ -392,7 +392,7 @@ } }, { - "HashCode": 995521533, + "HashCode": 976901962, "Kind": "Components.Component", "Name": "TodoList.Shared.NavMenu", "AssemblyName": "TodoList", @@ -408,7 +408,7 @@ } }, { - "HashCode": 1030477162, + "HashCode": -707383548, "Kind": "Components.Component", "Name": "TodoList.Shared.NavMenu", "AssemblyName": "TodoList", @@ -425,7 +425,7 @@ } }, { - "HashCode": 2088753491, + "HashCode": 2121561041, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -502,7 +502,7 @@ } }, { - "HashCode": -285460159, + "HashCode": -942028738, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -580,7 +580,7 @@ } }, { - "HashCode": -1841287799, + "HashCode": 870285718, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -611,7 +611,7 @@ } }, { - "HashCode": 1261567463, + "HashCode": 1636259266, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -643,7 +643,7 @@ } }, { - "HashCode": 564803038, + "HashCode": -1872687544, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -662,7 +662,7 @@ } }, { - "HashCode": 64488153, + "HashCode": -1239197063, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -682,7 +682,7 @@ } }, { - "HashCode": 957765471, + "HashCode": -1165268587, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -778,7 +778,7 @@ } }, { - "HashCode": 296731362, + "HashCode": -669322022, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -875,7 +875,7 @@ } }, { - "HashCode": -1136811465, + "HashCode": 414047906, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -906,7 +906,7 @@ } }, { - "HashCode": -1893065220, + "HashCode": 290107177, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -938,7 +938,7 @@ } }, { - "HashCode": -1890497689, + "HashCode": -79742699, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -969,7 +969,7 @@ } }, { - "HashCode": -119869084, + "HashCode": -254196738, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1001,7 +1001,7 @@ } }, { - "HashCode": 629592123, + "HashCode": -262029594, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1032,7 +1032,7 @@ } }, { - "HashCode": 1094184863, + "HashCode": -963273423, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1064,7 +1064,7 @@ } }, { - "HashCode": 302961491, + "HashCode": -1822683243, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1083,7 +1083,7 @@ } }, { - "HashCode": 729181630, + "HashCode": -1773023910, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1103,7 +1103,7 @@ } }, { - "HashCode": -1027500165, + "HashCode": -420744837, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1131,7 +1131,7 @@ } }, { - "HashCode": 527343415, + "HashCode": 352834130, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1160,7 +1160,7 @@ } }, { - "HashCode": 1381714767, + "HashCode": -678370359, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1179,7 +1179,7 @@ } }, { - "HashCode": -163190136, + "HashCode": 961480804, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -1199,7 +1199,7 @@ } }, { - "HashCode": 2074442050, + "HashCode": -2050819389, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1268,7 +1268,7 @@ } }, { - "HashCode": -1220423194, + "HashCode": -580022195, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1338,7 +1338,7 @@ } }, { - "HashCode": -550707607, + "HashCode": 67732089, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1357,7 +1357,7 @@ } }, { - "HashCode": 1575267149, + "HashCode": 681559381, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1377,7 +1377,7 @@ } }, { - "HashCode": -1954602521, + "HashCode": 214661964, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1415,7 +1415,7 @@ } }, { - "HashCode": 1837006718, + "HashCode": 458739233, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1454,7 +1454,7 @@ } }, { - "HashCode": 678210953, + "HashCode": 668621198, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1492,7 +1492,7 @@ } }, { - "HashCode": 1106070228, + "HashCode": 870348651, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1531,7 +1531,7 @@ } }, { - "HashCode": 140819585, + "HashCode": 1782095982, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1550,7 +1550,7 @@ } }, { - "HashCode": 1924216065, + "HashCode": -1737958057, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1570,7 +1570,7 @@ } }, { - "HashCode": -434031713, + "HashCode": -440514318, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1608,7 +1608,7 @@ } }, { - "HashCode": -493010364, + "HashCode": 1257681064, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1647,7 +1647,7 @@ } }, { - "HashCode": 934572083, + "HashCode": 1681590557, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1746,7 +1746,7 @@ } }, { - "HashCode": -1322055884, + "HashCode": 787163489, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1846,7 +1846,7 @@ } }, { - "HashCode": -1586090514, + "HashCode": 161283511, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1865,7 +1865,7 @@ } }, { - "HashCode": 1195226419, + "HashCode": 1803834916, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1885,7 +1885,7 @@ } }, { - "HashCode": -1793974710, + "HashCode": -230643096, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1916,7 +1916,7 @@ } }, { - "HashCode": 1939587532, + "HashCode": -1493384725, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1948,7 +1948,7 @@ } }, { - "HashCode": 1550554141, + "HashCode": -1736308809, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1967,7 +1967,7 @@ } }, { - "HashCode": -1223991453, + "HashCode": 899850367, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1987,7 +1987,7 @@ } }, { - "HashCode": 1104312341, + "HashCode": -247575972, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -2004,7 +2004,7 @@ } }, { - "HashCode": 1778597382, + "HashCode": 1797472468, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -2022,7 +2022,7 @@ } }, { - "HashCode": 1816691600, + "HashCode": -452896661, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2118,7 +2118,7 @@ } }, { - "HashCode": 913197973, + "HashCode": 909864264, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2215,7 +2215,7 @@ } }, { - "HashCode": 1878232463, + "HashCode": 975716500, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2246,7 +2246,7 @@ } }, { - "HashCode": -843192619, + "HashCode": -661819599, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2278,7 +2278,7 @@ } }, { - "HashCode": -585987003, + "HashCode": 147494700, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2343,7 +2343,7 @@ } }, { - "HashCode": -1983288295, + "HashCode": 108741570, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2409,7 +2409,7 @@ } }, { - "HashCode": -1931598168, + "HashCode": 1376972735, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2508,7 +2508,7 @@ } }, { - "HashCode": -1332008517, + "HashCode": 1628593191, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2608,7 +2608,7 @@ } }, { - "HashCode": -807298437, + "HashCode": 97929097, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2646,7 +2646,7 @@ } }, { - "HashCode": 969456661, + "HashCode": 1477077814, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2685,7 +2685,7 @@ } }, { - "HashCode": -30655613, + "HashCode": -235102393, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2774,7 +2774,7 @@ } }, { - "HashCode": 1319005411, + "HashCode": -1988918278, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2864,7 +2864,7 @@ } }, { - "HashCode": -435803919, + "HashCode": -979720853, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2923,7 +2923,7 @@ } }, { - "HashCode": -125058503, + "HashCode": -1733717885, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2983,7 +2983,7 @@ } }, { - "HashCode": 536807856, + "HashCode": 1601423437, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3082,7 +3082,7 @@ } }, { - "HashCode": -416165024, + "HashCode": -33891971, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3182,7 +3182,7 @@ } }, { - "HashCode": -1303307478, + "HashCode": -1862358816, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3201,7 +3201,7 @@ } }, { - "HashCode": -645684901, + "HashCode": 1340721914, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3221,7 +3221,7 @@ } }, { - "HashCode": 1651608839, + "HashCode": 1218017095, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3311,7 +3311,7 @@ } }, { - "HashCode": -1929732824, + "HashCode": 1767659935, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3402,7 +3402,7 @@ } }, { - "HashCode": -713146602, + "HashCode": 94145117, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3421,7 +3421,7 @@ } }, { - "HashCode": 428087852, + "HashCode": 970147423, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3441,7 +3441,7 @@ } }, { - "HashCode": -389858243, + "HashCode": 1292219308, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3506,7 +3506,7 @@ } }, { - "HashCode": -680808087, + "HashCode": 2113073277, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3572,7 +3572,7 @@ } }, { - "HashCode": -778606526, + "HashCode": 2032276109, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3637,7 +3637,7 @@ } }, { - "HashCode": 1322615178, + "HashCode": 470700206, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3703,7 +3703,7 @@ } }, { - "HashCode": 304263895, + "HashCode": -808078148, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3753,7 +3753,7 @@ } }, { - "HashCode": 1821614454, + "HashCode": 1870394043, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3804,7 +3804,7 @@ } }, { - "HashCode": 628073309, + "HashCode": -724624780, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3841,7 +3841,7 @@ } }, { - "HashCode": 622227640, + "HashCode": 229133919, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3879,7 +3879,7 @@ } }, { - "HashCode": 2074783401, + "HashCode": 201683578, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3916,7 +3916,7 @@ } }, { - "HashCode": -1873270347, + "HashCode": -491504269, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3954,7 +3954,7 @@ } }, { - "HashCode": 1964802706, + "HashCode": -320305158, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4011,7 +4011,7 @@ } }, { - "HashCode": 557410031, + "HashCode": 1584667910, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4069,7 +4069,7 @@ } }, { - "HashCode": 100313067, + "HashCode": 1341932670, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4088,7 +4088,7 @@ } }, { - "HashCode": -1537976112, + "HashCode": 706159756, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4108,7 +4108,7 @@ } }, { - "HashCode": -95504226, + "HashCode": -117164107, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4137,7 +4137,7 @@ } }, { - "HashCode": -982749320, + "HashCode": -1341168096, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4167,7 +4167,7 @@ } }, { - "HashCode": -83413069, + "HashCode": -2104054415, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4186,7 +4186,7 @@ } }, { - "HashCode": 1752113130, + "HashCode": 1357447395, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4206,7 +4206,7 @@ } }, { - "HashCode": -2073163222, + "HashCode": -1575792696, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4223,7 +4223,7 @@ } }, { - "HashCode": 1488243984, + "HashCode": 420812537, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4241,7 +4241,7 @@ } }, { - "HashCode": -1234031506, + "HashCode": 1321991045, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4270,7 +4270,7 @@ } }, { - "HashCode": -922402604, + "HashCode": -1191411754, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4300,7 +4300,7 @@ } }, { - "HashCode": 1724498635, + "HashCode": 1811180338, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4319,7 +4319,7 @@ } }, { - "HashCode": 1501680976, + "HashCode": -223301154, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4339,7 +4339,7 @@ } }, { - "HashCode": 1986643943, + "HashCode": 1835549384, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4397,7 +4397,7 @@ } }, { - "HashCode": 555668296, + "HashCode": -916302333, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4456,7 +4456,7 @@ } }, { - "HashCode": 137001226, + "HashCode": -900378922, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4475,7 +4475,7 @@ } }, { - "HashCode": 2110695038, + "HashCode": 1503777522, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4495,7 +4495,7 @@ } }, { - "HashCode": -1548425071, + "HashCode": -660999574, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4526,7 +4526,7 @@ } }, { - "HashCode": -688997084, + "HashCode": -647490644, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4558,7 +4558,7 @@ } }, { - "HashCode": -734202640, + "HashCode": -373192234, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4670,7 +4670,7 @@ } }, { - "HashCode": 1822091595, + "HashCode": -2018436205, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4783,7 +4783,7 @@ } }, { - "HashCode": 938293743, + "HashCode": -1831194480, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4814,7 +4814,7 @@ } }, { - "HashCode": 1230735497, + "HashCode": -1481994524, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4846,7 +4846,7 @@ } }, { - "HashCode": 1612279654, + "HashCode": 522733807, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4877,7 +4877,7 @@ } }, { - "HashCode": 1871186175, + "HashCode": -71311032, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4909,7 +4909,7 @@ } }, { - "HashCode": -1985035176, + "HashCode": 787809707, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4940,7 +4940,7 @@ } }, { - "HashCode": 347259040, + "HashCode": 1676065419, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4972,7 +4972,7 @@ } }, { - "HashCode": 841540448, + "HashCode": 1480409020, "Kind": "Components.Component", "Name": "Radzen.RadzenComponentWithChildren", "AssemblyName": "Radzen.Blazor", @@ -5067,7 +5067,7 @@ } }, { - "HashCode": -1872613320, + "HashCode": 926568873, "Kind": "Components.Component", "Name": "Radzen.RadzenComponentWithChildren", "AssemblyName": "Radzen.Blazor", @@ -5163,7 +5163,7 @@ } }, { - "HashCode": 103805748, + "HashCode": 1386095712, "Kind": "Components.ChildContent", "Name": "Radzen.RadzenComponentWithChildren.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -5182,7 +5182,7 @@ } }, { - "HashCode": 1454835030, + "HashCode": -757995886, "Kind": "Components.ChildContent", "Name": "Radzen.RadzenComponentWithChildren.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -5202,7 +5202,7 @@ } }, { - "HashCode": 896501644, + "HashCode": -928743710, "Kind": "Components.Component", "Name": "Radzen.DataBoundFormComponent", "AssemblyName": "Radzen.Blazor", @@ -5423,7 +5423,7 @@ } }, { - "HashCode": -1154737875, + "HashCode": 1855519016, "Kind": "Components.Component", "Name": "Radzen.DataBoundFormComponent", "AssemblyName": "Radzen.Blazor", @@ -5645,7 +5645,7 @@ } }, { - "HashCode": 1907669012, + "HashCode": -1790832953, "Kind": "Components.Component", "Name": "Radzen.DropDownBase", "AssemblyName": "Radzen.Blazor", @@ -5977,7 +5977,7 @@ } }, { - "HashCode": -1571628173, + "HashCode": 1382841485, "Kind": "Components.Component", "Name": "Radzen.DropDownBase", "AssemblyName": "Radzen.Blazor", @@ -6310,7 +6310,7 @@ } }, { - "HashCode": -1941258331, + "HashCode": -1929898851, "Kind": "Components.ChildContent", "Name": "Radzen.DropDownBase.Template", "AssemblyName": "Radzen.Blazor", @@ -6341,7 +6341,7 @@ } }, { - "HashCode": -1380845471, + "HashCode": -2120260111, "Kind": "Components.ChildContent", "Name": "Radzen.DropDownBase.Template", "AssemblyName": "Radzen.Blazor", @@ -6373,7 +6373,7 @@ } }, { - "HashCode": -234291353, + "HashCode": -914496159, "Kind": "Components.Component", "Name": "Radzen.FormComponent", "AssemblyName": "Radzen.Blazor", @@ -6548,7 +6548,7 @@ } }, { - "HashCode": 1427570007, + "HashCode": -504609254, "Kind": "Components.Component", "Name": "Radzen.FormComponent", "AssemblyName": "Radzen.Blazor", @@ -6724,7 +6724,7 @@ } }, { - "HashCode": -1934149729, + "HashCode": 1115118582, "Kind": "Components.Component", "Name": "Radzen.PagedDataBoundComponent", "AssemblyName": "Radzen.Blazor", @@ -6973,7 +6973,7 @@ } }, { - "HashCode": 392048819, + "HashCode": -914107888, "Kind": "Components.Component", "Name": "Radzen.PagedDataBoundComponent", "AssemblyName": "Radzen.Blazor", @@ -7223,7 +7223,7 @@ } }, { - "HashCode": 1791770404, + "HashCode": 1472051213, "Kind": "Components.ChildContent", "Name": "Radzen.PagedDataBoundComponent.Template", "AssemblyName": "Radzen.Blazor", @@ -7254,7 +7254,7 @@ } }, { - "HashCode": -1104301236, + "HashCode": -1552278601, "Kind": "Components.ChildContent", "Name": "Radzen.PagedDataBoundComponent.Template", "AssemblyName": "Radzen.Blazor", @@ -7286,7 +7286,7 @@ } }, { - "HashCode": -614903208, + "HashCode": -1320865641, "Kind": "Components.Component", "Name": "Radzen.RadzenComponent", "AssemblyName": "Radzen.Blazor", @@ -7371,7 +7371,7 @@ } }, { - "HashCode": -240842172, + "HashCode": -1144288760, "Kind": "Components.Component", "Name": "Radzen.RadzenComponent", "AssemblyName": "Radzen.Blazor", @@ -7457,7 +7457,7 @@ } }, { - "HashCode": -1944361398, + "HashCode": -1370535373, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAccordion", "AssemblyName": "Radzen.Blazor", @@ -7590,7 +7590,7 @@ } }, { - "HashCode": -1444657402, + "HashCode": -926876239, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAccordion", "AssemblyName": "Radzen.Blazor", @@ -7724,7 +7724,7 @@ } }, { - "HashCode": 382813810, + "HashCode": -19955796, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAccordion.Items", "AssemblyName": "Radzen.Blazor", @@ -7743,7 +7743,7 @@ } }, { - "HashCode": 226386575, + "HashCode": 882709825, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAccordion.Items", "AssemblyName": "Radzen.Blazor", @@ -7763,7 +7763,7 @@ } }, { - "HashCode": 968430582, + "HashCode": 373248185, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAccordionItem", "AssemblyName": "Radzen.Blazor", @@ -7885,7 +7885,7 @@ } }, { - "HashCode": -71700202, + "HashCode": -40412171, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAccordionItem", "AssemblyName": "Radzen.Blazor", @@ -8008,7 +8008,7 @@ } }, { - "HashCode": 2140237430, + "HashCode": -2040024753, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAccordionItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -8027,7 +8027,7 @@ } }, { - "HashCode": -1022625056, + "HashCode": -1317489374, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAccordionItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -8047,7 +8047,7 @@ } }, { - "HashCode": 1603526674, + "HashCode": 8178526, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenArcGaugeScale", "AssemblyName": "Radzen.Blazor", @@ -8285,7 +8285,7 @@ } }, { - "HashCode": -778740416, + "HashCode": -381197407, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenArcGaugeScale", "AssemblyName": "Radzen.Blazor", @@ -8524,7 +8524,7 @@ } }, { - "HashCode": -1657346536, + "HashCode": -1065963912, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -8543,7 +8543,7 @@ } }, { - "HashCode": -1085083961, + "HashCode": 2136207617, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -8563,7 +8563,7 @@ } }, { - "HashCode": -826873475, + "HashCode": -1638732062, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue", "AssemblyName": "Radzen.Blazor", @@ -8656,7 +8656,7 @@ } }, { - "HashCode": 237475449, + "HashCode": 1485881795, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue", "AssemblyName": "Radzen.Blazor", @@ -8750,7 +8750,7 @@ } }, { - "HashCode": 1752933542, + "HashCode": 177296047, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template", "AssemblyName": "Radzen.Blazor", @@ -8781,7 +8781,7 @@ } }, { - "HashCode": 1789952603, + "HashCode": 130627337, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template", "AssemblyName": "Radzen.Blazor", @@ -8813,7 +8813,7 @@ } }, { - "HashCode": 1739179490, + "HashCode": -1347759452, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAreaSeries", "AssemblyName": "Radzen.Blazor", @@ -8985,7 +8985,7 @@ } }, { - "HashCode": 1225732701, + "HashCode": 915148077, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAreaSeries", "AssemblyName": "Radzen.Blazor", @@ -9158,7 +9158,7 @@ } }, { - "HashCode": 1169262029, + "HashCode": 83616273, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAreaSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -9177,7 +9177,7 @@ } }, { - "HashCode": -319856653, + "HashCode": -1891833395, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAreaSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -9197,7 +9197,7 @@ } }, { - "HashCode": 1554654510, + "HashCode": -1179091868, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -9228,7 +9228,7 @@ } }, { - "HashCode": 1059699373, + "HashCode": 336081497, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -9260,7 +9260,7 @@ } }, { - "HashCode": 448191229, + "HashCode": 1986685023, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAutoComplete", "AssemblyName": "Radzen.Blazor", @@ -9485,7 +9485,7 @@ } }, { - "HashCode": 1987941485, + "HashCode": -443048541, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAutoComplete", "AssemblyName": "Radzen.Blazor", @@ -9711,7 +9711,7 @@ } }, { - "HashCode": 937118546, + "HashCode": -2059698514, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAxisTitle", "AssemblyName": "Radzen.Blazor", @@ -9739,7 +9739,7 @@ } }, { - "HashCode": 175708865, + "HashCode": 1986371060, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenAxisTitle", "AssemblyName": "Radzen.Blazor", @@ -9768,7 +9768,7 @@ } }, { - "HashCode": -1766461197, + "HashCode": 1261811915, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBadge", "AssemblyName": "Radzen.Blazor", @@ -9891,7 +9891,7 @@ } }, { - "HashCode": 1687128250, + "HashCode": -846242829, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBadge", "AssemblyName": "Radzen.Blazor", @@ -10015,7 +10015,7 @@ } }, { - "HashCode": -1000694637, + "HashCode": -966895837, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBadge.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -10034,7 +10034,7 @@ } }, { - "HashCode": -1425720342, + "HashCode": -9446807, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBadge.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -10054,7 +10054,7 @@ } }, { - "HashCode": -1352372524, + "HashCode": -1243384905, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBarOptions", "AssemblyName": "Radzen.Blazor", @@ -10091,7 +10091,7 @@ } }, { - "HashCode": 495936107, + "HashCode": -1433136883, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBarOptions", "AssemblyName": "Radzen.Blazor", @@ -10129,7 +10129,7 @@ } }, { - "HashCode": -570756545, + "HashCode": -33770532, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBarSeries", "AssemblyName": "Radzen.Blazor", @@ -10310,7 +10310,7 @@ } }, { - "HashCode": 355614846, + "HashCode": 1802117399, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBarSeries", "AssemblyName": "Radzen.Blazor", @@ -10492,7 +10492,7 @@ } }, { - "HashCode": -1216936721, + "HashCode": -71945721, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBarSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -10511,7 +10511,7 @@ } }, { - "HashCode": -2070686320, + "HashCode": 715899261, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBarSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -10531,7 +10531,7 @@ } }, { - "HashCode": 860649614, + "HashCode": -1490822021, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -10562,7 +10562,7 @@ } }, { - "HashCode": 1458380130, + "HashCode": -885382431, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -10594,7 +10594,7 @@ } }, { - "HashCode": -870503640, + "HashCode": -977223835, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBody", "AssemblyName": "Radzen.Blazor", @@ -10708,7 +10708,7 @@ } }, { - "HashCode": -11304691, + "HashCode": -1216943985, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBody", "AssemblyName": "Radzen.Blazor", @@ -10823,7 +10823,7 @@ } }, { - "HashCode": 2137597324, + "HashCode": -700978236, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBody.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -10842,7 +10842,7 @@ } }, { - "HashCode": -129440168, + "HashCode": 247497445, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBody.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -10862,7 +10862,7 @@ } }, { - "HashCode": 1978671736, + "HashCode": -1806669034, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBreadCrumb", "AssemblyName": "Radzen.Blazor", @@ -10977,7 +10977,7 @@ } }, { - "HashCode": -1910503637, + "HashCode": -1472376889, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBreadCrumb", "AssemblyName": "Radzen.Blazor", @@ -11093,7 +11093,7 @@ } }, { - "HashCode": -1025296893, + "HashCode": -172699302, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBreadCrumb.Template", "AssemblyName": "Radzen.Blazor", @@ -11124,7 +11124,7 @@ } }, { - "HashCode": 1492436619, + "HashCode": 1167086198, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBreadCrumb.Template", "AssemblyName": "Radzen.Blazor", @@ -11156,7 +11156,7 @@ } }, { - "HashCode": 1400690675, + "HashCode": -1166091197, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBreadCrumb.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -11175,7 +11175,7 @@ } }, { - "HashCode": 580310395, + "HashCode": 349293533, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenBreadCrumb.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -11195,7 +11195,7 @@ } }, { - "HashCode": 494303725, + "HashCode": -402274955, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBreadCrumbItem", "AssemblyName": "Radzen.Blazor", @@ -11307,7 +11307,7 @@ } }, { - "HashCode": -136577315, + "HashCode": -400826151, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenBreadCrumbItem", "AssemblyName": "Radzen.Blazor", @@ -11420,7 +11420,7 @@ } }, { - "HashCode": -1524007247, + "HashCode": 1705249899, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenButton", "AssemblyName": "Radzen.Blazor", @@ -11609,7 +11609,7 @@ } }, { - "HashCode": 513833300, + "HashCode": 419897172, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenButton", "AssemblyName": "Radzen.Blazor", @@ -11799,7 +11799,7 @@ } }, { - "HashCode": -757299574, + "HashCode": -32813883, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenButton.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -11818,7 +11818,7 @@ } }, { - "HashCode": 1368597472, + "HashCode": -31126393, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenButton.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -11838,7 +11838,7 @@ } }, { - "HashCode": 1805116606, + "HashCode": -285972881, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCard", "AssemblyName": "Radzen.Blazor", @@ -11933,7 +11933,7 @@ } }, { - "HashCode": -951763852, + "HashCode": 1477824892, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCard", "AssemblyName": "Radzen.Blazor", @@ -12029,7 +12029,7 @@ } }, { - "HashCode": 700234692, + "HashCode": -1451519988, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenCard.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -12048,7 +12048,7 @@ } }, { - "HashCode": 15538820, + "HashCode": 988013229, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenCard.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -12068,7 +12068,7 @@ } }, { - "HashCode": -19758303, + "HashCode": 1810949649, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenChart", "AssemblyName": "Radzen.Blazor", @@ -12183,7 +12183,7 @@ } }, { - "HashCode": 1388532046, + "HashCode": 79838901, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenChart", "AssemblyName": "Radzen.Blazor", @@ -12299,7 +12299,7 @@ } }, { - "HashCode": -677269275, + "HashCode": 696829568, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenChart.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -12318,7 +12318,7 @@ } }, { - "HashCode": 536169165, + "HashCode": -1118895845, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenChart.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -12338,7 +12338,7 @@ } }, { - "HashCode": 362146033, + "HashCode": 1106988078, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenChartTooltipOptions", "AssemblyName": "Radzen.Blazor", @@ -12375,7 +12375,7 @@ } }, { - "HashCode": 565731142, + "HashCode": 2066312579, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenChartTooltipOptions", "AssemblyName": "Radzen.Blazor", @@ -12413,7 +12413,7 @@ } }, { - "HashCode": 380505407, + "HashCode": 1699169657, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCheckBox", "AssemblyName": "Radzen.Blazor", @@ -12597,7 +12597,7 @@ } }, { - "HashCode": -1994852276, + "HashCode": -1806747806, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCheckBox", "AssemblyName": "Radzen.Blazor", @@ -12782,7 +12782,7 @@ } }, { - "HashCode": -1285309535, + "HashCode": -1170210710, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCheckBoxList", "AssemblyName": "Radzen.Blazor", @@ -13004,7 +13004,7 @@ } }, { - "HashCode": -1970358905, + "HashCode": 2095626996, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCheckBoxList", "AssemblyName": "Radzen.Blazor", @@ -13227,7 +13227,7 @@ } }, { - "HashCode": 810145708, + "HashCode": 1349719557, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenCheckBoxList.Items", "AssemblyName": "Radzen.Blazor", @@ -13246,7 +13246,7 @@ } }, { - "HashCode": -429564722, + "HashCode": -159884848, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenCheckBoxList.Items", "AssemblyName": "Radzen.Blazor", @@ -13266,7 +13266,7 @@ } }, { - "HashCode": 991592169, + "HashCode": 1288289390, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCheckBoxListItem", "AssemblyName": "Radzen.Blazor", @@ -13391,7 +13391,7 @@ } }, { - "HashCode": -465103519, + "HashCode": -1850292868, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCheckBoxListItem", "AssemblyName": "Radzen.Blazor", @@ -13517,7 +13517,7 @@ } }, { - "HashCode": 1820944878, + "HashCode": 886573119, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColorPicker", "AssemblyName": "Radzen.Blazor", @@ -13805,7 +13805,7 @@ } }, { - "HashCode": -1935393986, + "HashCode": -1441424494, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColorPicker", "AssemblyName": "Radzen.Blazor", @@ -14094,7 +14094,7 @@ } }, { - "HashCode": 1467400315, + "HashCode": 2129770596, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenColorPicker.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -14113,7 +14113,7 @@ } }, { - "HashCode": -1342591121, + "HashCode": 287953352, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenColorPicker.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -14133,7 +14133,7 @@ } }, { - "HashCode": -1400763291, + "HashCode": 476900774, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColorPickerItem", "AssemblyName": "Radzen.Blazor", @@ -14161,7 +14161,7 @@ } }, { - "HashCode": 1987254066, + "HashCode": 525871409, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColorPickerItem", "AssemblyName": "Radzen.Blazor", @@ -14190,7 +14190,7 @@ } }, { - "HashCode": -1637427477, + "HashCode": 598315961, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColumnOptions", "AssemblyName": "Radzen.Blazor", @@ -14227,7 +14227,7 @@ } }, { - "HashCode": 196366872, + "HashCode": 664079719, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColumnOptions", "AssemblyName": "Radzen.Blazor", @@ -14265,7 +14265,7 @@ } }, { - "HashCode": -2019513367, + "HashCode": 19247641, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColumnSeries", "AssemblyName": "Radzen.Blazor", @@ -14446,7 +14446,7 @@ } }, { - "HashCode": 413989664, + "HashCode": 71672950, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenColumnSeries", "AssemblyName": "Radzen.Blazor", @@ -14628,7 +14628,7 @@ } }, { - "HashCode": 1692531385, + "HashCode": 809843070, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenColumnSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -14647,7 +14647,7 @@ } }, { - "HashCode": -496648610, + "HashCode": 1379657607, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenColumnSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -14667,7 +14667,7 @@ } }, { - "HashCode": -597237514, + "HashCode": -960642586, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -14698,7 +14698,7 @@ } }, { - "HashCode": 1301400182, + "HashCode": 191338691, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -14730,7 +14730,7 @@ } }, { - "HashCode": 1321125012, + "HashCode": -513785473, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCompareValidator", "AssemblyName": "Radzen.Blazor", @@ -14861,7 +14861,7 @@ } }, { - "HashCode": -175312044, + "HashCode": -365707925, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCompareValidator", "AssemblyName": "Radzen.Blazor", @@ -14993,7 +14993,7 @@ } }, { - "HashCode": -1130946355, + "HashCode": 1778906910, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenContent", "AssemblyName": "Radzen.Blazor", @@ -15097,7 +15097,7 @@ } }, { - "HashCode": 51429002, + "HashCode": -173227455, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenContent", "AssemblyName": "Radzen.Blazor", @@ -15202,7 +15202,7 @@ } }, { - "HashCode": -1718315130, + "HashCode": -2097826024, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenContent.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -15221,7 +15221,7 @@ } }, { - "HashCode": -1003085433, + "HashCode": 1808322382, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenContent.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -15241,7 +15241,7 @@ } }, { - "HashCode": -1434342599, + "HashCode": -827614090, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenContentContainer", "AssemblyName": "Radzen.Blazor", @@ -15345,7 +15345,7 @@ } }, { - "HashCode": -232134061, + "HashCode": -1793460778, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenContentContainer", "AssemblyName": "Radzen.Blazor", @@ -15450,7 +15450,7 @@ } }, { - "HashCode": -1859549829, + "HashCode": 1392169872, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenContentContainer.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -15469,7 +15469,7 @@ } }, { - "HashCode": 1623399156, + "HashCode": -1230921044, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenContentContainer.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -15489,7 +15489,7 @@ } }, { - "HashCode": 1314826264, + "HashCode": -623833257, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenContextMenu", "AssemblyName": "Radzen.Blazor", @@ -15506,7 +15506,7 @@ } }, { - "HashCode": 1006176670, + "HashCode": -829854199, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenContextMenu", "AssemblyName": "Radzen.Blazor", @@ -15524,7 +15524,7 @@ } }, { - "HashCode": 2103406529, + "HashCode": -56519420, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGrid", "AssemblyName": "Radzen.Blazor", @@ -16512,7 +16512,7 @@ } }, { - "HashCode": 1202494730, + "HashCode": 511172627, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGrid", "AssemblyName": "Radzen.Blazor", @@ -17501,7 +17501,7 @@ } }, { - "HashCode": -406072489, + "HashCode": -1955390970, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.Columns", "AssemblyName": "Radzen.Blazor", @@ -17520,7 +17520,7 @@ } }, { - "HashCode": -2065293862, + "HashCode": -1886243970, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.Columns", "AssemblyName": "Radzen.Blazor", @@ -17540,7 +17540,7 @@ } }, { - "HashCode": -673006476, + "HashCode": -1290867076, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.EmptyTemplate", "AssemblyName": "Radzen.Blazor", @@ -17559,7 +17559,7 @@ } }, { - "HashCode": -703269531, + "HashCode": 795427359, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.EmptyTemplate", "AssemblyName": "Radzen.Blazor", @@ -17579,7 +17579,7 @@ } }, { - "HashCode": 2036352692, + "HashCode": -477608080, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.GroupHeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -17610,7 +17610,7 @@ } }, { - "HashCode": 1637695664, + "HashCode": 1979193504, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.GroupHeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -17642,7 +17642,7 @@ } }, { - "HashCode": -2027111380, + "HashCode": -1912039557, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.Template", "AssemblyName": "Radzen.Blazor", @@ -17673,7 +17673,7 @@ } }, { - "HashCode": 952664776, + "HashCode": -90075874, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGrid.Template", "AssemblyName": "Radzen.Blazor", @@ -17705,7 +17705,7 @@ } }, { - "HashCode": -1992907176, + "HashCode": 1925498257, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridColumn", "AssemblyName": "Radzen.Blazor", @@ -18084,7 +18084,7 @@ } }, { - "HashCode": -107786236, + "HashCode": -1638170098, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridColumn", "AssemblyName": "Radzen.Blazor", @@ -18464,7 +18464,7 @@ } }, { - "HashCode": -138567746, + "HashCode": 1054653035, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.Columns", "AssemblyName": "Radzen.Blazor", @@ -18483,7 +18483,7 @@ } }, { - "HashCode": -19898536, + "HashCode": -290662969, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.Columns", "AssemblyName": "Radzen.Blazor", @@ -18503,7 +18503,7 @@ } }, { - "HashCode": 49542362, + "HashCode": 1892034682, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.Template", "AssemblyName": "Radzen.Blazor", @@ -18534,7 +18534,7 @@ } }, { - "HashCode": 330857203, + "HashCode": 600108577, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.Template", "AssemblyName": "Radzen.Blazor", @@ -18566,7 +18566,7 @@ } }, { - "HashCode": 773185429, + "HashCode": 1337393218, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.EditTemplate", "AssemblyName": "Radzen.Blazor", @@ -18597,7 +18597,7 @@ } }, { - "HashCode": -660139519, + "HashCode": 1288594119, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.EditTemplate", "AssemblyName": "Radzen.Blazor", @@ -18629,7 +18629,7 @@ } }, { - "HashCode": 1873915221, + "HashCode": -1514333760, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -18648,7 +18648,7 @@ } }, { - "HashCode": -1955690552, + "HashCode": 1482165614, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -18668,7 +18668,7 @@ } }, { - "HashCode": 691167017, + "HashCode": -1342829321, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -18687,7 +18687,7 @@ } }, { - "HashCode": 2025790001, + "HashCode": -2118412015, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -18707,7 +18707,7 @@ } }, { - "HashCode": -339102722, + "HashCode": -363385860, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.GroupFooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -18738,7 +18738,7 @@ } }, { - "HashCode": -92953600, + "HashCode": 739508248, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.GroupFooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -18770,7 +18770,7 @@ } }, { - "HashCode": -1659145518, + "HashCode": -284835241, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.FilterTemplate", "AssemblyName": "Radzen.Blazor", @@ -18801,7 +18801,7 @@ } }, { - "HashCode": 1319785043, + "HashCode": -155532007, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridColumn.FilterTemplate", "AssemblyName": "Radzen.Blazor", @@ -18833,7 +18833,7 @@ } }, { - "HashCode": -49148166, + "HashCode": -1829632129, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataList", "AssemblyName": "Radzen.Blazor", @@ -19091,7 +19091,7 @@ } }, { - "HashCode": 2144238984, + "HashCode": -534906222, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataList", "AssemblyName": "Radzen.Blazor", @@ -19350,7 +19350,7 @@ } }, { - "HashCode": 535330355, + "HashCode": 55479533, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataList.Template", "AssemblyName": "Radzen.Blazor", @@ -19381,7 +19381,7 @@ } }, { - "HashCode": -1071127406, + "HashCode": -941320505, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataList.Template", "AssemblyName": "Radzen.Blazor", @@ -19413,7 +19413,7 @@ } }, { - "HashCode": -388276350, + "HashCode": 718957417, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDatePicker", "AssemblyName": "Radzen.Blazor", @@ -19788,7 +19788,7 @@ } }, { - "HashCode": -1493288713, + "HashCode": 1147009952, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDatePicker", "AssemblyName": "Radzen.Blazor", @@ -20164,7 +20164,7 @@ } }, { - "HashCode": 2011501891, + "HashCode": 2063829909, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDatePicker.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -20183,7 +20183,7 @@ } }, { - "HashCode": -1796788898, + "HashCode": -1294712919, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDatePicker.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -20203,7 +20203,7 @@ } }, { - "HashCode": -795570507, + "HashCode": -1313189783, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDayView", "AssemblyName": "Radzen.Blazor", @@ -20267,7 +20267,7 @@ } }, { - "HashCode": 821905236, + "HashCode": 1534494899, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDayView", "AssemblyName": "Radzen.Blazor", @@ -20332,7 +20332,7 @@ } }, { - "HashCode": 389871227, + "HashCode": 1632894996, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDonutSeries", "AssemblyName": "Radzen.Blazor", @@ -20531,7 +20531,7 @@ } }, { - "HashCode": 2125507392, + "HashCode": 1330504993, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDonutSeries", "AssemblyName": "Radzen.Blazor", @@ -20731,7 +20731,7 @@ } }, { - "HashCode": -1809142473, + "HashCode": -827586152, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDonutSeries.TitleTemplate", "AssemblyName": "Radzen.Blazor", @@ -20750,7 +20750,7 @@ } }, { - "HashCode": -1215283822, + "HashCode": -217706427, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDonutSeries.TitleTemplate", "AssemblyName": "Radzen.Blazor", @@ -20770,7 +20770,7 @@ } }, { - "HashCode": 1564634298, + "HashCode": 2031516593, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDonutSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -20789,7 +20789,7 @@ } }, { - "HashCode": -246295926, + "HashCode": -989188461, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDonutSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -20809,7 +20809,7 @@ } }, { - "HashCode": 830703190, + "HashCode": -2045495535, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDonutSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -20840,7 +20840,7 @@ } }, { - "HashCode": 1835804134, + "HashCode": -1630937350, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDonutSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -20872,7 +20872,7 @@ } }, { - "HashCode": -292986124, + "HashCode": -231075583, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDown", "AssemblyName": "Radzen.Blazor", @@ -21240,7 +21240,7 @@ } }, { - "HashCode": 655607397, + "HashCode": 2105776243, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDown", "AssemblyName": "Radzen.Blazor", @@ -21609,7 +21609,7 @@ } }, { - "HashCode": -2081159003, + "HashCode": 375549086, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDown.Template", "AssemblyName": "Radzen.Blazor", @@ -21640,7 +21640,7 @@ } }, { - "HashCode": 1038350166, + "HashCode": 347563665, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDown.Template", "AssemblyName": "Radzen.Blazor", @@ -21672,7 +21672,7 @@ } }, { - "HashCode": 203271502, + "HashCode": 1033687169, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDownDataGrid", "AssemblyName": "Radzen.Blazor", @@ -22197,7 +22197,7 @@ } }, { - "HashCode": -1804204948, + "HashCode": 1373987060, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDownDataGrid", "AssemblyName": "Radzen.Blazor", @@ -22723,7 +22723,7 @@ } }, { - "HashCode": 428338097, + "HashCode": 242642708, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.ValueTemplate", "AssemblyName": "Radzen.Blazor", @@ -22754,7 +22754,7 @@ } }, { - "HashCode": -469628663, + "HashCode": -1727323716, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.ValueTemplate", "AssemblyName": "Radzen.Blazor", @@ -22786,7 +22786,7 @@ } }, { - "HashCode": -903511743, + "HashCode": 63720356, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.EmptyTemplate", "AssemblyName": "Radzen.Blazor", @@ -22805,7 +22805,7 @@ } }, { - "HashCode": 1599412860, + "HashCode": -1503707430, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.EmptyTemplate", "AssemblyName": "Radzen.Blazor", @@ -22825,7 +22825,7 @@ } }, { - "HashCode": -808912972, + "HashCode": 609289527, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Columns", "AssemblyName": "Radzen.Blazor", @@ -22844,7 +22844,7 @@ } }, { - "HashCode": -494127255, + "HashCode": -10173463, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Columns", "AssemblyName": "Radzen.Blazor", @@ -22864,7 +22864,7 @@ } }, { - "HashCode": -526003313, + "HashCode": 1264579004, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Template", "AssemblyName": "Radzen.Blazor", @@ -22895,7 +22895,7 @@ } }, { - "HashCode": 177577831, + "HashCode": 905600435, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGrid.Template", "AssemblyName": "Radzen.Blazor", @@ -22927,7 +22927,7 @@ } }, { - "HashCode": 518621022, + "HashCode": -1133236037, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenEmailValidator", "AssemblyName": "Radzen.Blazor", @@ -23039,7 +23039,7 @@ } }, { - "HashCode": -2075123097, + "HashCode": 602826286, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenEmailValidator", "AssemblyName": "Radzen.Blazor", @@ -23152,7 +23152,7 @@ } }, { - "HashCode": 340754781, + "HashCode": -1323770962, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenFieldset", "AssemblyName": "Radzen.Blazor", @@ -23323,7 +23323,7 @@ } }, { - "HashCode": 1774590429, + "HashCode": -1558857962, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenFieldset", "AssemblyName": "Radzen.Blazor", @@ -23495,7 +23495,7 @@ } }, { - "HashCode": 694511082, + "HashCode": 480007838, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFieldset.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -23514,7 +23514,7 @@ } }, { - "HashCode": 618622895, + "HashCode": -887075069, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFieldset.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -23534,7 +23534,7 @@ } }, { - "HashCode": 599825421, + "HashCode": 1566226328, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFieldset.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -23553,7 +23553,7 @@ } }, { - "HashCode": 219192700, + "HashCode": -289542850, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFieldset.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -23573,7 +23573,7 @@ } }, { - "HashCode": -326728612, + "HashCode": -983710046, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFieldset.SummaryTemplate", "AssemblyName": "Radzen.Blazor", @@ -23592,7 +23592,7 @@ } }, { - "HashCode": 1993362813, + "HashCode": 181981498, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFieldset.SummaryTemplate", "AssemblyName": "Radzen.Blazor", @@ -23612,7 +23612,7 @@ } }, { - "HashCode": -419558678, + "HashCode": 589434722, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenFileInput", "AssemblyName": "Radzen.Blazor", @@ -23870,7 +23870,7 @@ } }, { - "HashCode": 844303639, + "HashCode": -896404777, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenFileInput", "AssemblyName": "Radzen.Blazor", @@ -24129,7 +24129,7 @@ } }, { - "HashCode": -618817283, + "HashCode": -1494434268, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenFooter", "AssemblyName": "Radzen.Blazor", @@ -24224,7 +24224,7 @@ } }, { - "HashCode": -1276675317, + "HashCode": -298638173, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenFooter", "AssemblyName": "Radzen.Blazor", @@ -24320,7 +24320,7 @@ } }, { - "HashCode": 1196517500, + "HashCode": 1358692419, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFooter.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -24339,7 +24339,7 @@ } }, { - "HashCode": 35610838, + "HashCode": -814246145, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenFooter.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -24359,7 +24359,7 @@ } }, { - "HashCode": 1037891373, + "HashCode": 2090076042, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGoogleMap", "AssemblyName": "Radzen.Blazor", @@ -24510,7 +24510,7 @@ } }, { - "HashCode": 1195414387, + "HashCode": 1490702264, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGoogleMap", "AssemblyName": "Radzen.Blazor", @@ -24662,7 +24662,7 @@ } }, { - "HashCode": 1145949484, + "HashCode": -894850228, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGoogleMap.Markers", "AssemblyName": "Radzen.Blazor", @@ -24681,7 +24681,7 @@ } }, { - "HashCode": 262612803, + "HashCode": 45475983, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGoogleMap.Markers", "AssemblyName": "Radzen.Blazor", @@ -24701,7 +24701,7 @@ } }, { - "HashCode": 952136348, + "HashCode": -2085538417, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGoogleMapMarker", "AssemblyName": "Radzen.Blazor", @@ -24813,7 +24813,7 @@ } }, { - "HashCode": -2011785928, + "HashCode": -1595452685, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGoogleMapMarker", "AssemblyName": "Radzen.Blazor", @@ -24926,7 +24926,7 @@ } }, { - "HashCode": -1065545466, + "HashCode": -863467075, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGravatar", "AssemblyName": "Radzen.Blazor", @@ -25020,7 +25020,7 @@ } }, { - "HashCode": 1538067853, + "HashCode": 1358288563, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGravatar", "AssemblyName": "Radzen.Blazor", @@ -25115,7 +25115,7 @@ } }, { - "HashCode": -1938712725, + "HashCode": 540197869, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridLines", "AssemblyName": "Radzen.Blazor", @@ -25171,7 +25171,7 @@ } }, { - "HashCode": 1398749367, + "HashCode": -979670027, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridLines", "AssemblyName": "Radzen.Blazor", @@ -25228,7 +25228,7 @@ } }, { - "HashCode": -872707401, + "HashCode": 681000920, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHeader", "AssemblyName": "Radzen.Blazor", @@ -25323,7 +25323,7 @@ } }, { - "HashCode": -1359057236, + "HashCode": -665754654, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHeader", "AssemblyName": "Radzen.Blazor", @@ -25419,7 +25419,7 @@ } }, { - "HashCode": -1727441309, + "HashCode": -1747003911, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHeader.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -25438,7 +25438,7 @@ } }, { - "HashCode": -304634196, + "HashCode": 955663943, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHeader.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -25458,7 +25458,7 @@ } }, { - "HashCode": -129457397, + "HashCode": -1478095896, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHeading", "AssemblyName": "Radzen.Blazor", @@ -25561,7 +25561,7 @@ } }, { - "HashCode": 1464747972, + "HashCode": -265381686, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHeading", "AssemblyName": "Radzen.Blazor", @@ -25665,7 +25665,7 @@ } }, { - "HashCode": -339055633, + "HashCode": -1398589338, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtml", "AssemblyName": "Radzen.Blazor", @@ -25703,7 +25703,7 @@ } }, { - "HashCode": 590969479, + "HashCode": 2051453813, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtml", "AssemblyName": "Radzen.Blazor", @@ -25742,7 +25742,7 @@ } }, { - "HashCode": 350718278, + "HashCode": 566558435, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtml.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -25761,7 +25761,7 @@ } }, { - "HashCode": 528483181, + "HashCode": 197757161, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtml.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -25781,7 +25781,7 @@ } }, { - "HashCode": -1922714592, + "HashCode": 1152295886, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditor", "AssemblyName": "Radzen.Blazor", @@ -25988,7 +25988,7 @@ } }, { - "HashCode": -1754625463, + "HashCode": 877947963, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditor", "AssemblyName": "Radzen.Blazor", @@ -26196,7 +26196,7 @@ } }, { - "HashCode": 206318433, + "HashCode": -426108969, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditor.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -26215,7 +26215,7 @@ } }, { - "HashCode": 1746887878, + "HashCode": -1004751895, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditor.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -26235,7 +26235,7 @@ } }, { - "HashCode": 1753465815, + "HashCode": -150114166, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorAlignCenter", "AssemblyName": "Radzen.Blazor", @@ -26263,7 +26263,7 @@ } }, { - "HashCode": 969628157, + "HashCode": 1811399301, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorAlignCenter", "AssemblyName": "Radzen.Blazor", @@ -26292,7 +26292,7 @@ } }, { - "HashCode": 353188329, + "HashCode": -1408014309, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorAlignLeft", "AssemblyName": "Radzen.Blazor", @@ -26320,7 +26320,7 @@ } }, { - "HashCode": -1003588534, + "HashCode": -1964493648, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorAlignLeft", "AssemblyName": "Radzen.Blazor", @@ -26349,7 +26349,7 @@ } }, { - "HashCode": -1169179827, + "HashCode": 1348045848, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorAlignRight", "AssemblyName": "Radzen.Blazor", @@ -26377,7 +26377,7 @@ } }, { - "HashCode": 401639561, + "HashCode": 907710734, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorAlignRight", "AssemblyName": "Radzen.Blazor", @@ -26406,7 +26406,7 @@ } }, { - "HashCode": 1052656621, + "HashCode": -793230861, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorBackground", "AssemblyName": "Radzen.Blazor", @@ -26543,7 +26543,7 @@ } }, { - "HashCode": -1537172164, + "HashCode": -1456349630, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorBackground", "AssemblyName": "Radzen.Blazor", @@ -26681,7 +26681,7 @@ } }, { - "HashCode": -1138603092, + "HashCode": -498192974, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorBackground.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -26700,7 +26700,7 @@ } }, { - "HashCode": 1558227943, + "HashCode": 122066874, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorBackground.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -26720,7 +26720,7 @@ } }, { - "HashCode": 1650705916, + "HashCode": -627864193, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorBackgroundItem", "AssemblyName": "Radzen.Blazor", @@ -26748,7 +26748,7 @@ } }, { - "HashCode": -1071191437, + "HashCode": 235698273, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorBackgroundItem", "AssemblyName": "Radzen.Blazor", @@ -26777,7 +26777,7 @@ } }, { - "HashCode": -1151853769, + "HashCode": -1229507891, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorBold", "AssemblyName": "Radzen.Blazor", @@ -26805,7 +26805,7 @@ } }, { - "HashCode": -26443157, + "HashCode": 149127300, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorBold", "AssemblyName": "Radzen.Blazor", @@ -26834,7 +26834,7 @@ } }, { - "HashCode": 909338536, + "HashCode": 1279909118, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorColor", "AssemblyName": "Radzen.Blazor", @@ -26971,7 +26971,7 @@ } }, { - "HashCode": -1177566880, + "HashCode": 1215879977, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorColor", "AssemblyName": "Radzen.Blazor", @@ -27109,7 +27109,7 @@ } }, { - "HashCode": 2091642815, + "HashCode": 1558185158, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorColor.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -27128,7 +27128,7 @@ } }, { - "HashCode": -795003812, + "HashCode": -957349148, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorColor.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -27148,7 +27148,7 @@ } }, { - "HashCode": 1415099727, + "HashCode": 65766245, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorColorItem", "AssemblyName": "Radzen.Blazor", @@ -27176,7 +27176,7 @@ } }, { - "HashCode": 176733148, + "HashCode": 1935136137, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorColorItem", "AssemblyName": "Radzen.Blazor", @@ -27205,7 +27205,7 @@ } }, { - "HashCode": -99209456, + "HashCode": 2032858552, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool", "AssemblyName": "Radzen.Blazor", @@ -27298,7 +27298,7 @@ } }, { - "HashCode": -50241453, + "HashCode": 1976432847, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool", "AssemblyName": "Radzen.Blazor", @@ -27392,7 +27392,7 @@ } }, { - "HashCode": 1181246574, + "HashCode": 1040565641, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool.Template", "AssemblyName": "Radzen.Blazor", @@ -27423,7 +27423,7 @@ } }, { - "HashCode": 449415984, + "HashCode": -1460136533, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorCustomTool.Template", "AssemblyName": "Radzen.Blazor", @@ -27455,7 +27455,7 @@ } }, { - "HashCode": -665453501, + "HashCode": 779782266, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFontName", "AssemblyName": "Radzen.Blazor", @@ -27493,7 +27493,7 @@ } }, { - "HashCode": -1799873919, + "HashCode": 78086442, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFontName", "AssemblyName": "Radzen.Blazor", @@ -27532,7 +27532,7 @@ } }, { - "HashCode": 1800190392, + "HashCode": -1891891298, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorFontName.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -27551,7 +27551,7 @@ } }, { - "HashCode": -1243335749, + "HashCode": -440526706, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenHtmlEditorFontName.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -27571,7 +27571,7 @@ } }, { - "HashCode": 367449409, + "HashCode": -1115605091, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFontNameItem", "AssemblyName": "Radzen.Blazor", @@ -27608,7 +27608,7 @@ } }, { - "HashCode": 2075095869, + "HashCode": -249873417, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFontNameItem", "AssemblyName": "Radzen.Blazor", @@ -27646,7 +27646,7 @@ } }, { - "HashCode": 671005336, + "HashCode": -283227093, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFontSize", "AssemblyName": "Radzen.Blazor", @@ -27674,7 +27674,7 @@ } }, { - "HashCode": -1816536780, + "HashCode": -392501619, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFontSize", "AssemblyName": "Radzen.Blazor", @@ -27703,7 +27703,7 @@ } }, { - "HashCode": -829578520, + "HashCode": -351643377, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFormatBlock", "AssemblyName": "Radzen.Blazor", @@ -27731,7 +27731,7 @@ } }, { - "HashCode": -2082788458, + "HashCode": 431384868, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorFormatBlock", "AssemblyName": "Radzen.Blazor", @@ -27760,7 +27760,7 @@ } }, { - "HashCode": -812473589, + "HashCode": -1810125523, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorImage", "AssemblyName": "Radzen.Blazor", @@ -27860,7 +27860,7 @@ } }, { - "HashCode": 1990844074, + "HashCode": 1006804664, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorImage", "AssemblyName": "Radzen.Blazor", @@ -27961,7 +27961,7 @@ } }, { - "HashCode": -378411288, + "HashCode": -1450487170, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorIndent", "AssemblyName": "Radzen.Blazor", @@ -27989,7 +27989,7 @@ } }, { - "HashCode": 211063280, + "HashCode": 1939997549, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorIndent", "AssemblyName": "Radzen.Blazor", @@ -28018,7 +28018,7 @@ } }, { - "HashCode": 1291084542, + "HashCode": 1887225969, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorItalic", "AssemblyName": "Radzen.Blazor", @@ -28046,7 +28046,7 @@ } }, { - "HashCode": -1864639914, + "HashCode": -1924069816, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorItalic", "AssemblyName": "Radzen.Blazor", @@ -28075,7 +28075,7 @@ } }, { - "HashCode": 734522870, + "HashCode": 1442803719, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorJustify", "AssemblyName": "Radzen.Blazor", @@ -28103,7 +28103,7 @@ } }, { - "HashCode": -959910584, + "HashCode": 1726000897, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorJustify", "AssemblyName": "Radzen.Blazor", @@ -28132,7 +28132,7 @@ } }, { - "HashCode": 304592016, + "HashCode": 227633364, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorLink", "AssemblyName": "Radzen.Blazor", @@ -28205,7 +28205,7 @@ } }, { - "HashCode": 1064224424, + "HashCode": 360085072, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorLink", "AssemblyName": "Radzen.Blazor", @@ -28279,7 +28279,7 @@ } }, { - "HashCode": -397288824, + "HashCode": 639820448, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorOrderedList", "AssemblyName": "Radzen.Blazor", @@ -28307,7 +28307,7 @@ } }, { - "HashCode": -1357942531, + "HashCode": 1981488039, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorOrderedList", "AssemblyName": "Radzen.Blazor", @@ -28336,7 +28336,7 @@ } }, { - "HashCode": 1458609887, + "HashCode": -1262658441, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorOutdent", "AssemblyName": "Radzen.Blazor", @@ -28364,7 +28364,7 @@ } }, { - "HashCode": 9314797, + "HashCode": -348742096, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorOutdent", "AssemblyName": "Radzen.Blazor", @@ -28393,7 +28393,7 @@ } }, { - "HashCode": -1201237417, + "HashCode": 1973221424, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorRedo", "AssemblyName": "Radzen.Blazor", @@ -28421,7 +28421,7 @@ } }, { - "HashCode": -747700817, + "HashCode": -374984972, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorRedo", "AssemblyName": "Radzen.Blazor", @@ -28450,7 +28450,7 @@ } }, { - "HashCode": -3643985, + "HashCode": 830148478, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorRemoveFormat", "AssemblyName": "Radzen.Blazor", @@ -28478,7 +28478,7 @@ } }, { - "HashCode": 2023602388, + "HashCode": -593377843, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorRemoveFormat", "AssemblyName": "Radzen.Blazor", @@ -28507,7 +28507,7 @@ } }, { - "HashCode": -804559878, + "HashCode": 274257058, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorSeparator", "AssemblyName": "Radzen.Blazor", @@ -28524,7 +28524,7 @@ } }, { - "HashCode": -1609712452, + "HashCode": -1387535078, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorSeparator", "AssemblyName": "Radzen.Blazor", @@ -28542,7 +28542,7 @@ } }, { - "HashCode": 705271190, + "HashCode": -1276634667, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorStrikeThrough", "AssemblyName": "Radzen.Blazor", @@ -28570,7 +28570,7 @@ } }, { - "HashCode": 415079314, + "HashCode": 136239240, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorStrikeThrough", "AssemblyName": "Radzen.Blazor", @@ -28599,7 +28599,7 @@ } }, { - "HashCode": 2021278283, + "HashCode": -603781332, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorSubscript", "AssemblyName": "Radzen.Blazor", @@ -28627,7 +28627,7 @@ } }, { - "HashCode": 372346472, + "HashCode": -1882327325, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorSubscript", "AssemblyName": "Radzen.Blazor", @@ -28656,7 +28656,7 @@ } }, { - "HashCode": 1498135405, + "HashCode": 667594851, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorSuperscript", "AssemblyName": "Radzen.Blazor", @@ -28684,7 +28684,7 @@ } }, { - "HashCode": -882567545, + "HashCode": 195259804, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorSuperscript", "AssemblyName": "Radzen.Blazor", @@ -28713,7 +28713,7 @@ } }, { - "HashCode": 840478, + "HashCode": 2009025969, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUnderline", "AssemblyName": "Radzen.Blazor", @@ -28741,7 +28741,7 @@ } }, { - "HashCode": -201880773, + "HashCode": -1799105926, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUnderline", "AssemblyName": "Radzen.Blazor", @@ -28770,7 +28770,7 @@ } }, { - "HashCode": -846043883, + "HashCode": -1728644164, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUndo", "AssemblyName": "Radzen.Blazor", @@ -28798,7 +28798,7 @@ } }, { - "HashCode": -48757859, + "HashCode": -1343068748, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUndo", "AssemblyName": "Radzen.Blazor", @@ -28827,7 +28827,7 @@ } }, { - "HashCode": 122381622, + "HashCode": -749205011, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUnlink", "AssemblyName": "Radzen.Blazor", @@ -28855,7 +28855,7 @@ } }, { - "HashCode": -1313556645, + "HashCode": -1587441220, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUnlink", "AssemblyName": "Radzen.Blazor", @@ -28884,7 +28884,7 @@ } }, { - "HashCode": -854380296, + "HashCode": -1199177014, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUnorderedList", "AssemblyName": "Radzen.Blazor", @@ -28912,7 +28912,7 @@ } }, { - "HashCode": 1344636728, + "HashCode": -683908359, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenHtmlEditorUnorderedList", "AssemblyName": "Radzen.Blazor", @@ -28941,7 +28941,7 @@ } }, { - "HashCode": -1822559787, + "HashCode": 906293659, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenIcon", "AssemblyName": "Radzen.Blazor", @@ -29044,7 +29044,7 @@ } }, { - "HashCode": 1352532607, + "HashCode": 1597308358, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenIcon", "AssemblyName": "Radzen.Blazor", @@ -29148,7 +29148,7 @@ } }, { - "HashCode": 2023577716, + "HashCode": 664748642, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenImage", "AssemblyName": "Radzen.Blazor", @@ -29262,7 +29262,7 @@ } }, { - "HashCode": 839149082, + "HashCode": -148717981, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenImage", "AssemblyName": "Radzen.Blazor", @@ -29377,7 +29377,7 @@ } }, { - "HashCode": 1269934479, + "HashCode": -1538937252, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenImage.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -29396,7 +29396,7 @@ } }, { - "HashCode": 1997657077, + "HashCode": 366277860, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenImage.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -29416,7 +29416,7 @@ } }, { - "HashCode": 1143482507, + "HashCode": -1536555689, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLabel", "AssemblyName": "Radzen.Blazor", @@ -29519,7 +29519,7 @@ } }, { - "HashCode": -1882083038, + "HashCode": -1268880374, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLabel", "AssemblyName": "Radzen.Blazor", @@ -29623,7 +29623,7 @@ } }, { - "HashCode": -1121600511, + "HashCode": 1048541014, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLayout", "AssemblyName": "Radzen.Blazor", @@ -29718,7 +29718,7 @@ } }, { - "HashCode": -1345057750, + "HashCode": -654266027, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLayout", "AssemblyName": "Radzen.Blazor", @@ -29814,7 +29814,7 @@ } }, { - "HashCode": -544551646, + "HashCode": 157839152, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenLayout.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -29833,7 +29833,7 @@ } }, { - "HashCode": 1367157801, + "HashCode": -1620610352, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenLayout.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -29853,7 +29853,7 @@ } }, { - "HashCode": -1391557645, + "HashCode": -1428149722, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLegend", "AssemblyName": "Radzen.Blazor", @@ -29891,7 +29891,7 @@ } }, { - "HashCode": 1174832341, + "HashCode": 2129570520, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLegend", "AssemblyName": "Radzen.Blazor", @@ -29930,7 +29930,7 @@ } }, { - "HashCode": -1467885804, + "HashCode": -202515436, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLengthValidator", "AssemblyName": "Radzen.Blazor", @@ -30060,7 +30060,7 @@ } }, { - "HashCode": -1138715342, + "HashCode": -829112279, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLengthValidator", "AssemblyName": "Radzen.Blazor", @@ -30191,7 +30191,7 @@ } }, { - "HashCode": -797961535, + "HashCode": 1818878051, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLineSeries", "AssemblyName": "Radzen.Blazor", @@ -30354,7 +30354,7 @@ } }, { - "HashCode": 1766737519, + "HashCode": 34961121, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLineSeries", "AssemblyName": "Radzen.Blazor", @@ -30518,7 +30518,7 @@ } }, { - "HashCode": -1307905770, + "HashCode": 1550285287, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenLineSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -30537,7 +30537,7 @@ } }, { - "HashCode": 69123008, + "HashCode": 843357359, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenLineSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -30557,7 +30557,7 @@ } }, { - "HashCode": 1851730815, + "HashCode": -828677252, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenLineSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -30588,7 +30588,7 @@ } }, { - "HashCode": -89667620, + "HashCode": 1226562608, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenLineSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -30620,7 +30620,7 @@ } }, { - "HashCode": 156459181, + "HashCode": -500882127, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLink", "AssemblyName": "Radzen.Blazor", @@ -30741,7 +30741,7 @@ } }, { - "HashCode": 1830010447, + "HashCode": 1034981115, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLink", "AssemblyName": "Radzen.Blazor", @@ -30863,7 +30863,7 @@ } }, { - "HashCode": 2080943869, + "HashCode": 1234324922, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenListBox", "AssemblyName": "Radzen.Blazor", @@ -31204,7 +31204,7 @@ } }, { - "HashCode": 1023004052, + "HashCode": -303065682, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenListBox", "AssemblyName": "Radzen.Blazor", @@ -31546,7 +31546,7 @@ } }, { - "HashCode": -123007307, + "HashCode": -1088994629, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenListBox.Template", "AssemblyName": "Radzen.Blazor", @@ -31577,7 +31577,7 @@ } }, { - "HashCode": 1472544650, + "HashCode": -1313935140, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenListBox.Template", "AssemblyName": "Radzen.Blazor", @@ -31609,7 +31609,7 @@ } }, { - "HashCode": 1865385048, + "HashCode": -2107315648, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLogin", "AssemblyName": "Radzen.Blazor", @@ -31841,7 +31841,7 @@ } }, { - "HashCode": -241552388, + "HashCode": -871473267, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenLogin", "AssemblyName": "Radzen.Blazor", @@ -32074,7 +32074,7 @@ } }, { - "HashCode": 224725228, + "HashCode": 1167890821, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMarkers", "AssemblyName": "Radzen.Blazor", @@ -32139,7 +32139,7 @@ } }, { - "HashCode": 1091424394, + "HashCode": -1520847240, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMarkers", "AssemblyName": "Radzen.Blazor", @@ -32205,7 +32205,7 @@ } }, { - "HashCode": 540045565, + "HashCode": -2117444085, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMask", "AssemblyName": "Radzen.Blazor", @@ -32418,7 +32418,7 @@ } }, { - "HashCode": 914598269, + "HashCode": -1494437927, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMask", "AssemblyName": "Radzen.Blazor", @@ -32632,7 +32632,7 @@ } }, { - "HashCode": -1587777461, + "HashCode": 1433592797, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMediaQuery", "AssemblyName": "Radzen.Blazor", @@ -32670,7 +32670,7 @@ } }, { - "HashCode": -1336024804, + "HashCode": -1562478667, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMediaQuery", "AssemblyName": "Radzen.Blazor", @@ -32709,7 +32709,7 @@ } }, { - "HashCode": 1702828657, + "HashCode": -1584814920, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMenu", "AssemblyName": "Radzen.Blazor", @@ -32823,7 +32823,7 @@ } }, { - "HashCode": 1847434716, + "HashCode": -1145694282, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMenu", "AssemblyName": "Radzen.Blazor", @@ -32938,7 +32938,7 @@ } }, { - "HashCode": -1396848761, + "HashCode": 1226286200, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenMenu.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -32957,7 +32957,7 @@ } }, { - "HashCode": -521345291, + "HashCode": -1117258827, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenMenu.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -32977,7 +32977,7 @@ } }, { - "HashCode": 832465583, + "HashCode": 995132719, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMenuItem", "AssemblyName": "Radzen.Blazor", @@ -33146,7 +33146,7 @@ } }, { - "HashCode": 838487681, + "HashCode": -358578730, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMenuItem", "AssemblyName": "Radzen.Blazor", @@ -33316,7 +33316,7 @@ } }, { - "HashCode": -974148950, + "HashCode": -1952500716, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenMenuItem.Template", "AssemblyName": "Radzen.Blazor", @@ -33335,7 +33335,7 @@ } }, { - "HashCode": 493030612, + "HashCode": 1880922282, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenMenuItem.Template", "AssemblyName": "Radzen.Blazor", @@ -33355,7 +33355,7 @@ } }, { - "HashCode": -1385462576, + "HashCode": -1691053002, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenMenuItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -33374,7 +33374,7 @@ } }, { - "HashCode": 943844127, + "HashCode": -1498477257, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenMenuItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -33394,7 +33394,7 @@ } }, { - "HashCode": -1436757392, + "HashCode": -567145831, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMonthView", "AssemblyName": "Radzen.Blazor", @@ -33440,7 +33440,7 @@ } }, { - "HashCode": 103936290, + "HashCode": 1108967900, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenMonthView", "AssemblyName": "Radzen.Blazor", @@ -33487,7 +33487,7 @@ } }, { - "HashCode": -164074802, + "HashCode": -1385792851, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNumeric", "AssemblyName": "Radzen.Blazor", @@ -33725,7 +33725,7 @@ } }, { - "HashCode": 70106934, + "HashCode": -834532640, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNumeric", "AssemblyName": "Radzen.Blazor", @@ -33964,7 +33964,7 @@ } }, { - "HashCode": -953323352, + "HashCode": -1073861302, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNumericRangeValidator", "AssemblyName": "Radzen.Blazor", @@ -34094,7 +34094,7 @@ } }, { - "HashCode": -2122079776, + "HashCode": -144994992, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNumericRangeValidator", "AssemblyName": "Radzen.Blazor", @@ -34225,7 +34225,7 @@ } }, { - "HashCode": 1916252082, + "HashCode": -1023476995, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPager", "AssemblyName": "Radzen.Blazor", @@ -34412,7 +34412,7 @@ } }, { - "HashCode": 1159089716, + "HashCode": 1428487329, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPager", "AssemblyName": "Radzen.Blazor", @@ -34600,7 +34600,7 @@ } }, { - "HashCode": -953083934, + "HashCode": 1206994335, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPanel", "AssemblyName": "Radzen.Blazor", @@ -34781,7 +34781,7 @@ } }, { - "HashCode": 1360270467, + "HashCode": 436836266, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPanel", "AssemblyName": "Radzen.Blazor", @@ -34963,7 +34963,7 @@ } }, { - "HashCode": 777866820, + "HashCode": -205676982, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -34982,7 +34982,7 @@ } }, { - "HashCode": 2032422141, + "HashCode": -1544181549, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -35002,7 +35002,7 @@ } }, { - "HashCode": -1563156288, + "HashCode": 570837204, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.SummaryTemplate", "AssemblyName": "Radzen.Blazor", @@ -35021,7 +35021,7 @@ } }, { - "HashCode": 1666827741, + "HashCode": -1845479156, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.SummaryTemplate", "AssemblyName": "Radzen.Blazor", @@ -35041,7 +35041,7 @@ } }, { - "HashCode": -1821242261, + "HashCode": -966590586, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -35060,7 +35060,7 @@ } }, { - "HashCode": 39549287, + "HashCode": -373628493, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -35080,7 +35080,7 @@ } }, { - "HashCode": 1774058495, + "HashCode": 1928659861, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -35099,7 +35099,7 @@ } }, { - "HashCode": -1911023815, + "HashCode": -1320096325, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanel.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -35119,7 +35119,7 @@ } }, { - "HashCode": -1392863094, + "HashCode": -668748886, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPanelMenu", "AssemblyName": "Radzen.Blazor", @@ -35234,7 +35234,7 @@ } }, { - "HashCode": 518987450, + "HashCode": -1693200603, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPanelMenu", "AssemblyName": "Radzen.Blazor", @@ -35350,7 +35350,7 @@ } }, { - "HashCode": -1156492705, + "HashCode": 574667237, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanelMenu.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -35369,7 +35369,7 @@ } }, { - "HashCode": 945769926, + "HashCode": 1055787236, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanelMenu.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -35389,7 +35389,7 @@ } }, { - "HashCode": 1752091083, + "HashCode": -1170437335, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPanelMenuItem", "AssemblyName": "Radzen.Blazor", @@ -35576,7 +35576,7 @@ } }, { - "HashCode": -455948332, + "HashCode": -1014764735, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPanelMenuItem", "AssemblyName": "Radzen.Blazor", @@ -35764,7 +35764,7 @@ } }, { - "HashCode": -1620534396, + "HashCode": 1042098725, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanelMenuItem.Template", "AssemblyName": "Radzen.Blazor", @@ -35783,7 +35783,7 @@ } }, { - "HashCode": 529732883, + "HashCode": 1271211048, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanelMenuItem.Template", "AssemblyName": "Radzen.Blazor", @@ -35803,7 +35803,7 @@ } }, { - "HashCode": -404272830, + "HashCode": 833177129, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanelMenuItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -35822,7 +35822,7 @@ } }, { - "HashCode": 403745797, + "HashCode": -1405187035, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPanelMenuItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -35842,7 +35842,7 @@ } }, { - "HashCode": 1491980583, + "HashCode": -189891974, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPassword", "AssemblyName": "Radzen.Blazor", @@ -36019,7 +36019,7 @@ } }, { - "HashCode": -738004459, + "HashCode": 1212201615, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPassword", "AssemblyName": "Radzen.Blazor", @@ -36197,7 +36197,7 @@ } }, { - "HashCode": 1418078842, + "HashCode": -868650594, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPieSeries", "AssemblyName": "Radzen.Blazor", @@ -36377,7 +36377,7 @@ } }, { - "HashCode": 1053541738, + "HashCode": -652613751, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenPieSeries", "AssemblyName": "Radzen.Blazor", @@ -36558,7 +36558,7 @@ } }, { - "HashCode": -136865230, + "HashCode": -716281305, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPieSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -36577,7 +36577,7 @@ } }, { - "HashCode": -728806169, + "HashCode": 704853282, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPieSeries.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -36597,7 +36597,7 @@ } }, { - "HashCode": -1959806780, + "HashCode": 525960440, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPieSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -36628,7 +36628,7 @@ } }, { - "HashCode": -1224883414, + "HashCode": -1340424425, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenPieSeries.TooltipTemplate", "AssemblyName": "Radzen.Blazor", @@ -36660,7 +36660,7 @@ } }, { - "HashCode": 214034390, + "HashCode": 2135630901, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenProfileMenu", "AssemblyName": "Radzen.Blazor", @@ -36775,7 +36775,7 @@ } }, { - "HashCode": 689126225, + "HashCode": -710225535, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenProfileMenu", "AssemblyName": "Radzen.Blazor", @@ -36891,7 +36891,7 @@ } }, { - "HashCode": 2139951665, + "HashCode": -450995509, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenProfileMenu.Template", "AssemblyName": "Radzen.Blazor", @@ -36910,7 +36910,7 @@ } }, { - "HashCode": 1968123054, + "HashCode": -2346217, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenProfileMenu.Template", "AssemblyName": "Radzen.Blazor", @@ -36930,7 +36930,7 @@ } }, { - "HashCode": -100496030, + "HashCode": 1711645257, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenProfileMenu.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -36949,7 +36949,7 @@ } }, { - "HashCode": 653885918, + "HashCode": 1328917618, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenProfileMenu.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -36969,7 +36969,7 @@ } }, { - "HashCode": 161986152, + "HashCode": -527905614, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenProfileMenuItem", "AssemblyName": "Radzen.Blazor", @@ -37099,7 +37099,7 @@ } }, { - "HashCode": 1027927457, + "HashCode": 841509643, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenProfileMenuItem", "AssemblyName": "Radzen.Blazor", @@ -37230,7 +37230,7 @@ } }, { - "HashCode": -304829622, + "HashCode": 1579871432, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenProgressBar", "AssemblyName": "Radzen.Blazor", @@ -37381,7 +37381,7 @@ } }, { - "HashCode": -67229580, + "HashCode": 1067558540, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenProgressBar", "AssemblyName": "Radzen.Blazor", @@ -37533,7 +37533,7 @@ } }, { - "HashCode": -525241680, + "HashCode": -579350531, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGaugeScale", "AssemblyName": "Radzen.Blazor", @@ -37753,7 +37753,7 @@ } }, { - "HashCode": 1687960596, + "HashCode": 1682866488, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGaugeScale", "AssemblyName": "Radzen.Blazor", @@ -37974,7 +37974,7 @@ } }, { - "HashCode": -1973238234, + "HashCode": -1656329413, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadialGaugeScale.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -37993,7 +37993,7 @@ } }, { - "HashCode": -2082592804, + "HashCode": -1382977541, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadialGaugeScale.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -38013,7 +38013,7 @@ } }, { - "HashCode": 253697402, + "HashCode": 1131752983, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer", "AssemblyName": "Radzen.Blazor", @@ -38133,7 +38133,7 @@ } }, { - "HashCode": 2123654427, + "HashCode": -1805258343, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer", "AssemblyName": "Radzen.Blazor", @@ -38254,7 +38254,7 @@ } }, { - "HashCode": 1867701330, + "HashCode": 2134940410, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer.Template", "AssemblyName": "Radzen.Blazor", @@ -38285,7 +38285,7 @@ } }, { - "HashCode": 2047522646, + "HashCode": -1870277767, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadialGaugeScalePointer.Template", "AssemblyName": "Radzen.Blazor", @@ -38317,7 +38317,7 @@ } }, { - "HashCode": 70054649, + "HashCode": -1119191880, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGaugeScaleRange", "AssemblyName": "Radzen.Blazor", @@ -38390,7 +38390,7 @@ } }, { - "HashCode": 951444234, + "HashCode": -170819542, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGaugeScaleRange", "AssemblyName": "Radzen.Blazor", @@ -38464,7 +38464,7 @@ } }, { - "HashCode": 193973216, + "HashCode": 1525640626, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadioButtonList", "AssemblyName": "Radzen.Blazor", @@ -38704,7 +38704,7 @@ } }, { - "HashCode": -1313837037, + "HashCode": -1748752959, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadioButtonList", "AssemblyName": "Radzen.Blazor", @@ -38945,7 +38945,7 @@ } }, { - "HashCode": -29014989, + "HashCode": -1802131320, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadioButtonList.Items", "AssemblyName": "Radzen.Blazor", @@ -38964,7 +38964,7 @@ } }, { - "HashCode": 1715696808, + "HashCode": -1063167143, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadioButtonList.Items", "AssemblyName": "Radzen.Blazor", @@ -38984,7 +38984,7 @@ } }, { - "HashCode": -566051667, + "HashCode": 273265014, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadioButtonListItem", "AssemblyName": "Radzen.Blazor", @@ -39109,7 +39109,7 @@ } }, { - "HashCode": -1998132507, + "HashCode": 1508715037, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadioButtonListItem", "AssemblyName": "Radzen.Blazor", @@ -39235,7 +39235,7 @@ } }, { - "HashCode": 2138125569, + "HashCode": 1067470884, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRating", "AssemblyName": "Radzen.Blazor", @@ -39412,7 +39412,7 @@ } }, { - "HashCode": -1247187340, + "HashCode": -1745191510, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRating", "AssemblyName": "Radzen.Blazor", @@ -39590,7 +39590,7 @@ } }, { - "HashCode": -407093163, + "HashCode": 212209034, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRegexValidator", "AssemblyName": "Radzen.Blazor", @@ -39711,7 +39711,7 @@ } }, { - "HashCode": -1454534565, + "HashCode": -1106055498, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRegexValidator", "AssemblyName": "Radzen.Blazor", @@ -39833,7 +39833,7 @@ } }, { - "HashCode": -1634463250, + "HashCode": 1445641486, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRequiredValidator", "AssemblyName": "Radzen.Blazor", @@ -39954,7 +39954,7 @@ } }, { - "HashCode": -1065558324, + "HashCode": 807609624, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRequiredValidator", "AssemblyName": "Radzen.Blazor", @@ -40076,7 +40076,7 @@ } }, { - "HashCode": 940142869, + "HashCode": 1082301396, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenScheduler", "AssemblyName": "Radzen.Blazor", @@ -40320,7 +40320,7 @@ } }, { - "HashCode": -816796204, + "HashCode": -405030152, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenScheduler", "AssemblyName": "Radzen.Blazor", @@ -40565,7 +40565,7 @@ } }, { - "HashCode": -1812719820, + "HashCode": -252834326, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenScheduler.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -40584,7 +40584,7 @@ } }, { - "HashCode": -2136597996, + "HashCode": -1598355876, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenScheduler.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -40604,7 +40604,7 @@ } }, { - "HashCode": -110396439, + "HashCode": -60586308, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenScheduler.Template", "AssemblyName": "Radzen.Blazor", @@ -40635,7 +40635,7 @@ } }, { - "HashCode": -337863752, + "HashCode": 640454502, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenScheduler.Template", "AssemblyName": "Radzen.Blazor", @@ -40667,7 +40667,7 @@ } }, { - "HashCode": 50683340, + "HashCode": -157594506, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSelectBar", "AssemblyName": "Radzen.Blazor", @@ -40888,7 +40888,7 @@ } }, { - "HashCode": 872586400, + "HashCode": 43518861, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSelectBar", "AssemblyName": "Radzen.Blazor", @@ -41110,7 +41110,7 @@ } }, { - "HashCode": 1403745419, + "HashCode": 147718950, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSelectBar.Items", "AssemblyName": "Radzen.Blazor", @@ -41129,7 +41129,7 @@ } }, { - "HashCode": 948059580, + "HashCode": 163603332, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSelectBar.Items", "AssemblyName": "Radzen.Blazor", @@ -41149,7 +41149,7 @@ } }, { - "HashCode": 1673877936, + "HashCode": 1247187604, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSelectBarItem", "AssemblyName": "Radzen.Blazor", @@ -41252,7 +41252,7 @@ } }, { - "HashCode": -958895697, + "HashCode": -1538467692, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSelectBarItem", "AssemblyName": "Radzen.Blazor", @@ -41356,7 +41356,7 @@ } }, { - "HashCode": -1728349151, + "HashCode": -1709617181, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSidebar", "AssemblyName": "Radzen.Blazor", @@ -41479,7 +41479,7 @@ } }, { - "HashCode": 2079032403, + "HashCode": -307192900, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSidebar", "AssemblyName": "Radzen.Blazor", @@ -41603,7 +41603,7 @@ } }, { - "HashCode": 1296405385, + "HashCode": -1909317089, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSidebar.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -41622,7 +41622,7 @@ } }, { - "HashCode": -1968478273, + "HashCode": 491042043, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSidebar.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -41642,7 +41642,7 @@ } }, { - "HashCode": 1158395066, + "HashCode": -2105417664, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSidebarToggle", "AssemblyName": "Radzen.Blazor", @@ -41737,7 +41737,7 @@ } }, { - "HashCode": 362850098, + "HashCode": 781685611, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSidebarToggle", "AssemblyName": "Radzen.Blazor", @@ -41833,7 +41833,7 @@ } }, { - "HashCode": 510657050, + "HashCode": -1323234469, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSlider", "AssemblyName": "Radzen.Blazor", @@ -42044,7 +42044,7 @@ } }, { - "HashCode": -911245183, + "HashCode": 2132111646, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSlider", "AssemblyName": "Radzen.Blazor", @@ -42256,7 +42256,7 @@ } }, { - "HashCode": -1311961849, + "HashCode": -1019958839, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitButton", "AssemblyName": "Radzen.Blazor", @@ -42397,7 +42397,7 @@ } }, { - "HashCode": -117951320, + "HashCode": 966531348, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitButton", "AssemblyName": "Radzen.Blazor", @@ -42539,7 +42539,7 @@ } }, { - "HashCode": -495222697, + "HashCode": 1668785502, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSplitButton.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -42558,7 +42558,7 @@ } }, { - "HashCode": -267145007, + "HashCode": 1150066769, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSplitButton.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -42578,7 +42578,7 @@ } }, { - "HashCode": -859843037, + "HashCode": 107681196, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitButtonItem", "AssemblyName": "Radzen.Blazor", @@ -42690,7 +42690,7 @@ } }, { - "HashCode": 966319292, + "HashCode": 64001985, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitButtonItem", "AssemblyName": "Radzen.Blazor", @@ -42803,7 +42803,7 @@ } }, { - "HashCode": -987726088, + "HashCode": 645392285, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitter", "AssemblyName": "Radzen.Blazor", @@ -42938,7 +42938,7 @@ } }, { - "HashCode": 113091498, + "HashCode": 219921840, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitter", "AssemblyName": "Radzen.Blazor", @@ -43074,7 +43074,7 @@ } }, { - "HashCode": 764807094, + "HashCode": 878842637, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSplitter.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -43093,7 +43093,7 @@ } }, { - "HashCode": 1299446050, + "HashCode": -1559562265, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSplitter.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -43113,7 +43113,7 @@ } }, { - "HashCode": -1039253478, + "HashCode": -829694213, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitterPane", "AssemblyName": "Radzen.Blazor", @@ -43262,7 +43262,7 @@ } }, { - "HashCode": -159292919, + "HashCode": -1505306388, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSplitterPane", "AssemblyName": "Radzen.Blazor", @@ -43412,7 +43412,7 @@ } }, { - "HashCode": 817015512, + "HashCode": 581111486, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSplitterPane.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -43431,7 +43431,7 @@ } }, { - "HashCode": -1814697486, + "HashCode": 1486187063, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSplitterPane.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -43451,7 +43451,7 @@ } }, { - "HashCode": 255349084, + "HashCode": 1246113472, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSSRSViewer", "AssemblyName": "Radzen.Blazor", @@ -43582,7 +43582,7 @@ } }, { - "HashCode": -1733266260, + "HashCode": 1024665096, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSSRSViewer", "AssemblyName": "Radzen.Blazor", @@ -43714,7 +43714,7 @@ } }, { - "HashCode": 1921507277, + "HashCode": 1539571351, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSSRSViewer.Parameters", "AssemblyName": "Radzen.Blazor", @@ -43733,7 +43733,7 @@ } }, { - "HashCode": -1525029612, + "HashCode": -1919732113, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSSRSViewer.Parameters", "AssemblyName": "Radzen.Blazor", @@ -43753,7 +43753,7 @@ } }, { - "HashCode": -53493010, + "HashCode": -1770179309, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSSRSViewerParameter", "AssemblyName": "Radzen.Blazor", @@ -43790,7 +43790,7 @@ } }, { - "HashCode": -1784868916, + "HashCode": 407204746, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSSRSViewerParameter", "AssemblyName": "Radzen.Blazor", @@ -43828,7 +43828,7 @@ } }, { - "HashCode": 1675704453, + "HashCode": -1874980654, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSteps", "AssemblyName": "Radzen.Blazor", @@ -43979,7 +43979,7 @@ } }, { - "HashCode": -802808456, + "HashCode": 1587059734, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSteps", "AssemblyName": "Radzen.Blazor", @@ -44131,7 +44131,7 @@ } }, { - "HashCode": -1986289883, + "HashCode": -2039850930, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSteps.Steps", "AssemblyName": "Radzen.Blazor", @@ -44150,7 +44150,7 @@ } }, { - "HashCode": -531758088, + "HashCode": 1018390439, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenSteps.Steps", "AssemblyName": "Radzen.Blazor", @@ -44170,7 +44170,7 @@ } }, { - "HashCode": -561418507, + "HashCode": -431700327, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenStepsItem", "AssemblyName": "Radzen.Blazor", @@ -44312,7 +44312,7 @@ } }, { - "HashCode": 765559286, + "HashCode": -522970180, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenStepsItem", "AssemblyName": "Radzen.Blazor", @@ -44455,7 +44455,7 @@ } }, { - "HashCode": 349924575, + "HashCode": 1017632795, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenStepsItem.Template", "AssemblyName": "Radzen.Blazor", @@ -44486,7 +44486,7 @@ } }, { - "HashCode": -1809916606, + "HashCode": 2033325445, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenStepsItem.Template", "AssemblyName": "Radzen.Blazor", @@ -44518,7 +44518,7 @@ } }, { - "HashCode": -215720167, + "HashCode": 1871220680, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenStepsItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -44537,7 +44537,7 @@ } }, { - "HashCode": 708702622, + "HashCode": -1331209604, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenStepsItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -44557,7 +44557,7 @@ } }, { - "HashCode": 537199201, + "HashCode": 1113025131, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSwitch", "AssemblyName": "Radzen.Blazor", @@ -44716,7 +44716,7 @@ } }, { - "HashCode": 1169771162, + "HashCode": 457671191, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenSwitch", "AssemblyName": "Radzen.Blazor", @@ -44876,7 +44876,7 @@ } }, { - "HashCode": 1813458619, + "HashCode": 1108311410, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTabs", "AssemblyName": "Radzen.Blazor", @@ -45020,7 +45020,7 @@ } }, { - "HashCode": -1940760861, + "HashCode": 1148534484, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTabs", "AssemblyName": "Radzen.Blazor", @@ -45165,7 +45165,7 @@ } }, { - "HashCode": 1229056364, + "HashCode": -1672370501, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTabs.Tabs", "AssemblyName": "Radzen.Blazor", @@ -45184,7 +45184,7 @@ } }, { - "HashCode": 2045000946, + "HashCode": 583345771, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTabs.Tabs", "AssemblyName": "Radzen.Blazor", @@ -45204,7 +45204,7 @@ } }, { - "HashCode": 910435260, + "HashCode": -1568170680, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTabsItem", "AssemblyName": "Radzen.Blazor", @@ -45316,7 +45316,7 @@ } }, { - "HashCode": -1294039584, + "HashCode": -1017577432, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTabsItem", "AssemblyName": "Radzen.Blazor", @@ -45429,7 +45429,7 @@ } }, { - "HashCode": 1511022649, + "HashCode": 100168742, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTabsItem.Template", "AssemblyName": "Radzen.Blazor", @@ -45460,7 +45460,7 @@ } }, { - "HashCode": 472224696, + "HashCode": 1307930044, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTabsItem.Template", "AssemblyName": "Radzen.Blazor", @@ -45492,7 +45492,7 @@ } }, { - "HashCode": 151535313, + "HashCode": -927476060, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTabsItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -45511,7 +45511,7 @@ } }, { - "HashCode": 267113814, + "HashCode": 832695769, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTabsItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -45531,7 +45531,7 @@ } }, { - "HashCode": -16133428, + "HashCode": -1186843453, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTemplateForm", "AssemblyName": "Radzen.Blazor", @@ -45707,7 +45707,7 @@ } }, { - "HashCode": 1813067535, + "HashCode": 1311171144, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTemplateForm", "AssemblyName": "Radzen.Blazor", @@ -45884,7 +45884,7 @@ } }, { - "HashCode": 50347507, + "HashCode": 486554998, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTemplateForm.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -45915,7 +45915,7 @@ } }, { - "HashCode": 1717448758, + "HashCode": -1366820830, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTemplateForm.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -45947,7 +45947,7 @@ } }, { - "HashCode": 953766759, + "HashCode": 1674317317, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTextArea", "AssemblyName": "Radzen.Blazor", @@ -46142,7 +46142,7 @@ } }, { - "HashCode": -944591128, + "HashCode": 275693740, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTextArea", "AssemblyName": "Radzen.Blazor", @@ -46338,7 +46338,7 @@ } }, { - "HashCode": 1488991913, + "HashCode": -1704141119, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTextBox", "AssemblyName": "Radzen.Blazor", @@ -46533,7 +46533,7 @@ } }, { - "HashCode": -1194068390, + "HashCode": -974262679, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTextBox", "AssemblyName": "Radzen.Blazor", @@ -46729,7 +46729,7 @@ } }, { - "HashCode": 1969691262, + "HashCode": 398655094, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTicks", "AssemblyName": "Radzen.Blazor", @@ -46796,7 +46796,7 @@ } }, { - "HashCode": 1020281943, + "HashCode": 850834386, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTicks", "AssemblyName": "Radzen.Blazor", @@ -46864,7 +46864,7 @@ } }, { - "HashCode": 1492572482, + "HashCode": 1207029383, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTicks.Template", "AssemblyName": "Radzen.Blazor", @@ -46895,7 +46895,7 @@ } }, { - "HashCode": 624486899, + "HashCode": -294698360, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTicks.Template", "AssemblyName": "Radzen.Blazor", @@ -46927,7 +46927,7 @@ } }, { - "HashCode": -1628735086, + "HashCode": -1772821708, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTree", "AssemblyName": "Radzen.Blazor", @@ -47125,7 +47125,7 @@ } }, { - "HashCode": -708250367, + "HashCode": -1408506358, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTree", "AssemblyName": "Radzen.Blazor", @@ -47324,7 +47324,7 @@ } }, { - "HashCode": -1683240725, + "HashCode": 1932478803, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTree.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -47343,7 +47343,7 @@ } }, { - "HashCode": 109301182, + "HashCode": -1885093114, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTree.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -47363,7 +47363,7 @@ } }, { - "HashCode": 1784485752, + "HashCode": 1093665897, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTreeItem", "AssemblyName": "Radzen.Blazor", @@ -47466,7 +47466,7 @@ } }, { - "HashCode": 375744065, + "HashCode": 1765138324, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTreeItem", "AssemblyName": "Radzen.Blazor", @@ -47570,7 +47570,7 @@ } }, { - "HashCode": -2091094333, + "HashCode": -1632551481, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTreeItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -47589,7 +47589,7 @@ } }, { - "HashCode": -105960349, + "HashCode": -1364677712, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTreeItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -47609,7 +47609,7 @@ } }, { - "HashCode": 781673882, + "HashCode": -1964429436, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTreeItem.Template", "AssemblyName": "Radzen.Blazor", @@ -47640,7 +47640,7 @@ } }, { - "HashCode": -1786438099, + "HashCode": -367484158, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTreeItem.Template", "AssemblyName": "Radzen.Blazor", @@ -47672,7 +47672,7 @@ } }, { - "HashCode": -1412630433, + "HashCode": -1393408276, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTreeLevel", "AssemblyName": "Radzen.Blazor", @@ -47769,7 +47769,7 @@ } }, { - "HashCode": 773819311, + "HashCode": -1209923972, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTreeLevel", "AssemblyName": "Radzen.Blazor", @@ -47867,7 +47867,7 @@ } }, { - "HashCode": -1662910990, + "HashCode": -1892175558, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTreeLevel.Template", "AssemblyName": "Radzen.Blazor", @@ -47898,7 +47898,7 @@ } }, { - "HashCode": -1117085148, + "HashCode": 673780057, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenTreeLevel.Template", "AssemblyName": "Radzen.Blazor", @@ -47930,7 +47930,7 @@ } }, { - "HashCode": -2019912222, + "HashCode": -1865759466, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenUpload", "AssemblyName": "Radzen.Blazor", @@ -48128,7 +48128,7 @@ } }, { - "HashCode": -2114304173, + "HashCode": -1427549315, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenUpload", "AssemblyName": "Radzen.Blazor", @@ -48327,7 +48327,7 @@ } }, { - "HashCode": -352544136, + "HashCode": -579931192, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenUpload.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -48346,7 +48346,7 @@ } }, { - "HashCode": -1707405128, + "HashCode": -41037013, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenUpload.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -48366,7 +48366,7 @@ } }, { - "HashCode": -491178619, + "HashCode": 2072616462, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenWeekView", "AssemblyName": "Radzen.Blazor", @@ -48430,7 +48430,7 @@ } }, { - "HashCode": 239226616, + "HashCode": -1441964471, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenWeekView", "AssemblyName": "Radzen.Blazor", @@ -48495,7 +48495,7 @@ } }, { - "HashCode": -1704432068, + "HashCode": 291346090, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenArcGauge", "AssemblyName": "Radzen.Blazor", @@ -48589,7 +48589,7 @@ } }, { - "HashCode": 326851271, + "HashCode": -1339011181, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenArcGauge", "AssemblyName": "Radzen.Blazor", @@ -48684,7 +48684,7 @@ } }, { - "HashCode": -628985385, + "HashCode": 1683908874, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenArcGauge.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -48703,7 +48703,7 @@ } }, { - "HashCode": -1530114988, + "HashCode": -2002110884, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenArcGauge.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -48723,7 +48723,7 @@ } }, { - "HashCode": -995303658, + "HashCode": -715537444, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCategoryAxis", "AssemblyName": "Radzen.Blazor", @@ -48851,7 +48851,7 @@ } }, { - "HashCode": 665451427, + "HashCode": 1357922495, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenCategoryAxis", "AssemblyName": "Radzen.Blazor", @@ -48980,7 +48980,7 @@ } }, { - "HashCode": 260751530, + "HashCode": -1287892826, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenCategoryAxis.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -48999,7 +48999,7 @@ } }, { - "HashCode": 424248771, + "HashCode": 637026832, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenCategoryAxis.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -49019,7 +49019,7 @@ } }, { - "HashCode": -206538164, + "HashCode": -1091787670, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridCell", "AssemblyName": "Radzen.Blazor", @@ -49134,7 +49134,7 @@ } }, { - "HashCode": 1784769423, + "HashCode": 2117831348, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridCell", "AssemblyName": "Radzen.Blazor", @@ -49250,7 +49250,7 @@ } }, { - "HashCode": 885128365, + "HashCode": 1055064994, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridCell.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -49268,7 +49268,7 @@ } }, { - "HashCode": -887428659, + "HashCode": -350398827, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridCell.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -49287,7 +49287,7 @@ } }, { - "HashCode": 121306035, + "HashCode": -743624376, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridFilterMenu", "AssemblyName": "Radzen.Blazor", @@ -49335,7 +49335,7 @@ } }, { - "HashCode": -948265350, + "HashCode": -1051953395, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridFilterMenu", "AssemblyName": "Radzen.Blazor", @@ -49384,7 +49384,7 @@ } }, { - "HashCode": 689147455, + "HashCode": -993919179, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridFooterCell", "AssemblyName": "Radzen.Blazor", @@ -49456,7 +49456,7 @@ } }, { - "HashCode": -2041494598, + "HashCode": -1299023098, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridFooterCell", "AssemblyName": "Radzen.Blazor", @@ -49529,7 +49529,7 @@ } }, { - "HashCode": -191902208, + "HashCode": 1836537369, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridGroupFooterRow", "AssemblyName": "Radzen.Blazor", @@ -49602,7 +49602,7 @@ } }, { - "HashCode": -612758318, + "HashCode": -1189101611, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridGroupFooterRow", "AssemblyName": "Radzen.Blazor", @@ -49676,7 +49676,7 @@ } }, { - "HashCode": -1186448522, + "HashCode": -976031809, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridGroupRow", "AssemblyName": "Radzen.Blazor", @@ -49749,7 +49749,7 @@ } }, { - "HashCode": 566463725, + "HashCode": -23011932, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridGroupRow", "AssemblyName": "Radzen.Blazor", @@ -49823,7 +49823,7 @@ } }, { - "HashCode": -1471303215, + "HashCode": -777238151, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridHeaderCell", "AssemblyName": "Radzen.Blazor", @@ -49903,7 +49903,7 @@ } }, { - "HashCode": -1554443475, + "HashCode": 1194670915, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridHeaderCell", "AssemblyName": "Radzen.Blazor", @@ -49984,7 +49984,7 @@ } }, { - "HashCode": 1100664440, + "HashCode": 1191264934, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridRow", "AssemblyName": "Radzen.Blazor", @@ -50090,7 +50090,7 @@ } }, { - "HashCode": 574028027, + "HashCode": 937773315, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDataGridRow", "AssemblyName": "Radzen.Blazor", @@ -50197,7 +50197,7 @@ } }, { - "HashCode": -1730969071, + "HashCode": 1756184840, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridRow.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -50215,7 +50215,7 @@ } }, { - "HashCode": -1083985585, + "HashCode": -1223940607, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDataGridRow.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -50234,7 +50234,7 @@ } }, { - "HashCode": 1504960795, + "HashCode": 678729973, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDialog", "AssemblyName": "Radzen.Blazor", @@ -50250,7 +50250,7 @@ } }, { - "HashCode": -1361258660, + "HashCode": 501385812, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDialog", "AssemblyName": "Radzen.Blazor", @@ -50267,7 +50267,7 @@ } }, { - "HashCode": -1622809366, + "HashCode": -698197799, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn", "AssemblyName": "Radzen.Blazor", @@ -50630,7 +50630,7 @@ } }, { - "HashCode": 195334073, + "HashCode": -372466239, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn", "AssemblyName": "Radzen.Blazor", @@ -50994,7 +50994,7 @@ } }, { - "HashCode": 2057102104, + "HashCode": -1056141762, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Columns", "AssemblyName": "Radzen.Blazor", @@ -51013,7 +51013,7 @@ } }, { - "HashCode": -430708907, + "HashCode": -616306756, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Columns", "AssemblyName": "Radzen.Blazor", @@ -51033,7 +51033,7 @@ } }, { - "HashCode": 1185972139, + "HashCode": 1516284864, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Template", "AssemblyName": "Radzen.Blazor", @@ -51064,7 +51064,7 @@ } }, { - "HashCode": 1602778704, + "HashCode": -872590463, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.Template", "AssemblyName": "Radzen.Blazor", @@ -51096,7 +51096,7 @@ } }, { - "HashCode": -2003789818, + "HashCode": -260652961, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.EditTemplate", "AssemblyName": "Radzen.Blazor", @@ -51127,7 +51127,7 @@ } }, { - "HashCode": 431174634, + "HashCode": -242482408, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.EditTemplate", "AssemblyName": "Radzen.Blazor", @@ -51159,7 +51159,7 @@ } }, { - "HashCode": -2011831390, + "HashCode": 1470431607, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -51178,7 +51178,7 @@ } }, { - "HashCode": 1077437990, + "HashCode": -1507599759, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -51198,7 +51198,7 @@ } }, { - "HashCode": -1564261680, + "HashCode": -104605128, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -51217,7 +51217,7 @@ } }, { - "HashCode": 1350796843, + "HashCode": -1974092075, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -51237,7 +51237,7 @@ } }, { - "HashCode": 964911015, + "HashCode": -1008300191, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.GroupFooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -51268,7 +51268,7 @@ } }, { - "HashCode": 1823318632, + "HashCode": -946777246, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.GroupFooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -51300,7 +51300,7 @@ } }, { - "HashCode": 1427111622, + "HashCode": -1827991137, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FilterTemplate", "AssemblyName": "Radzen.Blazor", @@ -51331,7 +51331,7 @@ } }, { - "HashCode": -1768199528, + "HashCode": -582346062, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenDropDownDataGridColumn.FilterTemplate", "AssemblyName": "Radzen.Blazor", @@ -51363,7 +51363,7 @@ } }, { - "HashCode": 1717019555, + "HashCode": -993183536, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDownItem", "AssemblyName": "Radzen.Blazor", @@ -51410,7 +51410,7 @@ } }, { - "HashCode": 556089975, + "HashCode": -190087706, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenDropDownItem", "AssemblyName": "Radzen.Blazor", @@ -51458,7 +51458,7 @@ } }, { - "HashCode": 1199066509, + "HashCode": 1595715196, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGrid", "AssemblyName": "Radzen.Blazor", @@ -52101,7 +52101,7 @@ } }, { - "HashCode": -1912155206, + "HashCode": -528916496, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGrid", "AssemblyName": "Radzen.Blazor", @@ -52745,7 +52745,7 @@ } }, { - "HashCode": 2069215240, + "HashCode": -93913179, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGrid.EmptyTemplate", "AssemblyName": "Radzen.Blazor", @@ -52763,7 +52763,7 @@ } }, { - "HashCode": 1780465358, + "HashCode": 322270300, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGrid.EmptyTemplate", "AssemblyName": "Radzen.Blazor", @@ -52782,7 +52782,7 @@ } }, { - "HashCode": -1411015287, + "HashCode": 2067736842, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGrid.Columns", "AssemblyName": "Radzen.Blazor", @@ -52800,7 +52800,7 @@ } }, { - "HashCode": -176142100, + "HashCode": -1576733008, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGrid.Columns", "AssemblyName": "Radzen.Blazor", @@ -52819,7 +52819,7 @@ } }, { - "HashCode": -268090149, + "HashCode": 66357803, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGrid.Template", "AssemblyName": "Radzen.Blazor", @@ -52850,7 +52850,7 @@ } }, { - "HashCode": 1524411909, + "HashCode": 1307513809, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGrid.Template", "AssemblyName": "Radzen.Blazor", @@ -52882,7 +52882,7 @@ } }, { - "HashCode": -2010506442, + "HashCode": -229693450, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridCell", "AssemblyName": "Radzen.Blazor", @@ -52963,7 +52963,7 @@ } }, { - "HashCode": 34263842, + "HashCode": 1628177389, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridCell", "AssemblyName": "Radzen.Blazor", @@ -53045,7 +53045,7 @@ } }, { - "HashCode": -1352405630, + "HashCode": -87669487, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridCell.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -53063,7 +53063,7 @@ } }, { - "HashCode": -1323870227, + "HashCode": -983056697, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridCell.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -53082,7 +53082,7 @@ } }, { - "HashCode": -1727444714, + "HashCode": -31314554, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridColumn", "AssemblyName": "Radzen.Blazor", @@ -53340,7 +53340,7 @@ } }, { - "HashCode": -1280411260, + "HashCode": 1787542497, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridColumn", "AssemblyName": "Radzen.Blazor", @@ -53599,7 +53599,7 @@ } }, { - "HashCode": 1413744512, + "HashCode": 1645873642, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.Template", "AssemblyName": "Radzen.Blazor", @@ -53629,7 +53629,7 @@ } }, { - "HashCode": 1360909480, + "HashCode": 593254364, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.Template", "AssemblyName": "Radzen.Blazor", @@ -53660,7 +53660,7 @@ } }, { - "HashCode": -491769669, + "HashCode": -527145616, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.EditTemplate", "AssemblyName": "Radzen.Blazor", @@ -53690,7 +53690,7 @@ } }, { - "HashCode": 388257567, + "HashCode": -570335697, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.EditTemplate", "AssemblyName": "Radzen.Blazor", @@ -53721,7 +53721,7 @@ } }, { - "HashCode": 1365917396, + "HashCode": 423171681, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -53739,7 +53739,7 @@ } }, { - "HashCode": -1343831871, + "HashCode": 624054602, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.HeaderTemplate", "AssemblyName": "Radzen.Blazor", @@ -53758,7 +53758,7 @@ } }, { - "HashCode": -1025961045, + "HashCode": -1203275739, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -53776,7 +53776,7 @@ } }, { - "HashCode": 1429169062, + "HashCode": 651024005, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.FooterTemplate", "AssemblyName": "Radzen.Blazor", @@ -53795,7 +53795,7 @@ } }, { - "HashCode": -670389928, + "HashCode": -210995144, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.FilterTemplate", "AssemblyName": "Radzen.Blazor", @@ -53825,7 +53825,7 @@ } }, { - "HashCode": -408925445, + "HashCode": 1627971633, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridColumn.FilterTemplate", "AssemblyName": "Radzen.Blazor", @@ -53856,7 +53856,7 @@ } }, { - "HashCode": -1989589076, + "HashCode": -1479706224, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridRow", "AssemblyName": "Radzen.Blazor", @@ -53907,7 +53907,7 @@ } }, { - "HashCode": 1276221117, + "HashCode": 739669469, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenGridRow", "AssemblyName": "Radzen.Blazor", @@ -53959,7 +53959,7 @@ } }, { - "HashCode": 1073444608, + "HashCode": 1355781747, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridRow.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -53977,7 +53977,7 @@ } }, { - "HashCode": 1695260919, + "HashCode": -246219608, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenGridRow.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -53996,7 +53996,7 @@ } }, { - "HashCode": 2063477104, + "HashCode": 216465531, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenListBoxItem", "AssemblyName": "Radzen.Blazor", @@ -54043,7 +54043,7 @@ } }, { - "HashCode": 109145135, + "HashCode": -339366178, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenListBoxItem", "AssemblyName": "Radzen.Blazor", @@ -54091,7 +54091,7 @@ } }, { - "HashCode": -621168510, + "HashCode": 1606690692, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNotification", "AssemblyName": "Radzen.Blazor", @@ -54117,7 +54117,7 @@ } }, { - "HashCode": -1027161633, + "HashCode": 907390821, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNotification", "AssemblyName": "Radzen.Blazor", @@ -54144,7 +54144,7 @@ } }, { - "HashCode": -680859362, + "HashCode": 519515457, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNotificationMessage", "AssemblyName": "Radzen.Blazor", @@ -54178,7 +54178,7 @@ } }, { - "HashCode": 273344973, + "HashCode": -807848543, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenNotificationMessage", "AssemblyName": "Radzen.Blazor", @@ -54213,7 +54213,7 @@ } }, { - "HashCode": 1000727844, + "HashCode": -1121959463, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGauge", "AssemblyName": "Radzen.Blazor", @@ -54307,7 +54307,7 @@ } }, { - "HashCode": -2023702363, + "HashCode": 1178840552, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenRadialGauge", "AssemblyName": "Radzen.Blazor", @@ -54402,7 +54402,7 @@ } }, { - "HashCode": -1092298988, + "HashCode": -1032602407, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadialGauge.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -54421,7 +54421,7 @@ } }, { - "HashCode": -1302075934, + "HashCode": 731153393, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenRadialGauge.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -54441,7 +54441,7 @@ } }, { - "HashCode": -1717299916, + "HashCode": 1521030012, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTooltip", "AssemblyName": "Radzen.Blazor", @@ -54457,7 +54457,7 @@ } }, { - "HashCode": -124793504, + "HashCode": 263574822, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenTooltip", "AssemblyName": "Radzen.Blazor", @@ -54474,7 +54474,7 @@ } }, { - "HashCode": -1838864757, + "HashCode": 2133121202, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenUploadHeader", "AssemblyName": "Radzen.Blazor", @@ -54508,7 +54508,7 @@ } }, { - "HashCode": -732909163, + "HashCode": 1750733442, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenUploadHeader", "AssemblyName": "Radzen.Blazor", @@ -54543,7 +54543,7 @@ } }, { - "HashCode": -1118076636, + "HashCode": 193943170, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenValueAxis", "AssemblyName": "Radzen.Blazor", @@ -54663,7 +54663,7 @@ } }, { - "HashCode": 645982633, + "HashCode": 1063911199, "Kind": "Components.Component", "Name": "Radzen.Blazor.RadzenValueAxis", "AssemblyName": "Radzen.Blazor", @@ -54784,7 +54784,7 @@ } }, { - "HashCode": 1530574113, + "HashCode": -247192445, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenValueAxis.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -54803,7 +54803,7 @@ } }, { - "HashCode": -267376915, + "HashCode": -1786959837, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.RadzenValueAxis.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -54823,7 +54823,7 @@ } }, { - "HashCode": -1950937885, + "HashCode": -1722520482, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Appointment", "AssemblyName": "Radzen.Blazor", @@ -54890,7 +54890,7 @@ } }, { - "HashCode": 201297696, + "HashCode": -2029798395, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Appointment", "AssemblyName": "Radzen.Blazor", @@ -54958,7 +54958,7 @@ } }, { - "HashCode": -2342286, + "HashCode": 1509554380, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.CategoryAxis", "AssemblyName": "Radzen.Blazor", @@ -54974,7 +54974,7 @@ } }, { - "HashCode": 1485914592, + "HashCode": 32901596, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.CategoryAxis", "AssemblyName": "Radzen.Blazor", @@ -54991,7 +54991,7 @@ } }, { - "HashCode": 1556918127, + "HashCode": -60004500, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.CategoryAxisTick", "AssemblyName": "Radzen.Blazor", @@ -55067,7 +55067,7 @@ } }, { - "HashCode": 1244362285, + "HashCode": -1036181847, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.CategoryAxisTick", "AssemblyName": "Radzen.Blazor", @@ -55144,7 +55144,7 @@ } }, { - "HashCode": 98154849, + "HashCode": 803317727, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.CategoryAxisTick.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -55162,7 +55162,7 @@ } }, { - "HashCode": 967239920, + "HashCode": 564362298, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.CategoryAxisTick.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -55181,7 +55181,7 @@ } }, { - "HashCode": -207469872, + "HashCode": -1006655425, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.CategoryAxisTitle", "AssemblyName": "Radzen.Blazor", @@ -55223,7 +55223,7 @@ } }, { - "HashCode": 755864088, + "HashCode": -2014031799, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.CategoryAxisTitle", "AssemblyName": "Radzen.Blazor", @@ -55266,7 +55266,7 @@ } }, { - "HashCode": 57583070, + "HashCode": -1173641369, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ChartTooltip", "AssemblyName": "Radzen.Blazor", @@ -55349,7 +55349,7 @@ } }, { - "HashCode": 995740835, + "HashCode": 582956694, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ChartTooltip", "AssemblyName": "Radzen.Blazor", @@ -55433,7 +55433,7 @@ } }, { - "HashCode": -350997963, + "HashCode": 1797782054, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.ChartTooltip.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -55451,7 +55451,7 @@ } }, { - "HashCode": 1255764681, + "HashCode": 1361111411, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.ChartTooltip.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -55470,7 +55470,7 @@ } }, { - "HashCode": -927618502, + "HashCode": 1265026728, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ClipPath", "AssemblyName": "Radzen.Blazor", @@ -55486,7 +55486,7 @@ } }, { - "HashCode": -1889498501, + "HashCode": -1714730834, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ClipPath", "AssemblyName": "Radzen.Blazor", @@ -55503,7 +55503,7 @@ } }, { - "HashCode": -714677087, + "HashCode": -2141394607, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.DaySlotEvents", "AssemblyName": "Radzen.Blazor", @@ -55553,7 +55553,7 @@ } }, { - "HashCode": -1121812170, + "HashCode": -349706640, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.DaySlotEvents", "AssemblyName": "Radzen.Blazor", @@ -55604,7 +55604,7 @@ } }, { - "HashCode": 496199829, + "HashCode": 638680357, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.DayView", "AssemblyName": "Radzen.Blazor", @@ -55678,7 +55678,7 @@ } }, { - "HashCode": 697761670, + "HashCode": 2095611979, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.DayView", "AssemblyName": "Radzen.Blazor", @@ -55753,7 +55753,7 @@ } }, { - "HashCode": -1640022806, + "HashCode": -969841503, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.DialogContainer", "AssemblyName": "Radzen.Blazor", @@ -55779,7 +55779,7 @@ } }, { - "HashCode": -1392396334, + "HashCode": -1291660920, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.DialogContainer", "AssemblyName": "Radzen.Blazor", @@ -55806,7 +55806,7 @@ } }, { - "HashCode": -579214155, + "HashCode": -1959669737, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Draggable", "AssemblyName": "Radzen.Blazor", @@ -55926,7 +55926,7 @@ } }, { - "HashCode": 527078932, + "HashCode": -1112290900, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Draggable", "AssemblyName": "Radzen.Blazor", @@ -56047,7 +56047,7 @@ } }, { - "HashCode": 196160750, + "HashCode": 329749530, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.Draggable.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -56065,7 +56065,7 @@ } }, { - "HashCode": 67589206, + "HashCode": -514129961, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.Draggable.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -56084,7 +56084,7 @@ } }, { - "HashCode": -682829595, + "HashCode": -472734563, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorButton", "AssemblyName": "Radzen.Blazor", @@ -56143,7 +56143,7 @@ } }, { - "HashCode": -157049136, + "HashCode": -1136801065, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorButton", "AssemblyName": "Radzen.Blazor", @@ -56203,7 +56203,7 @@ } }, { - "HashCode": 226645156, + "HashCode": 1807642033, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorColorPicker", "AssemblyName": "Radzen.Blazor", @@ -56352,7 +56352,7 @@ } }, { - "HashCode": -136747831, + "HashCode": -278533566, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorColorPicker", "AssemblyName": "Radzen.Blazor", @@ -56502,7 +56502,7 @@ } }, { - "HashCode": -1091398318, + "HashCode": -1784140972, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.EditorColorPicker.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -56520,7 +56520,7 @@ } }, { - "HashCode": 203043678, + "HashCode": 1383355220, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.EditorColorPicker.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -56539,7 +56539,7 @@ } }, { - "HashCode": 205611217, + "HashCode": 1035928083, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorDropDown", "AssemblyName": "Radzen.Blazor", @@ -56682,7 +56682,7 @@ } }, { - "HashCode": 33862398, + "HashCode": 92159947, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorDropDown", "AssemblyName": "Radzen.Blazor", @@ -56826,7 +56826,7 @@ } }, { - "HashCode": 554190651, + "HashCode": -1014039577, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.EditorDropDown.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -56844,7 +56844,7 @@ } }, { - "HashCode": 625222004, + "HashCode": 869756711, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.EditorDropDown.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -56863,7 +56863,7 @@ } }, { - "HashCode": -1506338170, + "HashCode": 72717013, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorDropDownItem", "AssemblyName": "Radzen.Blazor", @@ -56924,7 +56924,7 @@ } }, { - "HashCode": 780980004, + "HashCode": 1402672064, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.EditorDropDownItem", "AssemblyName": "Radzen.Blazor", @@ -56986,7 +56986,7 @@ } }, { - "HashCode": 1644585453, + "HashCode": 1442693142, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.EditorDropDownItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -57016,7 +57016,7 @@ } }, { - "HashCode": 767673407, + "HashCode": 1211145577, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.EditorDropDownItem.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -57047,7 +57047,7 @@ } }, { - "HashCode": -589319977, + "HashCode": -854853183, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.GaugeBand", "AssemblyName": "Radzen.Blazor", @@ -57161,7 +57161,7 @@ } }, { - "HashCode": -2126368184, + "HashCode": -1682641421, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.GaugeBand", "AssemblyName": "Radzen.Blazor", @@ -57276,7 +57276,7 @@ } }, { - "HashCode": 965648862, + "HashCode": 1874117379, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.GaugePointer", "AssemblyName": "Radzen.Blazor", @@ -57390,7 +57390,7 @@ } }, { - "HashCode": 1880589121, + "HashCode": -835691327, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.GaugePointer", "AssemblyName": "Radzen.Blazor", @@ -57505,7 +57505,7 @@ } }, { - "HashCode": 948411487, + "HashCode": 2090220300, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.GaugeScale", "AssemblyName": "Radzen.Blazor", @@ -57677,7 +57677,7 @@ } }, { - "HashCode": 1580063433, + "HashCode": -2036326645, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.GaugeScale", "AssemblyName": "Radzen.Blazor", @@ -57850,7 +57850,7 @@ } }, { - "HashCode": -1414687052, + "HashCode": 636843096, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Hours", "AssemblyName": "Radzen.Blazor", @@ -57900,7 +57900,7 @@ } }, { - "HashCode": -529439174, + "HashCode": -1146692271, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Hours", "AssemblyName": "Radzen.Blazor", @@ -57951,7 +57951,7 @@ } }, { - "HashCode": 1430317508, + "HashCode": 1773129623, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Legend", "AssemblyName": "Radzen.Blazor", @@ -57967,7 +57967,7 @@ } }, { - "HashCode": -414817290, + "HashCode": 81742377, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Legend", "AssemblyName": "Radzen.Blazor", @@ -57984,7 +57984,7 @@ } }, { - "HashCode": -491706912, + "HashCode": -2111871824, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.LegendItem", "AssemblyName": "Radzen.Blazor", @@ -58068,7 +58068,7 @@ } }, { - "HashCode": -611225156, + "HashCode": -1844969992, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.LegendItem", "AssemblyName": "Radzen.Blazor", @@ -58153,7 +58153,7 @@ } }, { - "HashCode": 208818746, + "HashCode": 1539109658, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Line", "AssemblyName": "Radzen.Blazor", @@ -58244,7 +58244,7 @@ } }, { - "HashCode": 1641195205, + "HashCode": 827660429, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Line", "AssemblyName": "Radzen.Blazor", @@ -58336,7 +58336,7 @@ } }, { - "HashCode": 1147710124, + "HashCode": -1971818124, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Marker", "AssemblyName": "Radzen.Blazor", @@ -58420,7 +58420,7 @@ } }, { - "HashCode": -114127488, + "HashCode": 1397704691, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Marker", "AssemblyName": "Radzen.Blazor", @@ -58505,7 +58505,7 @@ } }, { - "HashCode": -1853884866, + "HashCode": -1483060704, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Markers", "AssemblyName": "Radzen.Blazor", @@ -58605,7 +58605,7 @@ } }, { - "HashCode": -735252991, + "HashCode": 2117833345, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Markers", "AssemblyName": "Radzen.Blazor", @@ -58706,7 +58706,7 @@ } }, { - "HashCode": -962991803, + "HashCode": -1049401982, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.MonthView", "AssemblyName": "Radzen.Blazor", @@ -58764,7 +58764,7 @@ } }, { - "HashCode": 29409187, + "HashCode": 1330644916, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.MonthView", "AssemblyName": "Radzen.Blazor", @@ -58823,7 +58823,7 @@ } }, { - "HashCode": 1282652348, + "HashCode": -554614298, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Path", "AssemblyName": "Radzen.Blazor", @@ -58898,7 +58898,7 @@ } }, { - "HashCode": 437599487, + "HashCode": -1107115496, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Path", "AssemblyName": "Radzen.Blazor", @@ -58974,7 +58974,7 @@ } }, { - "HashCode": 991036948, + "HashCode": -1885641866, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Popup", "AssemblyName": "Radzen.Blazor", @@ -59085,7 +59085,7 @@ } }, { - "HashCode": 141423605, + "HashCode": 1378427424, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Popup", "AssemblyName": "Radzen.Blazor", @@ -59197,7 +59197,7 @@ } }, { - "HashCode": -2006071298, + "HashCode": -434934381, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.Popup.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -59215,7 +59215,7 @@ } }, { - "HashCode": 306483230, + "HashCode": -703012352, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.Popup.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -59234,7 +59234,7 @@ } }, { - "HashCode": -993646029, + "HashCode": -1713061428, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Text", "AssemblyName": "Radzen.Blazor", @@ -59276,7 +59276,7 @@ } }, { - "HashCode": 111271055, + "HashCode": 142437248, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Text", "AssemblyName": "Radzen.Blazor", @@ -59319,7 +59319,7 @@ } }, { - "HashCode": -560289767, + "HashCode": 365429270, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Tick", "AssemblyName": "Radzen.Blazor", @@ -59395,7 +59395,7 @@ } }, { - "HashCode": 287437928, + "HashCode": 43125579, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.Tick", "AssemblyName": "Radzen.Blazor", @@ -59472,7 +59472,7 @@ } }, { - "HashCode": 1227168185, + "HashCode": 1299051547, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.Tick.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -59490,7 +59490,7 @@ } }, { - "HashCode": 275711480, + "HashCode": 85226979, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.Tick.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -59509,7 +59509,7 @@ } }, { - "HashCode": 707447766, + "HashCode": 1551208178, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ValueAxis", "AssemblyName": "Radzen.Blazor", @@ -59525,7 +59525,7 @@ } }, { - "HashCode": 1220235360, + "HashCode": -485735862, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ValueAxis", "AssemblyName": "Radzen.Blazor", @@ -59542,7 +59542,7 @@ } }, { - "HashCode": -1932347841, + "HashCode": -2048181910, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ValueAxisTick", "AssemblyName": "Radzen.Blazor", @@ -59618,7 +59618,7 @@ } }, { - "HashCode": 1514457610, + "HashCode": -494119003, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ValueAxisTick", "AssemblyName": "Radzen.Blazor", @@ -59695,7 +59695,7 @@ } }, { - "HashCode": -1231470498, + "HashCode": 1150553097, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.ValueAxisTick.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -59713,7 +59713,7 @@ } }, { - "HashCode": -458545198, + "HashCode": 49957521, "Kind": "Components.ChildContent", "Name": "Radzen.Blazor.Rendering.ValueAxisTick.ChildContent", "AssemblyName": "Radzen.Blazor", @@ -59732,7 +59732,7 @@ } }, { - "HashCode": -907770391, + "HashCode": 589708745, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ValueAxisTitle", "AssemblyName": "Radzen.Blazor", @@ -59774,7 +59774,7 @@ } }, { - "HashCode": 350437044, + "HashCode": -1060129436, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.ValueAxisTitle", "AssemblyName": "Radzen.Blazor", @@ -59817,7 +59817,7 @@ } }, { - "HashCode": -1409763793, + "HashCode": -541752797, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.WeekView", "AssemblyName": "Radzen.Blazor", @@ -59891,7 +59891,7 @@ } }, { - "HashCode": 2051304544, + "HashCode": -1824677359, "Kind": "Components.Component", "Name": "Radzen.Blazor.Rendering.WeekView", "AssemblyName": "Radzen.Blazor", @@ -59966,7 +59966,7 @@ } }, { - "HashCode": -1455458786, + "HashCode": 1822964942, "Kind": "Components.EventHandler", "Name": "onfocus", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60047,7 +60047,7 @@ } }, { - "HashCode": -1219671159, + "HashCode": -1978956536, "Kind": "Components.EventHandler", "Name": "onblur", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60128,7 +60128,7 @@ } }, { - "HashCode": -1897957429, + "HashCode": 2098663487, "Kind": "Components.EventHandler", "Name": "onfocusin", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60209,7 +60209,7 @@ } }, { - "HashCode": -1105024584, + "HashCode": 1952572323, "Kind": "Components.EventHandler", "Name": "onfocusout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60290,7 +60290,7 @@ } }, { - "HashCode": 144773042, + "HashCode": -1405911945, "Kind": "Components.EventHandler", "Name": "onmouseover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60371,7 +60371,7 @@ } }, { - "HashCode": 232256089, + "HashCode": 1830746892, "Kind": "Components.EventHandler", "Name": "onmouseout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60452,7 +60452,7 @@ } }, { - "HashCode": -2136013936, + "HashCode": 85432456, "Kind": "Components.EventHandler", "Name": "onmousemove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60533,7 +60533,7 @@ } }, { - "HashCode": -645926154, + "HashCode": -1845981745, "Kind": "Components.EventHandler", "Name": "onmousedown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60614,7 +60614,7 @@ } }, { - "HashCode": -924363582, + "HashCode": -85604012, "Kind": "Components.EventHandler", "Name": "onmouseup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60695,7 +60695,7 @@ } }, { - "HashCode": 1352353494, + "HashCode": 1185311411, "Kind": "Components.EventHandler", "Name": "onclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60776,7 +60776,7 @@ } }, { - "HashCode": -1286136701, + "HashCode": 474762248, "Kind": "Components.EventHandler", "Name": "ondblclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60857,7 +60857,7 @@ } }, { - "HashCode": -1704687914, + "HashCode": 525838261, "Kind": "Components.EventHandler", "Name": "onwheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -60938,7 +60938,7 @@ } }, { - "HashCode": 1151067226, + "HashCode": 555744602, "Kind": "Components.EventHandler", "Name": "onmousewheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61019,7 +61019,7 @@ } }, { - "HashCode": -893040186, + "HashCode": -1110827480, "Kind": "Components.EventHandler", "Name": "oncontextmenu", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61100,7 +61100,7 @@ } }, { - "HashCode": -647949697, + "HashCode": 1153900832, "Kind": "Components.EventHandler", "Name": "ondrag", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61181,7 +61181,7 @@ } }, { - "HashCode": 487104583, + "HashCode": -469730145, "Kind": "Components.EventHandler", "Name": "ondragend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61262,7 +61262,7 @@ } }, { - "HashCode": -220400603, + "HashCode": 1762673760, "Kind": "Components.EventHandler", "Name": "ondragenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61343,7 +61343,7 @@ } }, { - "HashCode": 1736805982, + "HashCode": 1018278945, "Kind": "Components.EventHandler", "Name": "ondragleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61424,7 +61424,7 @@ } }, { - "HashCode": 789953174, + "HashCode": -1487846988, "Kind": "Components.EventHandler", "Name": "ondragover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61505,7 +61505,7 @@ } }, { - "HashCode": 2138233427, + "HashCode": -436624430, "Kind": "Components.EventHandler", "Name": "ondragstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61586,7 +61586,7 @@ } }, { - "HashCode": 687536228, + "HashCode": -800404629, "Kind": "Components.EventHandler", "Name": "ondrop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61667,7 +61667,7 @@ } }, { - "HashCode": 931158270, + "HashCode": 342604440, "Kind": "Components.EventHandler", "Name": "onkeydown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61748,7 +61748,7 @@ } }, { - "HashCode": 1628266960, + "HashCode": -954429201, "Kind": "Components.EventHandler", "Name": "onkeyup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61829,7 +61829,7 @@ } }, { - "HashCode": -1485912477, + "HashCode": -843110707, "Kind": "Components.EventHandler", "Name": "onkeypress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61910,7 +61910,7 @@ } }, { - "HashCode": -111881939, + "HashCode": 1809610246, "Kind": "Components.EventHandler", "Name": "onchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -61991,7 +61991,7 @@ } }, { - "HashCode": 1404811942, + "HashCode": -2070905338, "Kind": "Components.EventHandler", "Name": "oninput", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62072,7 +62072,7 @@ } }, { - "HashCode": -1854526549, + "HashCode": -589027738, "Kind": "Components.EventHandler", "Name": "oninvalid", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62153,7 +62153,7 @@ } }, { - "HashCode": -550581929, + "HashCode": -934747538, "Kind": "Components.EventHandler", "Name": "onreset", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62234,7 +62234,7 @@ } }, { - "HashCode": 1004422511, + "HashCode": -966060263, "Kind": "Components.EventHandler", "Name": "onselect", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62315,7 +62315,7 @@ } }, { - "HashCode": -2131390833, + "HashCode": 765711152, "Kind": "Components.EventHandler", "Name": "onselectstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62396,7 +62396,7 @@ } }, { - "HashCode": 975788213, + "HashCode": -1256077711, "Kind": "Components.EventHandler", "Name": "onselectionchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62477,7 +62477,7 @@ } }, { - "HashCode": 1399186206, + "HashCode": 2069995678, "Kind": "Components.EventHandler", "Name": "onsubmit", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62558,7 +62558,7 @@ } }, { - "HashCode": 1542816632, + "HashCode": -2048886391, "Kind": "Components.EventHandler", "Name": "onbeforecopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62639,7 +62639,7 @@ } }, { - "HashCode": 627419292, + "HashCode": 1833103653, "Kind": "Components.EventHandler", "Name": "onbeforecut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62720,7 +62720,7 @@ } }, { - "HashCode": -834717405, + "HashCode": 991014563, "Kind": "Components.EventHandler", "Name": "onbeforepaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62801,7 +62801,7 @@ } }, { - "HashCode": -1612486350, + "HashCode": 1910891945, "Kind": "Components.EventHandler", "Name": "oncopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62882,7 +62882,7 @@ } }, { - "HashCode": -76234498, + "HashCode": 1369760254, "Kind": "Components.EventHandler", "Name": "oncut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -62963,7 +62963,7 @@ } }, { - "HashCode": 974993167, + "HashCode": 911254126, "Kind": "Components.EventHandler", "Name": "onpaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63044,7 +63044,7 @@ } }, { - "HashCode": 1828344384, + "HashCode": -1966108578, "Kind": "Components.EventHandler", "Name": "ontouchcancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63125,7 +63125,7 @@ } }, { - "HashCode": -1983294622, + "HashCode": 1294984848, "Kind": "Components.EventHandler", "Name": "ontouchend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63206,7 +63206,7 @@ } }, { - "HashCode": 88501343, + "HashCode": 393631529, "Kind": "Components.EventHandler", "Name": "ontouchmove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63287,7 +63287,7 @@ } }, { - "HashCode": 1282226222, + "HashCode": 1590722041, "Kind": "Components.EventHandler", "Name": "ontouchstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63368,7 +63368,7 @@ } }, { - "HashCode": 1178587775, + "HashCode": 1938350536, "Kind": "Components.EventHandler", "Name": "ontouchenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63449,7 +63449,7 @@ } }, { - "HashCode": 27509116, + "HashCode": 2097539291, "Kind": "Components.EventHandler", "Name": "ontouchleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63530,7 +63530,7 @@ } }, { - "HashCode": -314628499, + "HashCode": 2059726250, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63611,7 +63611,7 @@ } }, { - "HashCode": 1958635349, + "HashCode": 34005751, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63692,7 +63692,7 @@ } }, { - "HashCode": 253605707, + "HashCode": -633726571, "Kind": "Components.EventHandler", "Name": "onpointercancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63773,7 +63773,7 @@ } }, { - "HashCode": -1201190938, + "HashCode": 1426844755, "Kind": "Components.EventHandler", "Name": "onpointerdown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63854,7 +63854,7 @@ } }, { - "HashCode": -216342770, + "HashCode": -1580217900, "Kind": "Components.EventHandler", "Name": "onpointerenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -63935,7 +63935,7 @@ } }, { - "HashCode": -885206806, + "HashCode": 1017387014, "Kind": "Components.EventHandler", "Name": "onpointerleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64016,7 +64016,7 @@ } }, { - "HashCode": 1253825365, + "HashCode": -1296559441, "Kind": "Components.EventHandler", "Name": "onpointermove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64097,7 +64097,7 @@ } }, { - "HashCode": -1015676737, + "HashCode": 1518406787, "Kind": "Components.EventHandler", "Name": "onpointerout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64178,7 +64178,7 @@ } }, { - "HashCode": 776887055, + "HashCode": 1668495678, "Kind": "Components.EventHandler", "Name": "onpointerover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64259,7 +64259,7 @@ } }, { - "HashCode": -1205839630, + "HashCode": -1089216979, "Kind": "Components.EventHandler", "Name": "onpointerup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64340,7 +64340,7 @@ } }, { - "HashCode": -92313849, + "HashCode": -330927127, "Kind": "Components.EventHandler", "Name": "oncanplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64421,7 +64421,7 @@ } }, { - "HashCode": 230418742, + "HashCode": -1388687558, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64502,7 +64502,7 @@ } }, { - "HashCode": -624291239, + "HashCode": 1263324440, "Kind": "Components.EventHandler", "Name": "oncuechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64583,7 +64583,7 @@ } }, { - "HashCode": -1743702958, + "HashCode": 1356011896, "Kind": "Components.EventHandler", "Name": "ondurationchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64664,7 +64664,7 @@ } }, { - "HashCode": -270228433, + "HashCode": -370511783, "Kind": "Components.EventHandler", "Name": "onemptied", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64745,7 +64745,7 @@ } }, { - "HashCode": 278720586, + "HashCode": 2102102003, "Kind": "Components.EventHandler", "Name": "onpause", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64826,7 +64826,7 @@ } }, { - "HashCode": 2092562487, + "HashCode": -524181067, "Kind": "Components.EventHandler", "Name": "onplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64907,7 +64907,7 @@ } }, { - "HashCode": -1959126320, + "HashCode": 1371574340, "Kind": "Components.EventHandler", "Name": "onplaying", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -64988,7 +64988,7 @@ } }, { - "HashCode": 291175453, + "HashCode": 1484489153, "Kind": "Components.EventHandler", "Name": "onratechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65069,7 +65069,7 @@ } }, { - "HashCode": -1064138054, + "HashCode": -1235093949, "Kind": "Components.EventHandler", "Name": "onseeked", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65150,7 +65150,7 @@ } }, { - "HashCode": -620385784, + "HashCode": -1959094854, "Kind": "Components.EventHandler", "Name": "onseeking", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65231,7 +65231,7 @@ } }, { - "HashCode": -2057545467, + "HashCode": -693009894, "Kind": "Components.EventHandler", "Name": "onstalled", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65312,7 +65312,7 @@ } }, { - "HashCode": -265956090, + "HashCode": 1678998956, "Kind": "Components.EventHandler", "Name": "onstop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65393,7 +65393,7 @@ } }, { - "HashCode": -126992563, + "HashCode": -1495657214, "Kind": "Components.EventHandler", "Name": "onsuspend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65474,7 +65474,7 @@ } }, { - "HashCode": -1024427634, + "HashCode": 1720472196, "Kind": "Components.EventHandler", "Name": "ontimeupdate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65555,7 +65555,7 @@ } }, { - "HashCode": -789450281, + "HashCode": 1839503680, "Kind": "Components.EventHandler", "Name": "onvolumechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65636,7 +65636,7 @@ } }, { - "HashCode": -1881557604, + "HashCode": 1762377468, "Kind": "Components.EventHandler", "Name": "onwaiting", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65717,7 +65717,7 @@ } }, { - "HashCode": 436901285, + "HashCode": -633870182, "Kind": "Components.EventHandler", "Name": "onloadstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65798,7 +65798,7 @@ } }, { - "HashCode": -550113822, + "HashCode": -441956873, "Kind": "Components.EventHandler", "Name": "ontimeout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65879,7 +65879,7 @@ } }, { - "HashCode": -1293624112, + "HashCode": 554125012, "Kind": "Components.EventHandler", "Name": "onabort", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -65960,7 +65960,7 @@ } }, { - "HashCode": 2062677949, + "HashCode": 179902494, "Kind": "Components.EventHandler", "Name": "onload", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66041,7 +66041,7 @@ } }, { - "HashCode": 512232319, + "HashCode": -892431445, "Kind": "Components.EventHandler", "Name": "onloadend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66122,7 +66122,7 @@ } }, { - "HashCode": -1312758626, + "HashCode": -2066191922, "Kind": "Components.EventHandler", "Name": "onprogress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66203,7 +66203,7 @@ } }, { - "HashCode": 780448549, + "HashCode": 1434708818, "Kind": "Components.EventHandler", "Name": "onerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66284,7 +66284,7 @@ } }, { - "HashCode": -1637700696, + "HashCode": 1920250938, "Kind": "Components.EventHandler", "Name": "onactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66365,7 +66365,7 @@ } }, { - "HashCode": 911151184, + "HashCode": 553102247, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66446,7 +66446,7 @@ } }, { - "HashCode": -416220658, + "HashCode": 862502520, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66527,7 +66527,7 @@ } }, { - "HashCode": 869411420, + "HashCode": -744369255, "Kind": "Components.EventHandler", "Name": "ondeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66608,7 +66608,7 @@ } }, { - "HashCode": 563502130, + "HashCode": -1021682015, "Kind": "Components.EventHandler", "Name": "onended", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66689,7 +66689,7 @@ } }, { - "HashCode": -1469830991, + "HashCode": -1414935851, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66770,7 +66770,7 @@ } }, { - "HashCode": -1458933722, + "HashCode": -341066944, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66851,7 +66851,7 @@ } }, { - "HashCode": -445532064, + "HashCode": -500292830, "Kind": "Components.EventHandler", "Name": "onloadeddata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -66932,7 +66932,7 @@ } }, { - "HashCode": 1594651464, + "HashCode": 1780620709, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67013,7 +67013,7 @@ } }, { - "HashCode": 483344873, + "HashCode": -2096151796, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67094,7 +67094,7 @@ } }, { - "HashCode": -529187560, + "HashCode": 569803856, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67175,7 +67175,7 @@ } }, { - "HashCode": -700644812, + "HashCode": -1302548938, "Kind": "Components.EventHandler", "Name": "onreadystatechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67256,7 +67256,7 @@ } }, { - "HashCode": 187450178, + "HashCode": -141027798, "Kind": "Components.EventHandler", "Name": "onscroll", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67337,7 +67337,7 @@ } }, { - "HashCode": 376412505, + "HashCode": -259226445, "Kind": "Components.EventHandler", "Name": "ontoggle", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67418,7 +67418,7 @@ } }, { - "HashCode": 596403723, + "HashCode": 1710781470, "Kind": "Components.EventHandler", "Name": "onmouseenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67499,7 +67499,7 @@ } }, { - "HashCode": 594935331, + "HashCode": 1022327129, "Kind": "Components.EventHandler", "Name": "onmouseleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67580,7 +67580,7 @@ } }, { - "HashCode": 647124010, + "HashCode": -480188354, "Kind": "Components.Splat", "Name": "Attributes", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -67619,7 +67619,7 @@ } }, { - "HashCode": -411685074, + "HashCode": -1176704614, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.Razor", @@ -67934,7 +67934,7 @@ } }, { - "HashCode": 728335900, + "HashCode": -373695205, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -68131,7 +68131,7 @@ } }, { - "HashCode": -600254123, + "HashCode": -2096945070, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -68258,7 +68258,7 @@ } }, { - "HashCode": 1865816951, + "HashCode": -1438690741, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -68313,7 +68313,7 @@ } }, { - "HashCode": 1838446155, + "HashCode": 1703108490, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -68445,7 +68445,7 @@ } }, { - "HashCode": -733793020, + "HashCode": 1813971304, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -68491,7 +68491,7 @@ } }, { - "HashCode": -1286140662, + "HashCode": -184139320, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -68908,7 +68908,7 @@ } }, { - "HashCode": -1310378058, + "HashCode": 1901869433, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69010,7 +69010,7 @@ } }, { - "HashCode": 489831468, + "HashCode": 1929199375, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69056,7 +69056,7 @@ } }, { - "HashCode": 943452226, + "HashCode": -584436509, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69126,7 +69126,7 @@ } }, { - "HashCode": -1348602050, + "HashCode": -106899279, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69159,7 +69159,7 @@ } }, { - "HashCode": -1267793740, + "HashCode": 1681061380, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69355,7 +69355,7 @@ } }, { - "HashCode": 1865443567, + "HashCode": -1712859548, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69383,7 +69383,7 @@ } }, { - "HashCode": -1445164754, + "HashCode": 1815542656, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69464,7 +69464,7 @@ } }, { - "HashCode": -899508804, + "HashCode": -1152758685, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69493,7 +69493,7 @@ } }, { - "HashCode": -430872275, + "HashCode": 1529966198, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69646,7 +69646,7 @@ } }, { - "HashCode": 550809393, + "HashCode": 1315961642, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69705,7 +69705,7 @@ } }, { - "HashCode": -1230523400, + "HashCode": 47917688, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69747,7 +69747,7 @@ } }, { - "HashCode": -1065892366, + "HashCode": 1609906682, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69780,7 +69780,7 @@ } }, { - "HashCode": -1582921270, + "HashCode": 528336840, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -69814,7 +69814,7 @@ } }, { - "HashCode": -171839904, + "HashCode": -2058054106, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -69883,7 +69883,7 @@ } }, { - "HashCode": 1556219031, + "HashCode": -2135097898, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -69961,7 +69961,7 @@ } }, { - "HashCode": -320775153, + "HashCode": 579465856, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70039,7 +70039,7 @@ } }, { - "HashCode": 813261350, + "HashCode": -623457727, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70123,7 +70123,7 @@ } }, { - "HashCode": 1116212483, + "HashCode": -1125853402, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70207,7 +70207,7 @@ } }, { - "HashCode": 2062022685, + "HashCode": 1176931447, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70291,7 +70291,7 @@ } }, { - "HashCode": 361547141, + "HashCode": 1844188249, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70375,7 +70375,7 @@ } }, { - "HashCode": -692971520, + "HashCode": 1945775560, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70459,7 +70459,7 @@ } }, { - "HashCode": 1955262561, + "HashCode": -1532613609, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70543,7 +70543,7 @@ } }, { - "HashCode": 143572276, + "HashCode": 1023557350, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70627,7 +70627,7 @@ } }, { - "HashCode": 1374269653, + "HashCode": -38403411, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70711,7 +70711,7 @@ } }, { - "HashCode": -866282786, + "HashCode": -2065697021, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70795,7 +70795,7 @@ } }, { - "HashCode": -2114664683, + "HashCode": 2033728673, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70879,7 +70879,7 @@ } }, { - "HashCode": -220970568, + "HashCode": 644817947, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -70963,7 +70963,7 @@ } }, { - "HashCode": -91175305, + "HashCode": -228631528, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -71047,7 +71047,7 @@ } }, { - "HashCode": 240592955, + "HashCode": -1232737878, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -71125,7 +71125,7 @@ } }, { - "HashCode": 2080411166, + "HashCode": 1207055183, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -71203,7 +71203,7 @@ } }, { - "HashCode": -1693952621, + "HashCode": -671123771, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71244,7 +71244,7 @@ } }, { - "HashCode": 478468030, + "HashCode": 129581113, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71286,7 +71286,7 @@ } }, { - "HashCode": 1790051922, + "HashCode": -209343777, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71327,7 +71327,7 @@ } }, { - "HashCode": -1793245286, + "HashCode": -1633625619, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71369,7 +71369,7 @@ } }, { - "HashCode": 768284713, + "HashCode": -627002829, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71410,7 +71410,7 @@ } }, { - "HashCode": -521901218, + "HashCode": 400869027, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71452,7 +71452,7 @@ } }, { - "HashCode": 342258539, + "HashCode": 319910005, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71493,7 +71493,7 @@ } }, { - "HashCode": 637865609, + "HashCode": 1803404175, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71535,7 +71535,7 @@ } }, { - "HashCode": 1597614192, + "HashCode": 1220745541, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71576,7 +71576,7 @@ } }, { - "HashCode": -1639394413, + "HashCode": -1425780485, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71618,7 +71618,7 @@ } }, { - "HashCode": 1054247231, + "HashCode": 1769978686, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71659,7 +71659,7 @@ } }, { - "HashCode": 1448409877, + "HashCode": 736694356, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71701,7 +71701,7 @@ } }, { - "HashCode": 969514852, + "HashCode": -748746307, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71742,7 +71742,7 @@ } }, { - "HashCode": 114297805, + "HashCode": 127930093, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -71784,7 +71784,7 @@ } }, { - "HashCode": -1975613231, + "HashCode": -117239533, "Kind": "Components.Bind", "Name": "Radzen.DataBoundFormComponent", "AssemblyName": "Radzen.Blazor", @@ -71825,7 +71825,7 @@ } }, { - "HashCode": -1346037626, + "HashCode": -1379697072, "Kind": "Components.Bind", "Name": "Radzen.DataBoundFormComponent", "AssemblyName": "Radzen.Blazor", @@ -71867,7 +71867,7 @@ } }, { - "HashCode": 1784647165, + "HashCode": -329322719, "Kind": "Components.Bind", "Name": "Radzen.DropDownBase", "AssemblyName": "Radzen.Blazor", @@ -71907,7 +71907,7 @@ } }, { - "HashCode": -30221281, + "HashCode": -1389887538, "Kind": "Components.Bind", "Name": "Radzen.DropDownBase", "AssemblyName": "Radzen.Blazor", @@ -71948,7 +71948,7 @@ } }, { - "HashCode": -2131613683, + "HashCode": -1468425728, "Kind": "Components.Bind", "Name": "Radzen.DropDownBase", "AssemblyName": "Radzen.Blazor", @@ -71989,7 +71989,7 @@ } }, { - "HashCode": 2561778, + "HashCode": -1828798197, "Kind": "Components.Bind", "Name": "Radzen.DropDownBase", "AssemblyName": "Radzen.Blazor", @@ -72031,7 +72031,7 @@ } }, { - "HashCode": 892821957, + "HashCode": -1823763179, "Kind": "Components.Bind", "Name": "Radzen.FormComponent", "AssemblyName": "Radzen.Blazor", @@ -72072,7 +72072,7 @@ } }, { - "HashCode": 806931042, + "HashCode": -1877244605, "Kind": "Components.Bind", "Name": "Radzen.FormComponent", "AssemblyName": "Radzen.Blazor", @@ -72114,7 +72114,7 @@ } }, { - "HashCode": 1227037355, + "HashCode": -1818904724, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenAutoComplete", "AssemblyName": "Radzen.Blazor", @@ -72155,7 +72155,7 @@ } }, { - "HashCode": 296434210, + "HashCode": 1447931161, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenAutoComplete", "AssemblyName": "Radzen.Blazor", @@ -72197,7 +72197,7 @@ } }, { - "HashCode": -1628672424, + "HashCode": 319379460, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenBody", "AssemblyName": "Radzen.Blazor", @@ -72237,7 +72237,7 @@ } }, { - "HashCode": -1657356883, + "HashCode": 1185695128, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenBody", "AssemblyName": "Radzen.Blazor", @@ -72278,7 +72278,7 @@ } }, { - "HashCode": -798530109, + "HashCode": -1013935981, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenCheckBox", "AssemblyName": "Radzen.Blazor", @@ -72319,7 +72319,7 @@ } }, { - "HashCode": -1707488605, + "HashCode": -1393012450, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenCheckBox", "AssemblyName": "Radzen.Blazor", @@ -72361,7 +72361,7 @@ } }, { - "HashCode": -1512759499, + "HashCode": 1178212656, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenCheckBoxList", "AssemblyName": "Radzen.Blazor", @@ -72402,7 +72402,7 @@ } }, { - "HashCode": -1527867281, + "HashCode": 1362129465, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenCheckBoxList", "AssemblyName": "Radzen.Blazor", @@ -72444,7 +72444,7 @@ } }, { - "HashCode": -1544096527, + "HashCode": -910892258, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenColorPicker", "AssemblyName": "Radzen.Blazor", @@ -72485,7 +72485,7 @@ } }, { - "HashCode": 1196589982, + "HashCode": 1672034879, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenColorPicker", "AssemblyName": "Radzen.Blazor", @@ -72527,7 +72527,7 @@ } }, { - "HashCode": 184134036, + "HashCode": 510688985, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDataGrid", "AssemblyName": "Radzen.Blazor", @@ -72567,7 +72567,7 @@ } }, { - "HashCode": 1277038644, + "HashCode": 1375243214, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDataGrid", "AssemblyName": "Radzen.Blazor", @@ -72608,7 +72608,7 @@ } }, { - "HashCode": -1214531846, + "HashCode": -1561299121, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDatePicker", "AssemblyName": "Radzen.Blazor", @@ -72649,7 +72649,7 @@ } }, { - "HashCode": 1923488012, + "HashCode": 1601465974, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDatePicker", "AssemblyName": "Radzen.Blazor", @@ -72691,7 +72691,7 @@ } }, { - "HashCode": 1411403618, + "HashCode": -1516285376, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDown", "AssemblyName": "Radzen.Blazor", @@ -72731,7 +72731,7 @@ } }, { - "HashCode": 1768823680, + "HashCode": -1184754877, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDown", "AssemblyName": "Radzen.Blazor", @@ -72772,7 +72772,7 @@ } }, { - "HashCode": -555620097, + "HashCode": 1928881158, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDown", "AssemblyName": "Radzen.Blazor", @@ -72813,7 +72813,7 @@ } }, { - "HashCode": 1564123124, + "HashCode": -697412020, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDown", "AssemblyName": "Radzen.Blazor", @@ -72855,7 +72855,7 @@ } }, { - "HashCode": -190196952, + "HashCode": 142840817, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDownDataGrid", "AssemblyName": "Radzen.Blazor", @@ -72895,7 +72895,7 @@ } }, { - "HashCode": -808661487, + "HashCode": 1509921287, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDownDataGrid", "AssemblyName": "Radzen.Blazor", @@ -72936,7 +72936,7 @@ } }, { - "HashCode": -970109632, + "HashCode": 1730006352, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDownDataGrid", "AssemblyName": "Radzen.Blazor", @@ -72977,7 +72977,7 @@ } }, { - "HashCode": 1540765434, + "HashCode": -1637543959, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenDropDownDataGrid", "AssemblyName": "Radzen.Blazor", @@ -73019,7 +73019,7 @@ } }, { - "HashCode": 1663010727, + "HashCode": 1240797276, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenFileInput", "AssemblyName": "Radzen.Blazor", @@ -73060,7 +73060,7 @@ } }, { - "HashCode": 1476058466, + "HashCode": 898110845, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenFileInput", "AssemblyName": "Radzen.Blazor", @@ -73102,7 +73102,7 @@ } }, { - "HashCode": 711778360, + "HashCode": -825697113, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenHtmlEditor", "AssemblyName": "Radzen.Blazor", @@ -73143,7 +73143,7 @@ } }, { - "HashCode": -1890152776, + "HashCode": -1971983971, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenHtmlEditor", "AssemblyName": "Radzen.Blazor", @@ -73185,7 +73185,7 @@ } }, { - "HashCode": -1741221175, + "HashCode": -1569580872, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenListBox", "AssemblyName": "Radzen.Blazor", @@ -73225,7 +73225,7 @@ } }, { - "HashCode": -1300993173, + "HashCode": -1970357249, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenListBox", "AssemblyName": "Radzen.Blazor", @@ -73266,7 +73266,7 @@ } }, { - "HashCode": 800784777, + "HashCode": 1631576176, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenListBox", "AssemblyName": "Radzen.Blazor", @@ -73307,7 +73307,7 @@ } }, { - "HashCode": 255503479, + "HashCode": -999918987, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenListBox", "AssemblyName": "Radzen.Blazor", @@ -73349,7 +73349,7 @@ } }, { - "HashCode": -1847636900, + "HashCode": 1854889018, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenMask", "AssemblyName": "Radzen.Blazor", @@ -73390,7 +73390,7 @@ } }, { - "HashCode": -1732313021, + "HashCode": 384405500, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenMask", "AssemblyName": "Radzen.Blazor", @@ -73432,7 +73432,7 @@ } }, { - "HashCode": 279017784, + "HashCode": -660757011, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenNumeric", "AssemblyName": "Radzen.Blazor", @@ -73473,7 +73473,7 @@ } }, { - "HashCode": -1484679280, + "HashCode": -1560252239, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenNumeric", "AssemblyName": "Radzen.Blazor", @@ -73515,7 +73515,7 @@ } }, { - "HashCode": -697711356, + "HashCode": 1963415692, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenPager", "AssemblyName": "Radzen.Blazor", @@ -73555,7 +73555,7 @@ } }, { - "HashCode": -121025608, + "HashCode": -647275569, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenPager", "AssemblyName": "Radzen.Blazor", @@ -73596,7 +73596,7 @@ } }, { - "HashCode": 1310476740, + "HashCode": 399518521, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenPanelMenuItem", "AssemblyName": "Radzen.Blazor", @@ -73636,7 +73636,7 @@ } }, { - "HashCode": -943286445, + "HashCode": -973446144, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenPanelMenuItem", "AssemblyName": "Radzen.Blazor", @@ -73677,7 +73677,7 @@ } }, { - "HashCode": -368994767, + "HashCode": -542969699, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenPassword", "AssemblyName": "Radzen.Blazor", @@ -73718,7 +73718,7 @@ } }, { - "HashCode": -1357071936, + "HashCode": 312854527, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenPassword", "AssemblyName": "Radzen.Blazor", @@ -73760,7 +73760,7 @@ } }, { - "HashCode": -566678110, + "HashCode": 1091411753, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenProgressBar", "AssemblyName": "Radzen.Blazor", @@ -73800,7 +73800,7 @@ } }, { - "HashCode": 776610056, + "HashCode": -2052868190, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenProgressBar", "AssemblyName": "Radzen.Blazor", @@ -73841,7 +73841,7 @@ } }, { - "HashCode": 2045226895, + "HashCode": 2107625192, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenRadioButtonList", "AssemblyName": "Radzen.Blazor", @@ -73882,7 +73882,7 @@ } }, { - "HashCode": 286954268, + "HashCode": -1506808124, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenRadioButtonList", "AssemblyName": "Radzen.Blazor", @@ -73924,7 +73924,7 @@ } }, { - "HashCode": 906833446, + "HashCode": 430704397, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenRating", "AssemblyName": "Radzen.Blazor", @@ -73965,7 +73965,7 @@ } }, { - "HashCode": -2079423023, + "HashCode": -250481502, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenRating", "AssemblyName": "Radzen.Blazor", @@ -74007,7 +74007,7 @@ } }, { - "HashCode": 112436089, + "HashCode": 80792515, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSelectBar", "AssemblyName": "Radzen.Blazor", @@ -74048,7 +74048,7 @@ } }, { - "HashCode": 6983996, + "HashCode": 584801842, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSelectBar", "AssemblyName": "Radzen.Blazor", @@ -74090,7 +74090,7 @@ } }, { - "HashCode": 282842901, + "HashCode": 878443672, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSidebar", "AssemblyName": "Radzen.Blazor", @@ -74130,7 +74130,7 @@ } }, { - "HashCode": 1115474284, + "HashCode": 120342958, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSidebar", "AssemblyName": "Radzen.Blazor", @@ -74171,7 +74171,7 @@ } }, { - "HashCode": 1767527349, + "HashCode": -1631859667, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSlider", "AssemblyName": "Radzen.Blazor", @@ -74212,7 +74212,7 @@ } }, { - "HashCode": -1142796847, + "HashCode": -892199373, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSlider", "AssemblyName": "Radzen.Blazor", @@ -74254,7 +74254,7 @@ } }, { - "HashCode": 2067899857, + "HashCode": -477939522, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSteps", "AssemblyName": "Radzen.Blazor", @@ -74294,7 +74294,7 @@ } }, { - "HashCode": -203059295, + "HashCode": 1998917048, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSteps", "AssemblyName": "Radzen.Blazor", @@ -74335,7 +74335,7 @@ } }, { - "HashCode": 154383670, + "HashCode": -1659421515, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSwitch", "AssemblyName": "Radzen.Blazor", @@ -74376,7 +74376,7 @@ } }, { - "HashCode": -466825267, + "HashCode": 571383247, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenSwitch", "AssemblyName": "Radzen.Blazor", @@ -74418,7 +74418,7 @@ } }, { - "HashCode": -279008120, + "HashCode": -186619887, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTabs", "AssemblyName": "Radzen.Blazor", @@ -74458,7 +74458,7 @@ } }, { - "HashCode": -738678183, + "HashCode": -1297388613, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTabs", "AssemblyName": "Radzen.Blazor", @@ -74499,7 +74499,7 @@ } }, { - "HashCode": 477056022, + "HashCode": -1467379716, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTextArea", "AssemblyName": "Radzen.Blazor", @@ -74540,7 +74540,7 @@ } }, { - "HashCode": -1708477511, + "HashCode": 1925962087, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTextArea", "AssemblyName": "Radzen.Blazor", @@ -74582,7 +74582,7 @@ } }, { - "HashCode": 42996629, + "HashCode": -326329485, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTextBox", "AssemblyName": "Radzen.Blazor", @@ -74623,7 +74623,7 @@ } }, { - "HashCode": 1203863416, + "HashCode": 1574319418, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTextBox", "AssemblyName": "Radzen.Blazor", @@ -74665,7 +74665,7 @@ } }, { - "HashCode": -1390754459, + "HashCode": 720856007, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTree", "AssemblyName": "Radzen.Blazor", @@ -74705,7 +74705,7 @@ } }, { - "HashCode": 756933113, + "HashCode": -147594165, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTree", "AssemblyName": "Radzen.Blazor", @@ -74745,7 +74745,7 @@ } }, { - "HashCode": -441700207, + "HashCode": -1119048144, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTree", "AssemblyName": "Radzen.Blazor", @@ -74786,7 +74786,7 @@ } }, { - "HashCode": -128314005, + "HashCode": 614946059, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenTree", "AssemblyName": "Radzen.Blazor", @@ -74827,7 +74827,7 @@ } }, { - "HashCode": 519789348, + "HashCode": -1240675210, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenGrid", "AssemblyName": "Radzen.Blazor", @@ -74867,7 +74867,7 @@ } }, { - "HashCode": -1048907945, + "HashCode": -1293738859, "Kind": "Components.Bind", "Name": "Radzen.Blazor.RadzenGrid", "AssemblyName": "Radzen.Blazor", @@ -74908,7 +74908,7 @@ } }, { - "HashCode": -260662357, + "HashCode": -1924235630, "Kind": "Components.Bind", "Name": "Radzen.Blazor.Rendering.EditorColorPicker", "AssemblyName": "Radzen.Blazor", @@ -74948,7 +74948,7 @@ } }, { - "HashCode": -2074481716, + "HashCode": -375690911, "Kind": "Components.Bind", "Name": "Radzen.Blazor.Rendering.EditorColorPicker", "AssemblyName": "Radzen.Blazor", @@ -74989,7 +74989,7 @@ } }, { - "HashCode": 345207297, + "HashCode": 356368284, "Kind": "Components.Bind", "Name": "Radzen.Blazor.Rendering.EditorDropDown", "AssemblyName": "Radzen.Blazor", @@ -75029,7 +75029,7 @@ } }, { - "HashCode": 759087591, + "HashCode": 89454599, "Kind": "Components.Bind", "Name": "Radzen.Blazor.Rendering.EditorDropDown", "AssemblyName": "Radzen.Blazor", @@ -75070,7 +75070,7 @@ } }, { - "HashCode": 187676159, + "HashCode": -1927046404, "Kind": "Components.Ref", "Name": "Ref", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -75109,7 +75109,7 @@ } }, { - "HashCode": 725478467, + "HashCode": -1332700366, "Kind": "Components.Key", "Name": "Key", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -75153,63 +75153,8 @@ "RootNamespace": "TodoList", "Documents": [ { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Shared/SurveyPrompt.razor", - "TargetPath": "Shared\\SurveyPrompt.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/_Imports.razor", - "TargetPath": "_Imports.razor", - "FileKind": "componentImport" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/AccountTasks.razor", - "TargetPath": "Pages\\AccountTasks.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/_Layout.cshtml", - "TargetPath": "Pages\\_Layout.cshtml", - "FileKind": "mvc" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Shared/MainLayout.razor", - "TargetPath": "Shared\\MainLayout.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/_Host.cshtml", - "TargetPath": "Pages\\_Host.cshtml", - "FileKind": "mvc" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Error.cshtml", - "TargetPath": "Pages\\Error.cshtml", - "FileKind": "mvc" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Index.razor", - "TargetPath": "Pages\\Index.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Accounts.razor", - "TargetPath": "Pages\\Accounts.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Counter.razor", - "TargetPath": "Pages\\Counter.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Todo.razor", - "TargetPath": "Pages\\Todo.razor", - "FileKind": "component" - }, - { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/FetchData.razor", - "TargetPath": "Pages\\FetchData.razor", + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/App.razor", + "TargetPath": "App.razor", "FileKind": "component" }, { @@ -75218,8 +75163,63 @@ "FileKind": "component" }, { - "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/App.razor", - "TargetPath": "App.razor", + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Shared/SurveyPrompt.razor", + "TargetPath": "Shared\\SurveyPrompt.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/AccountTasks.razor", + "TargetPath": "Pages\\AccountTasks.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/_Imports.razor", + "TargetPath": "_Imports.razor", + "FileKind": "componentImport" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Index.razor", + "TargetPath": "Pages\\Index.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Error.cshtml", + "TargetPath": "Pages\\Error.cshtml", + "FileKind": "mvc" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/_Layout.cshtml", + "TargetPath": "Pages\\_Layout.cshtml", + "FileKind": "mvc" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/_Host.cshtml", + "TargetPath": "Pages\\_Host.cshtml", + "FileKind": "mvc" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Todo.razor", + "TargetPath": "Pages\\Todo.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Accounts.razor", + "TargetPath": "Pages\\Accounts.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Shared/MainLayout.razor", + "TargetPath": "Shared\\MainLayout.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/Counter.razor", + "TargetPath": "Pages\\Counter.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/TodoList/Pages/FetchData.razor", + "TargetPath": "Pages\\FetchData.razor", "FileKind": "component" } ],