diff --git a/README.md b/README.md index 95a0e357..25178a96 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ builder.Services.AddBlazorBlueprintComponents(); ```razor @using BlazorBlueprint.Components +@using BlazorBlueprint.Primitives.Services ``` **3. Add CSS** to your `App.razor` `
`: diff --git a/V3-MIGRATION-GUIDE.md b/V3-MIGRATION-GUIDE.md index d7e59231..aac0a595 100644 --- a/V3-MIGRATION-GUIDE.md +++ b/V3-MIGRATION-GUIDE.md @@ -1368,11 +1368,11 @@ A new component that renders child `Avatar` components with overlapping negative ```razor@person.Name
+
+ Use ItemsProvider for server-side data fetching.
+ The view passes the current pagination, sort, and search state and the provider returns the
+ matching page plus a total count. The built-in loading overlay is shown automatically while
+ the request is in flight, and rapid search keystrokes cancel the previous request. Provide
+ either Data or
+ ItemsProvider, not both.
+
@person.Name
+