├── .editorconfig ├── .gitignore ├── AgileConfig.sln ├── LICENSE ├── README.md ├── docs ├── .gitattributes ├── .nojekyll ├── 404.html ├── _content │ ├── AntDesign.Charts │ │ └── ant-design-charts-blazor.js │ ├── AntDesign.ProLayout │ │ ├── css │ │ │ └── ant-design-pro-layout-blazor.css │ │ └── theme │ │ │ ├── cyan.css │ │ │ ├── dark-cyan.css │ │ │ ├── dark-dust.css │ │ │ ├── dark-geekblue.css │ │ │ ├── dark-green.css │ │ │ ├── dark-purple.css │ │ │ ├── dark-sunset.css │ │ │ ├── dark-volcano.css │ │ │ ├── dark.css │ │ │ ├── dust.css │ │ │ ├── geekblue.css │ │ │ ├── green.css │ │ │ ├── purple.css │ │ │ ├── sunset.css │ │ │ └── volcano.css │ ├── AntDesign │ │ ├── css │ │ │ ├── ant-design-blazor.aliyun.css │ │ │ ├── ant-design-blazor.aliyun.min.css │ │ │ ├── ant-design-blazor.compact.css │ │ │ ├── ant-design-blazor.compact.min.css │ │ │ ├── ant-design-blazor.css │ │ │ ├── ant-design-blazor.dark.css │ │ │ ├── ant-design-blazor.dark.min.css │ │ │ ├── ant-design-blazor.min.css │ │ │ ├── ant-design-blazor.variable.css │ │ │ └── ant-design-blazor.variable.min.css │ │ └── js │ │ │ ├── ant-design-blazor.js │ │ │ └── ant-design-blazor.js.map │ ├── Blazor.Extensions.Logging │ │ └── BrowserConsoleLogger.js │ └── HighlightBlazor │ │ ├── highlight-blazor-styles.css │ │ ├── highlight-blazor.js │ │ ├── highlight-blazor.min.js │ │ └── highlight.png ├── _framework │ ├── AgileConfig.BlazorUI.dll │ ├── AgileConfig.BlazorUI.dll.br │ ├── AgileConfig.BlazorUI.dll.gz │ ├── AgileConfig.BlazorUI.pdb.gz │ ├── AgileConfig.UIApiClient.dll │ ├── AgileConfig.UIApiClient.dll.br │ ├── AgileConfig.UIApiClient.dll.gz │ ├── AgileConfig.UIApiClient.pdb.gz │ ├── AntDesign.Charts.dll │ ├── AntDesign.Charts.dll.br │ ├── AntDesign.Charts.dll.gz │ ├── AntDesign.ProLayout.dll │ ├── AntDesign.ProLayout.dll.br │ ├── AntDesign.ProLayout.dll.gz │ ├── AntDesign.dll │ ├── AntDesign.dll.br │ ├── AntDesign.dll.gz │ ├── Blazor.Extensions.Logging.dll │ ├── Blazor.Extensions.Logging.dll.br │ ├── Blazor.Extensions.Logging.dll.gz │ ├── Blazored.LocalStorage.dll │ ├── Blazored.LocalStorage.dll.br │ ├── Blazored.LocalStorage.dll.gz │ ├── HighlightBlazor.dll │ ├── HighlightBlazor.dll.br │ ├── HighlightBlazor.dll.gz │ ├── Microsoft.AspNetCore.Authorization.dll │ ├── Microsoft.AspNetCore.Authorization.dll.br │ ├── Microsoft.AspNetCore.Authorization.dll.gz │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ ├── Microsoft.AspNetCore.Components.Authorization.dll.br │ ├── Microsoft.AspNetCore.Components.Authorization.dll.gz │ ├── Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll │ ├── Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll.br │ ├── Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll.gz │ ├── Microsoft.AspNetCore.Components.Forms.dll │ ├── Microsoft.AspNetCore.Components.Forms.dll.br │ ├── Microsoft.AspNetCore.Components.Forms.dll.gz │ ├── Microsoft.AspNetCore.Components.Web.dll │ ├── Microsoft.AspNetCore.Components.Web.dll.br │ ├── Microsoft.AspNetCore.Components.Web.dll.gz │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll.br │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll.gz │ ├── Microsoft.AspNetCore.Components.dll │ ├── Microsoft.AspNetCore.Components.dll.br │ ├── Microsoft.AspNetCore.Components.dll.gz │ ├── Microsoft.AspNetCore.Metadata.dll │ ├── Microsoft.AspNetCore.Metadata.dll.br │ ├── Microsoft.AspNetCore.Metadata.dll.gz │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Abstractions.dll.br │ ├── Microsoft.Extensions.Caching.Abstractions.dll.gz │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Caching.Memory.dll.br │ ├── Microsoft.Extensions.Caching.Memory.dll.gz │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll.br │ ├── Microsoft.Extensions.Configuration.Abstractions.dll.gz │ ├── Microsoft.Extensions.Configuration.Binder.dll │ ├── Microsoft.Extensions.Configuration.Binder.dll.br │ ├── Microsoft.Extensions.Configuration.Binder.dll.gz │ ├── Microsoft.Extensions.Configuration.Json.dll │ ├── Microsoft.Extensions.Configuration.Json.dll.br │ ├── Microsoft.Extensions.Configuration.Json.dll.gz │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.Configuration.dll.br │ ├── Microsoft.Extensions.Configuration.dll.gz │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll.br │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.DependencyInjection.dll.br │ ├── Microsoft.Extensions.DependencyInjection.dll.gz │ ├── Microsoft.Extensions.Http.dll │ ├── Microsoft.Extensions.Http.dll.br │ ├── Microsoft.Extensions.Http.dll.gz │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll.br │ ├── Microsoft.Extensions.Logging.Abstractions.dll.gz │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Logging.dll.br │ ├── Microsoft.Extensions.Logging.dll.gz │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll.br │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll.gz │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Options.dll.br │ ├── Microsoft.Extensions.Options.dll.gz │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Extensions.Primitives.dll.br │ ├── Microsoft.Extensions.Primitives.dll.gz │ ├── Microsoft.JSInterop.WebAssembly.dll │ ├── Microsoft.JSInterop.WebAssembly.dll.br │ ├── Microsoft.JSInterop.WebAssembly.dll.gz │ ├── Microsoft.JSInterop.dll │ ├── Microsoft.JSInterop.dll.br │ ├── Microsoft.JSInterop.dll.gz │ ├── OneOf.dll │ ├── OneOf.dll.br │ ├── OneOf.dll.gz │ ├── System.Collections.Concurrent.dll │ ├── System.Collections.Concurrent.dll.br │ ├── System.Collections.Concurrent.dll.gz │ ├── System.Collections.NonGeneric.dll │ ├── System.Collections.NonGeneric.dll.br │ ├── System.Collections.NonGeneric.dll.gz │ ├── System.Collections.Specialized.dll │ ├── System.Collections.Specialized.dll.br │ ├── System.Collections.Specialized.dll.gz │ ├── System.Collections.dll │ ├── System.Collections.dll.br │ ├── System.Collections.dll.gz │ ├── System.ComponentModel.Annotations.dll │ ├── System.ComponentModel.Annotations.dll.br │ ├── System.ComponentModel.Annotations.dll.gz │ ├── System.ComponentModel.Primitives.dll │ ├── System.ComponentModel.Primitives.dll.br │ ├── System.ComponentModel.Primitives.dll.gz │ ├── System.ComponentModel.TypeConverter.dll │ ├── System.ComponentModel.TypeConverter.dll.br │ ├── System.ComponentModel.TypeConverter.dll.gz │ ├── System.ComponentModel.dll │ ├── System.ComponentModel.dll.br │ ├── System.ComponentModel.dll.gz │ ├── System.Console.dll │ ├── System.Console.dll.br │ ├── System.Console.dll.gz │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.Debug.dll.br │ ├── System.Diagnostics.Debug.dll.gz │ ├── System.Diagnostics.TraceSource.dll │ ├── System.Diagnostics.TraceSource.dll.br │ ├── System.Diagnostics.TraceSource.dll.gz │ ├── System.Linq.Expressions.dll │ ├── System.Linq.Expressions.dll.br │ ├── System.Linq.Expressions.dll.gz │ ├── System.Linq.Queryable.dll │ ├── System.Linq.Queryable.dll.br │ ├── System.Linq.Queryable.dll.gz │ ├── System.Linq.dll │ ├── System.Linq.dll.br │ ├── System.Linq.dll.gz │ ├── System.Memory.dll │ ├── System.Memory.dll.br │ ├── System.Memory.dll.gz │ ├── System.Net.Http.dll │ ├── System.Net.Http.dll.br │ ├── System.Net.Http.dll.gz │ ├── System.Net.Primitives.dll │ ├── System.Net.Primitives.dll.br │ ├── System.Net.Primitives.dll.gz │ ├── System.ObjectModel.dll │ ├── System.ObjectModel.dll.br │ ├── System.ObjectModel.dll.gz │ ├── System.Private.CoreLib.dll │ ├── System.Private.CoreLib.dll.br │ ├── System.Private.CoreLib.dll.gz │ ├── System.Private.Runtime.InteropServices.JavaScript.dll │ ├── System.Private.Runtime.InteropServices.JavaScript.dll.br │ ├── System.Private.Runtime.InteropServices.JavaScript.dll.gz │ ├── System.Private.Uri.dll │ ├── System.Private.Uri.dll.br │ ├── System.Private.Uri.dll.gz │ ├── System.Private.Xml.Linq.dll │ ├── System.Private.Xml.Linq.dll.br │ ├── System.Private.Xml.Linq.dll.gz │ ├── System.Private.Xml.dll │ ├── System.Private.Xml.dll.br │ ├── System.Private.Xml.dll.gz │ ├── System.Resources.ResourceManager.dll │ ├── System.Resources.ResourceManager.dll.br │ ├── System.Resources.ResourceManager.dll.gz │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll.br │ ├── System.Runtime.CompilerServices.Unsafe.dll.gz │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.dll.br │ ├── System.Runtime.Extensions.dll.gz │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── System.Runtime.InteropServices.RuntimeInformation.dll.br │ ├── System.Runtime.InteropServices.RuntimeInformation.dll.gz │ ├── System.Runtime.dll │ ├── System.Runtime.dll.br │ ├── System.Runtime.dll.gz │ ├── System.Security.Claims.dll │ ├── System.Security.Claims.dll.br │ ├── System.Security.Claims.dll.gz │ ├── System.Security.Cryptography.Algorithms.dll │ ├── System.Security.Cryptography.Algorithms.dll.br │ ├── System.Security.Cryptography.Algorithms.dll.gz │ ├── System.Security.Cryptography.Primitives.dll │ ├── System.Security.Cryptography.Primitives.dll.br │ ├── System.Security.Cryptography.Primitives.dll.gz │ ├── System.Text.Encodings.Web.dll │ ├── System.Text.Encodings.Web.dll.br │ ├── System.Text.Encodings.Web.dll.gz │ ├── System.Text.Json.dll │ ├── System.Text.Json.dll.br │ ├── System.Text.Json.dll.gz │ ├── System.Text.RegularExpressions.dll │ ├── System.Text.RegularExpressions.dll.br │ ├── System.Text.RegularExpressions.dll.gz │ ├── System.Threading.Tasks.Extensions.dll │ ├── System.Threading.Tasks.Extensions.dll.br │ ├── System.Threading.Tasks.Extensions.dll.gz │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.dll.br │ ├── System.Threading.Tasks.dll.gz │ ├── System.Threading.ThreadPool.dll │ ├── System.Threading.ThreadPool.dll.br │ ├── System.Threading.ThreadPool.dll.gz │ ├── System.Threading.Timer.dll │ ├── System.Threading.Timer.dll.br │ ├── System.Threading.Timer.dll.gz │ ├── System.Threading.dll │ ├── System.Threading.dll.br │ ├── System.Threading.dll.gz │ ├── System.Xml.XDocument.dll │ ├── System.Xml.XDocument.dll.br │ ├── System.Xml.XDocument.dll.gz │ ├── System.dll │ ├── System.dll.br │ ├── System.dll.gz │ ├── WebApiClientCore.Abstractions.dll │ ├── WebApiClientCore.Abstractions.dll.br │ ├── WebApiClientCore.Abstractions.dll.gz │ ├── WebApiClientCore.dll │ ├── WebApiClientCore.dll.br │ ├── WebApiClientCore.dll.gz │ ├── blazor.boot.json │ ├── blazor.boot.json.br │ ├── blazor.boot.json.gz │ ├── blazor.webassembly.js │ ├── blazor.webassembly.js.br │ ├── blazor.webassembly.js.gz │ ├── dotnet.6.0.8.yw1790vrhm.js │ ├── dotnet.6.0.8.yw1790vrhm.js.br │ ├── dotnet.6.0.8.yw1790vrhm.js.gz │ ├── dotnet.timezones.blat │ ├── dotnet.timezones.blat.br │ ├── dotnet.timezones.blat.gz │ ├── dotnet.wasm │ ├── dotnet.wasm.br │ ├── dotnet.wasm.gz │ ├── en-us │ │ ├── WebApiClientCore.resources.dll │ │ ├── WebApiClientCore.resources.dll.br │ │ └── WebApiClientCore.resources.dll.gz │ ├── icudt.dat │ ├── icudt.dat.br │ ├── icudt.dat.gz │ ├── icudt_CJK.dat │ ├── icudt_CJK.dat.br │ ├── icudt_CJK.dat.gz │ ├── icudt_EFIGS.dat │ ├── icudt_EFIGS.dat.br │ ├── icudt_EFIGS.dat.gz │ ├── icudt_no_CJK.dat │ ├── icudt_no_CJK.dat.br │ ├── icudt_no_CJK.dat.gz │ ├── netstandard.dll │ ├── netstandard.dll.br │ └── netstandard.dll.gz ├── appsettings.json ├── appsettings.json.br ├── appsettings.json.gz ├── assets │ ├── 403.svg │ └── logo.svg ├── css │ ├── site.css │ └── site_1.css ├── favicon.ico ├── index.html ├── js │ └── downloadFile.js └── web.config ├── githubpage-publish.cmd ├── nuget.config ├── publish.cmd └── src ├── AgileConfig.BlazorUI.SimpleHost ├── .config │ └── dotnet-tools.json ├── AgileConfig.BlazorUI.SimpleHost.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── AgileConfig.BlazorUI ├── AgileConfig.BlazorUI.csproj ├── App.razor ├── Auth │ ├── ApiAuthenticationStateProvider.cs │ ├── AuthService.cs │ ├── DependencyInjectionExtensions.cs │ ├── IUserPermissionChecker.cs │ └── UIApiTokenProvider.cs ├── Components │ ├── AgileConfigServer │ │ ├── EditAgileConfigServer.razor │ │ └── EditAgileConfigServer.razor.cs │ ├── App │ │ ├── AuthApp.razor │ │ ├── AuthApp.razor.cs │ │ ├── EditApp.razor │ │ ├── EditApp.razor.cs │ │ ├── InheritancedAppView.razor │ │ └── InheritancedAppView.razor.cs │ ├── AuthorizedElement.razor │ ├── Config │ │ ├── ConfigComparer.razor │ │ ├── ConfigComparer.razor.cs │ │ ├── ConfigEditor.razor │ │ ├── ConfigEditor.razor.cs │ │ ├── ConfigEnvironmentSync.razor │ │ ├── ConfigExport.razor │ │ ├── ConfigExport.razor.cs │ │ ├── ConfigHistory.razor │ │ ├── ConfigHistory.razor.cs │ │ ├── ConfigImport.razor │ │ ├── ConfigImport.razor.cs │ │ ├── ConfigItemHistory.razor │ │ ├── ConfigItemHistory.razor.cs │ │ ├── ConfigPublisher.razor │ │ ├── ConfigPublisher.razor.cs │ │ ├── EditConfig.razor │ │ └── EditConfig.razor.cs │ ├── CopyableInputPassword.cs │ ├── Node │ │ ├── EditNode.razor │ │ └── EditNode.razor.cs │ ├── PasswordText.cs │ ├── RightContent.razor │ ├── RightContent.razor.cs │ ├── Service │ │ ├── EditService.razor │ │ └── EditService.razor.cs │ └── User │ │ ├── EditUser.razor │ │ └── EditUser.razor.cs ├── Consts │ ├── CacheKey.cs │ ├── Format.cs │ ├── Home.cs │ ├── Json.cs │ ├── JudgeKey.cs │ ├── Production.cs │ └── RoutePath.cs ├── Enums │ ├── EnumEditType.cs │ ├── EnumItemShowType.cs │ ├── EnumOrder.cs │ └── SupportLanguage.cs ├── Extensions │ ├── EnumExtension.cs │ └── TaskExtensions.cs ├── Filters │ └── AgileConfigServerFilter.cs ├── Helpers │ ├── JsonDataHelper.cs │ ├── KeyboardHelper.cs │ └── LayoutHelper.cs ├── IconHelper.cs ├── Layouts │ ├── LoginLayout.razor │ ├── MainLayout.razor │ ├── MainLayout.razor.cs │ └── NothingLayout.razor ├── Localizations │ ├── Display.cs │ ├── ModuleName.cs │ ├── Partial │ │ ├── Component.cs │ │ ├── ErrCode.cs │ │ ├── GlobalHeader.cs │ │ ├── Menu.cs │ │ └── Pages.cs │ └── Translator.cs ├── Model │ ├── AgileConfigServerSetting.cs │ └── JsonData.cs ├── Pages │ ├── AgileConfigServerManager.razor │ ├── AgileConfigServerManager.razor.cs │ ├── App.razor │ ├── App.razor.cs │ ├── Client.razor │ ├── Client.razor.cs │ ├── Config.razor │ ├── Config.razor.cs │ ├── Home.razor │ ├── Home.razor.cs │ ├── InitPassword.razor │ ├── InitPassword.razor.cs │ ├── Log.razor │ ├── Log.razor.cs │ ├── Login.razor │ ├── Login.razor.cs │ ├── Node.razor │ ├── Node.razor.cs │ ├── ResetPassword.razor │ ├── ResetPassword.razor.cs │ ├── Service.razor │ ├── Service.razor.cs │ ├── User.razor │ ├── User.razor.cs │ ├── Welcome.razor │ └── Welcome.razor.css ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── AgileConfigServerProvider.cs │ └── NavigationService.cs ├── _Imports.razor └── wwwroot │ ├── .gitattributes │ ├── .nojekyll │ ├── 404.html │ ├── appsettings.json │ ├── assets │ ├── 403.svg │ └── logo.svg │ ├── css │ ├── site.css │ └── site_1.css │ ├── favicon.ico │ ├── index.html │ ├── index4githubpages.html │ └── js │ └── downloadFile.js ├── AgileConfig.OpenApiClient ├── AgileConfig.OpenApiClient.csproj ├── DependencyInjectionExtensions.cs ├── HttpApis │ ├── IAppApi.cs │ ├── IConfigApi.cs │ ├── INodeApi.cs │ └── IRegisterCenterApi.cs └── HttpModels │ ├── ApiAppVM.cs │ ├── ApiConfigVM.cs │ ├── ApiNodeVM.cs │ ├── ApiPublishTimelineVM.cs │ ├── ConfigStatus.cs │ ├── EditStatus.cs │ ├── HeartbeatParam.cs │ ├── HeartbeatResultVM.cs │ ├── LoginVM.cs │ ├── NodeStatus.cs │ ├── OnlineStatus.cs │ ├── RegisterResultVM.cs │ ├── RegisterServiceInfoVM.cs │ ├── ServiceInfoVM.cs │ └── ServiceStatus.cs ├── AgileConfig.UIApiClient ├── AgileConfig.UIApiClient.csproj ├── ApiResult.cs ├── DependencyInjectionExtensions.cs ├── HttpApis │ ├── IAdminApi.cs │ ├── IAppApi.cs │ ├── IConfigApi.cs │ ├── IHomeApi.cs │ ├── IRemoteOPApi.cs │ ├── IRemoteServerProxyApi.cs │ ├── IReportApi.cs │ ├── IServerNodeApi.cs │ ├── IServiceApi.cs │ ├── ISysLogApi.cs │ └── IUserApi.cs ├── HttpModels │ ├── AppAuthVM.cs │ ├── AppVM.cs │ ├── ChangePasswordVM.cs │ ├── ClientVM.cs │ ├── ConfigVM.cs │ ├── EnumRole.cs │ ├── InitPasswordVM.cs │ ├── LoginVM.cs │ ├── NodeStatus.cs │ ├── PublishLogVM.cs │ ├── SaveJsonVM.cs │ ├── SaveKVListVM.cs │ ├── ServerNodeVM.cs │ ├── ServiceInfoVM.cs │ ├── SysLogType.cs │ ├── SysLogVM.cs │ ├── UserStatus.cs │ ├── UserVM.cs │ └── WebsocketAction.cs ├── HttpResults │ ├── AppListVM.cs │ ├── ConfigItemPublishedLog.cs │ ├── ConfigPublishedLog.cs │ ├── CurrentUserResult.cs │ ├── HomeSysResult.cs │ ├── LoginResult.cs │ ├── RemoteNodeStatusResult.cs │ ├── ServerNodeResult.cs │ ├── ServiceCountResult.cs │ └── TokenResult.cs └── PageResult.cs └── AgileConfig.WindowsApp ├── AgileConfig.WindowsApp.csproj ├── CoreSettings.cs ├── HostMachineHelper.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties └── launchSettings.json └── Startup.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/.gitignore -------------------------------------------------------------------------------- /AgileConfig.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/AgileConfig.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- 1 | * binary -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/_content/AntDesign.Charts/ant-design-charts-blazor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.Charts/ant-design-charts-blazor.js -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/css/ant-design-pro-layout-blazor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/css/ant-design-pro-layout-blazor.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/cyan.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark-cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark-cyan.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark-dust.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark-dust.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark-geekblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark-geekblue.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark-green.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark-purple.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark-sunset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark-sunset.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark-volcano.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark-volcano.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dark.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/dust.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/dust.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/geekblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/geekblue.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/green.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/purple.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/sunset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/sunset.css -------------------------------------------------------------------------------- /docs/_content/AntDesign.ProLayout/theme/volcano.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign.ProLayout/theme/volcano.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.aliyun.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.aliyun.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.aliyun.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.aliyun.min.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.compact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.compact.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.compact.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.compact.min.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.dark.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.dark.min.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.min.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.variable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.variable.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/css/ant-design-blazor.variable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/css/ant-design-blazor.variable.min.css -------------------------------------------------------------------------------- /docs/_content/AntDesign/js/ant-design-blazor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/js/ant-design-blazor.js -------------------------------------------------------------------------------- /docs/_content/AntDesign/js/ant-design-blazor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/AntDesign/js/ant-design-blazor.js.map -------------------------------------------------------------------------------- /docs/_content/Blazor.Extensions.Logging/BrowserConsoleLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/Blazor.Extensions.Logging/BrowserConsoleLogger.js -------------------------------------------------------------------------------- /docs/_content/HighlightBlazor/highlight-blazor-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/HighlightBlazor/highlight-blazor-styles.css -------------------------------------------------------------------------------- /docs/_content/HighlightBlazor/highlight-blazor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/HighlightBlazor/highlight-blazor.js -------------------------------------------------------------------------------- /docs/_content/HighlightBlazor/highlight-blazor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/HighlightBlazor/highlight-blazor.min.js -------------------------------------------------------------------------------- /docs/_content/HighlightBlazor/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_content/HighlightBlazor/highlight.png -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.BlazorUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.BlazorUI.dll -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.BlazorUI.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.BlazorUI.dll.br -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.BlazorUI.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.BlazorUI.dll.gz -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.BlazorUI.pdb.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.BlazorUI.pdb.gz -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.UIApiClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.UIApiClient.dll -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.UIApiClient.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.UIApiClient.dll.br -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.UIApiClient.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.UIApiClient.dll.gz -------------------------------------------------------------------------------- /docs/_framework/AgileConfig.UIApiClient.pdb.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AgileConfig.UIApiClient.pdb.gz -------------------------------------------------------------------------------- /docs/_framework/AntDesign.Charts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.Charts.dll -------------------------------------------------------------------------------- /docs/_framework/AntDesign.Charts.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.Charts.dll.br -------------------------------------------------------------------------------- /docs/_framework/AntDesign.Charts.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.Charts.dll.gz -------------------------------------------------------------------------------- /docs/_framework/AntDesign.ProLayout.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.ProLayout.dll -------------------------------------------------------------------------------- /docs/_framework/AntDesign.ProLayout.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.ProLayout.dll.br -------------------------------------------------------------------------------- /docs/_framework/AntDesign.ProLayout.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.ProLayout.dll.gz -------------------------------------------------------------------------------- /docs/_framework/AntDesign.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.dll -------------------------------------------------------------------------------- /docs/_framework/AntDesign.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.dll.br -------------------------------------------------------------------------------- /docs/_framework/AntDesign.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/AntDesign.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Blazor.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Blazor.Extensions.Logging.dll -------------------------------------------------------------------------------- /docs/_framework/Blazor.Extensions.Logging.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Blazor.Extensions.Logging.dll.br -------------------------------------------------------------------------------- /docs/_framework/Blazor.Extensions.Logging.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Blazor.Extensions.Logging.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Blazored.LocalStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Blazored.LocalStorage.dll -------------------------------------------------------------------------------- /docs/_framework/Blazored.LocalStorage.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Blazored.LocalStorage.dll.br -------------------------------------------------------------------------------- /docs/_framework/Blazored.LocalStorage.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Blazored.LocalStorage.dll.gz -------------------------------------------------------------------------------- /docs/_framework/HighlightBlazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/HighlightBlazor.dll -------------------------------------------------------------------------------- /docs/_framework/HighlightBlazor.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/HighlightBlazor.dll.br -------------------------------------------------------------------------------- /docs/_framework/HighlightBlazor.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/HighlightBlazor.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Authorization.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Authorization.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Authorization.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Authorization.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Authorization.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Authorization.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Authorization.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.DataAnnotations.Validation.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Forms.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Forms.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Forms.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Web.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Web.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.Web.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.Web.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Components.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Components.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Metadata.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Metadata.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Metadata.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.AspNetCore.Metadata.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.AspNetCore.Metadata.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Caching.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Caching.Abstractions.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Caching.Abstractions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Caching.Memory.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Caching.Memory.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Caching.Memory.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Caching.Memory.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Binder.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Binder.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Json.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Json.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.Json.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.Json.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Configuration.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Configuration.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.DependencyInjection.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.DependencyInjection.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.DependencyInjection.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.DependencyInjection.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Http.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Http.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Http.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Http.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Http.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Logging.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Logging.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Logging.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Logging.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Options.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Options.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Options.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Options.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Primitives.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.Extensions.Primitives.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.Extensions.Primitives.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.JSInterop.WebAssembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.JSInterop.WebAssembly.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.JSInterop.WebAssembly.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.JSInterop.WebAssembly.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.JSInterop.WebAssembly.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.JSInterop.WebAssembly.dll.gz -------------------------------------------------------------------------------- /docs/_framework/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /docs/_framework/Microsoft.JSInterop.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.JSInterop.dll.br -------------------------------------------------------------------------------- /docs/_framework/Microsoft.JSInterop.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/Microsoft.JSInterop.dll.gz -------------------------------------------------------------------------------- /docs/_framework/OneOf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/OneOf.dll -------------------------------------------------------------------------------- /docs/_framework/OneOf.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/OneOf.dll.br -------------------------------------------------------------------------------- /docs/_framework/OneOf.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/OneOf.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /docs/_framework/System.Collections.Concurrent.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.Concurrent.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Collections.Concurrent.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.Concurrent.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /docs/_framework/System.Collections.NonGeneric.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.NonGeneric.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Collections.NonGeneric.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.NonGeneric.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /docs/_framework/System.Collections.Specialized.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.Specialized.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Collections.Specialized.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.Specialized.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.dll -------------------------------------------------------------------------------- /docs/_framework/System.Collections.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Collections.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Collections.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.Annotations.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.Annotations.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.Annotations.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.Annotations.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.Primitives.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.Primitives.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.Primitives.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.TypeConverter.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.TypeConverter.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.TypeConverter.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.TypeConverter.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.dll -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.ComponentModel.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ComponentModel.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Console.dll -------------------------------------------------------------------------------- /docs/_framework/System.Console.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Console.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Console.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Console.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /docs/_framework/System.Diagnostics.Debug.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Diagnostics.Debug.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Diagnostics.Debug.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Diagnostics.Debug.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /docs/_framework/System.Diagnostics.TraceSource.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Diagnostics.TraceSource.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Diagnostics.TraceSource.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Diagnostics.TraceSource.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /docs/_framework/System.Linq.Expressions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.Expressions.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Linq.Expressions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.Expressions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /docs/_framework/System.Linq.Queryable.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.Queryable.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Linq.Queryable.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.Queryable.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.dll -------------------------------------------------------------------------------- /docs/_framework/System.Linq.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Linq.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Linq.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Memory.dll -------------------------------------------------------------------------------- /docs/_framework/System.Memory.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Memory.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Memory.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Memory.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Net.Http.dll -------------------------------------------------------------------------------- /docs/_framework/System.Net.Http.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Net.Http.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Net.Http.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Net.Http.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Net.Primitives.dll -------------------------------------------------------------------------------- /docs/_framework/System.Net.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Net.Primitives.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Net.Primitives.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Net.Primitives.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ObjectModel.dll -------------------------------------------------------------------------------- /docs/_framework/System.ObjectModel.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ObjectModel.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.ObjectModel.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.ObjectModel.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Private.CoreLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.CoreLib.dll -------------------------------------------------------------------------------- /docs/_framework/System.Private.CoreLib.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.CoreLib.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Private.CoreLib.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.CoreLib.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Private.Runtime.InteropServices.JavaScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Runtime.InteropServices.JavaScript.dll -------------------------------------------------------------------------------- /docs/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Private.Uri.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Uri.dll -------------------------------------------------------------------------------- /docs/_framework/System.Private.Uri.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Uri.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Private.Uri.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Uri.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Private.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Xml.Linq.dll -------------------------------------------------------------------------------- /docs/_framework/System.Private.Xml.Linq.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Xml.Linq.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Private.Xml.Linq.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Xml.Linq.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Private.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Xml.dll -------------------------------------------------------------------------------- /docs/_framework/System.Private.Xml.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Xml.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Private.Xml.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Private.Xml.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /docs/_framework/System.Resources.ResourceManager.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Resources.ResourceManager.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Resources.ResourceManager.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Resources.ResourceManager.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.CompilerServices.Unsafe.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.CompilerServices.Unsafe.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.Extensions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.Extensions.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.Extensions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.Extensions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.dll -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Runtime.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Runtime.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Claims.dll -------------------------------------------------------------------------------- /docs/_framework/System.Security.Claims.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Claims.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Security.Claims.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Claims.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /docs/_framework/System.Security.Cryptography.Algorithms.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Cryptography.Algorithms.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Security.Cryptography.Algorithms.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Cryptography.Algorithms.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /docs/_framework/System.Security.Cryptography.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Cryptography.Primitives.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Security.Cryptography.Primitives.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Security.Cryptography.Primitives.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /docs/_framework/System.Text.Encodings.Web.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.Encodings.Web.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Text.Encodings.Web.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.Encodings.Web.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.Json.dll -------------------------------------------------------------------------------- /docs/_framework/System.Text.Json.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.Json.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Text.Json.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.Json.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /docs/_framework/System.Text.RegularExpressions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.RegularExpressions.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Text.RegularExpressions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Text.RegularExpressions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Tasks.Extensions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Tasks.Extensions.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Tasks.Extensions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Tasks.Extensions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Tasks.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Tasks.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Tasks.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Tasks.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /docs/_framework/System.Threading.ThreadPool.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.ThreadPool.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Threading.ThreadPool.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.ThreadPool.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Timer.dll -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Timer.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Timer.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Threading.Timer.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.Timer.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.dll -------------------------------------------------------------------------------- /docs/_framework/System.Threading.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Threading.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Threading.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /docs/_framework/System.Xml.XDocument.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Xml.XDocument.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.Xml.XDocument.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.Xml.XDocument.dll.gz -------------------------------------------------------------------------------- /docs/_framework/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.dll -------------------------------------------------------------------------------- /docs/_framework/System.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.dll.br -------------------------------------------------------------------------------- /docs/_framework/System.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/System.dll.gz -------------------------------------------------------------------------------- /docs/_framework/WebApiClientCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/WebApiClientCore.Abstractions.dll -------------------------------------------------------------------------------- /docs/_framework/WebApiClientCore.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/WebApiClientCore.Abstractions.dll.br -------------------------------------------------------------------------------- /docs/_framework/WebApiClientCore.Abstractions.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/WebApiClientCore.Abstractions.dll.gz -------------------------------------------------------------------------------- /docs/_framework/WebApiClientCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/WebApiClientCore.dll -------------------------------------------------------------------------------- /docs/_framework/WebApiClientCore.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/WebApiClientCore.dll.br -------------------------------------------------------------------------------- /docs/_framework/WebApiClientCore.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/WebApiClientCore.dll.gz -------------------------------------------------------------------------------- /docs/_framework/blazor.boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/blazor.boot.json -------------------------------------------------------------------------------- /docs/_framework/blazor.boot.json.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/blazor.boot.json.br -------------------------------------------------------------------------------- /docs/_framework/blazor.boot.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/blazor.boot.json.gz -------------------------------------------------------------------------------- /docs/_framework/blazor.webassembly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/blazor.webassembly.js -------------------------------------------------------------------------------- /docs/_framework/blazor.webassembly.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/blazor.webassembly.js.br -------------------------------------------------------------------------------- /docs/_framework/blazor.webassembly.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/blazor.webassembly.js.gz -------------------------------------------------------------------------------- /docs/_framework/dotnet.6.0.8.yw1790vrhm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.6.0.8.yw1790vrhm.js -------------------------------------------------------------------------------- /docs/_framework/dotnet.6.0.8.yw1790vrhm.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.6.0.8.yw1790vrhm.js.br -------------------------------------------------------------------------------- /docs/_framework/dotnet.6.0.8.yw1790vrhm.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.6.0.8.yw1790vrhm.js.gz -------------------------------------------------------------------------------- /docs/_framework/dotnet.timezones.blat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.timezones.blat -------------------------------------------------------------------------------- /docs/_framework/dotnet.timezones.blat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.timezones.blat.br -------------------------------------------------------------------------------- /docs/_framework/dotnet.timezones.blat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.timezones.blat.gz -------------------------------------------------------------------------------- /docs/_framework/dotnet.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.wasm -------------------------------------------------------------------------------- /docs/_framework/dotnet.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.wasm.br -------------------------------------------------------------------------------- /docs/_framework/dotnet.wasm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/dotnet.wasm.gz -------------------------------------------------------------------------------- /docs/_framework/en-us/WebApiClientCore.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/en-us/WebApiClientCore.resources.dll -------------------------------------------------------------------------------- /docs/_framework/en-us/WebApiClientCore.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/en-us/WebApiClientCore.resources.dll.br -------------------------------------------------------------------------------- /docs/_framework/en-us/WebApiClientCore.resources.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/en-us/WebApiClientCore.resources.dll.gz -------------------------------------------------------------------------------- /docs/_framework/icudt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt.dat -------------------------------------------------------------------------------- /docs/_framework/icudt.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt.dat.br -------------------------------------------------------------------------------- /docs/_framework/icudt.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt.dat.gz -------------------------------------------------------------------------------- /docs/_framework/icudt_CJK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_CJK.dat -------------------------------------------------------------------------------- /docs/_framework/icudt_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_CJK.dat.br -------------------------------------------------------------------------------- /docs/_framework/icudt_CJK.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_CJK.dat.gz -------------------------------------------------------------------------------- /docs/_framework/icudt_EFIGS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_EFIGS.dat -------------------------------------------------------------------------------- /docs/_framework/icudt_EFIGS.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_EFIGS.dat.br -------------------------------------------------------------------------------- /docs/_framework/icudt_EFIGS.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_EFIGS.dat.gz -------------------------------------------------------------------------------- /docs/_framework/icudt_no_CJK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_no_CJK.dat -------------------------------------------------------------------------------- /docs/_framework/icudt_no_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_no_CJK.dat.br -------------------------------------------------------------------------------- /docs/_framework/icudt_no_CJK.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/icudt_no_CJK.dat.gz -------------------------------------------------------------------------------- /docs/_framework/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/netstandard.dll -------------------------------------------------------------------------------- /docs/_framework/netstandard.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/netstandard.dll.br -------------------------------------------------------------------------------- /docs/_framework/netstandard.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/_framework/netstandard.dll.gz -------------------------------------------------------------------------------- /docs/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/appsettings.json -------------------------------------------------------------------------------- /docs/appsettings.json.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/appsettings.json.br -------------------------------------------------------------------------------- /docs/appsettings.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/appsettings.json.gz -------------------------------------------------------------------------------- /docs/assets/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/assets/403.svg -------------------------------------------------------------------------------- /docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/assets/logo.svg -------------------------------------------------------------------------------- /docs/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/css/site.css -------------------------------------------------------------------------------- /docs/css/site_1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/css/site_1.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/downloadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/js/downloadFile.js -------------------------------------------------------------------------------- /docs/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/docs/web.config -------------------------------------------------------------------------------- /githubpage-publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/githubpage-publish.cmd -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/nuget.config -------------------------------------------------------------------------------- /publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/publish.cmd -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI.SimpleHost/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI.SimpleHost/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI.SimpleHost/AgileConfig.BlazorUI.SimpleHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI.SimpleHost/AgileConfig.BlazorUI.SimpleHost.csproj -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI.SimpleHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI.SimpleHost/Program.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI.SimpleHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI.SimpleHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI.SimpleHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI.SimpleHost/appsettings.Development.json -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI.SimpleHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI.SimpleHost/appsettings.json -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/AgileConfig.BlazorUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/AgileConfig.BlazorUI.csproj -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/App.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Auth/ApiAuthenticationStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Auth/ApiAuthenticationStateProvider.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Auth/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Auth/AuthService.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Auth/DependencyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Auth/DependencyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Auth/IUserPermissionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Auth/IUserPermissionChecker.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Auth/UIApiTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Auth/UIApiTokenProvider.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/AgileConfigServer/EditAgileConfigServer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/AgileConfigServer/EditAgileConfigServer.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/AgileConfigServer/EditAgileConfigServer.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/AgileConfigServer/EditAgileConfigServer.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/App/AuthApp.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/App/AuthApp.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/App/AuthApp.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/App/AuthApp.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/App/EditApp.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/App/EditApp.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/App/EditApp.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/App/EditApp.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/App/InheritancedAppView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/App/InheritancedAppView.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/App/InheritancedAppView.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/App/InheritancedAppView.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/AuthorizedElement.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/AuthorizedElement.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigComparer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigComparer.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigComparer.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigComparer.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigEditor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigEditor.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigEditor.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigEditor.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigEnvironmentSync.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigEnvironmentSync.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigExport.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigExport.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigExport.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigExport.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigHistory.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigHistory.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigHistory.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigHistory.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigImport.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigImport.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigImport.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigImport.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigItemHistory.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigItemHistory.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigItemHistory.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigItemHistory.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigPublisher.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigPublisher.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/ConfigPublisher.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/ConfigPublisher.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/EditConfig.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/EditConfig.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Config/EditConfig.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Config/EditConfig.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/CopyableInputPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/CopyableInputPassword.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Node/EditNode.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Node/EditNode.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Node/EditNode.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Node/EditNode.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/PasswordText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/PasswordText.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/RightContent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/RightContent.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/RightContent.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/RightContent.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Service/EditService.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Service/EditService.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/Service/EditService.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/Service/EditService.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/User/EditUser.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/User/EditUser.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Components/User/EditUser.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Components/User/EditUser.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Consts/CacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Consts/CacheKey.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Consts/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Consts/Format.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Consts/Home.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Consts/Home.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Consts/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Consts/Json.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Consts/JudgeKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Consts/JudgeKey.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Consts/Production.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Consts/Production.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Consts/RoutePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Consts/RoutePath.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Enums/EnumEditType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Enums/EnumEditType.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Enums/EnumItemShowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Enums/EnumItemShowType.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Enums/EnumOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Enums/EnumOrder.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Enums/SupportLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Enums/SupportLanguage.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Extensions/EnumExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Extensions/EnumExtension.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Filters/AgileConfigServerFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Filters/AgileConfigServerFilter.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Helpers/JsonDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Helpers/JsonDataHelper.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Helpers/KeyboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Helpers/KeyboardHelper.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Helpers/LayoutHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Helpers/LayoutHelper.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/IconHelper.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Layouts/LoginLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Layouts/LoginLayout.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Layouts/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Layouts/MainLayout.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Layouts/MainLayout.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Layouts/MainLayout.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Layouts/NothingLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Layouts/NothingLayout.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/Display.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/ModuleName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/ModuleName.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/Partial/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/Partial/Component.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/Partial/ErrCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/Partial/ErrCode.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/Partial/GlobalHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/Partial/GlobalHeader.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/Partial/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/Partial/Menu.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/Partial/Pages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/Partial/Pages.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Localizations/Translator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Localizations/Translator.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Model/AgileConfigServerSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Model/AgileConfigServerSetting.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Model/JsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Model/JsonData.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/AgileConfigServerManager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/AgileConfigServerManager.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/AgileConfigServerManager.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/AgileConfigServerManager.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/App.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/App.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/App.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Client.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Client.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Client.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Client.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Config.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Config.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Config.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Config.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Home.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Home.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Home.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/InitPassword.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/InitPassword.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/InitPassword.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/InitPassword.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Log.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Log.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Log.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Log.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Login.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Login.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Login.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Node.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Node.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Node.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Node.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/ResetPassword.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/ResetPassword.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/ResetPassword.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/ResetPassword.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Service.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Service.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Service.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Service.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/User.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/User.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/User.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/User.razor.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Welcome.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Welcome.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Pages/Welcome.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Pages/Welcome.razor.css -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Program.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Services/AgileConfigServerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Services/AgileConfigServerProvider.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/Services/NavigationService.cs -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/_Imports.razor -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/.gitattributes: -------------------------------------------------------------------------------- 1 | * binary -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/404.html -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/appsettings.json -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/assets/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/assets/403.svg -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/assets/logo.svg -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/css/site_1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/css/site_1.css -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/index.html -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/index4githubpages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/index4githubpages.html -------------------------------------------------------------------------------- /src/AgileConfig.BlazorUI/wwwroot/js/downloadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.BlazorUI/wwwroot/js/downloadFile.js -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/AgileConfig.OpenApiClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/AgileConfig.OpenApiClient.csproj -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/DependencyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/DependencyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpApis/IAppApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpApis/IAppApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpApis/IConfigApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpApis/IConfigApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpApis/INodeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpApis/INodeApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpApis/IRegisterCenterApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpApis/IRegisterCenterApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/ApiAppVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/ApiAppVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/ApiConfigVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/ApiConfigVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/ApiNodeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/ApiNodeVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/ApiPublishTimelineVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/ApiPublishTimelineVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/ConfigStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/ConfigStatus.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/EditStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/EditStatus.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/HeartbeatParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/HeartbeatParam.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/HeartbeatResultVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/HeartbeatResultVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/LoginVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/LoginVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/NodeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/NodeStatus.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/OnlineStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/OnlineStatus.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/RegisterResultVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/RegisterResultVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/RegisterServiceInfoVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/RegisterServiceInfoVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/ServiceInfoVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/ServiceInfoVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.OpenApiClient/HttpModels/ServiceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.OpenApiClient/HttpModels/ServiceStatus.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/AgileConfig.UIApiClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/AgileConfig.UIApiClient.csproj -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/ApiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/ApiResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/DependencyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/DependencyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IAdminApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IAdminApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IAppApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IAppApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IConfigApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IConfigApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IHomeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IHomeApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IRemoteOPApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IRemoteOPApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IRemoteServerProxyApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IRemoteServerProxyApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IReportApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IReportApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IServerNodeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IServerNodeApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IServiceApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IServiceApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/ISysLogApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/ISysLogApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpApis/IUserApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpApis/IUserApi.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/AppAuthVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/AppAuthVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/AppVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/AppVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/ChangePasswordVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/ChangePasswordVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/ClientVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/ClientVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/ConfigVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/ConfigVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/EnumRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/EnumRole.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/InitPasswordVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/InitPasswordVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/LoginVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/LoginVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/NodeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/NodeStatus.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/PublishLogVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/PublishLogVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/SaveJsonVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/SaveJsonVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/SaveKVListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/SaveKVListVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/ServerNodeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/ServerNodeVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/ServiceInfoVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/ServiceInfoVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/SysLogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/SysLogType.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/SysLogVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/SysLogVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/UserStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/UserStatus.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/UserVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/UserVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpModels/WebsocketAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpModels/WebsocketAction.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/AppListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/AppListVM.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/ConfigItemPublishedLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/ConfigItemPublishedLog.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/ConfigPublishedLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/ConfigPublishedLog.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/CurrentUserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/CurrentUserResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/HomeSysResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/HomeSysResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/LoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/LoginResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/RemoteNodeStatusResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/RemoteNodeStatusResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/ServerNodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/ServerNodeResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/ServiceCountResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/ServiceCountResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/HttpResults/TokenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/HttpResults/TokenResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.UIApiClient/PageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.UIApiClient/PageResult.cs -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/AgileConfig.WindowsApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/AgileConfig.WindowsApp.csproj -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/CoreSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/CoreSettings.cs -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/HostMachineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/HostMachineHelper.cs -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/MainForm.cs -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/MainForm.resx -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/Program.cs -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/AgileConfig.WindowsApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EzrealJ/AgileConfigBlazorUI/HEAD/src/AgileConfig.WindowsApp/Startup.cs --------------------------------------------------------------------------------