diff --git a/BlazorGridExamples/Program.cs b/BlazorGridExamples/Program.cs index 7b86b79..f006a7a 100644 --- a/BlazorGridExamples/Program.cs +++ b/BlazorGridExamples/Program.cs @@ -27,6 +27,8 @@ typeof(IgbCategoryChartModule), typeof(IgbPieChartModule), typeof(IgbSelectModule), + typeof(IgbLinearProgressModule), + typeof(IgbInputModule), typeof(IgbDropdownModule), typeof(IgbPivotGridModule), typeof(IgbPivotDataSelectorModule)); diff --git a/BlazorGridExamples/wwwroot/index.html b/BlazorGridExamples/wwwroot/index.html index 7a1618a..ce52e4e 100644 --- a/BlazorGridExamples/wwwroot/index.html +++ b/BlazorGridExamples/wwwroot/index.html @@ -17,6 +17,7 @@ +
diff --git a/samples/FinanceGrid/ExampleJsInterop.cs b/samples/FinanceGrid/ExampleJsInterop.cs deleted file mode 100644 index 6beb434..0000000 --- a/samples/FinanceGrid/ExampleJsInterop.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Microsoft.JSInterop; - -namespace FinanceGrid -{ - // This class provides an example of how JavaScript functionality can be wrapped - // in a .NET class for easy consumption. The associated JavaScript module is - // loaded on demand when first needed. - // - // This class can be registered as scoped DI service and then injected into Blazor - // components for use. - - public class ExampleJsInterop(IJSRuntime jsRuntime) : IAsyncDisposable - { - private readonly LazyLoading financial data...
-