From bb643c6f6f7d8500fdf211229583a4bd14ae35b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 04:57:45 +0000 Subject: [PATCH] chore: refresh upstream skill catalog --- .../skills/astro-developer/manifest.json | 2 +- .../skills/use-igniteui-blazor/SKILL.md | 122 ++++++++++++++++++ .../skills/use-igniteui-blazor/manifest.json | 5 + .../astro/packages/astro/package.json | 2 +- .../skills/use-igniteui-blazor/SKILL.md | 122 ++++++++++++++++++ external-sources/vendir.lock.yml | 12 +- 6 files changed, 257 insertions(+), 8 deletions(-) create mode 100644 catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/SKILL.md create mode 100644 catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/manifest.json create mode 100644 external-sources/upstreams/dotnet-skills/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md diff --git a/catalog/Frameworks/Official-Astro/skills/astro-developer/manifest.json b/catalog/Frameworks/Official-Astro/skills/astro-developer/manifest.json index 644c9a18..0fc23658 100644 --- a/catalog/Frameworks/Official-Astro/skills/astro-developer/manifest.json +++ b/catalog/Frameworks/Official-Astro/skills/astro-developer/manifest.json @@ -1,5 +1,5 @@ { - "version": "7.3.2", + "version": "7.3.3", "category": "Web", "compatibility": "Requires the withastro/astro monorepo." } diff --git a/catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/SKILL.md b/catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/SKILL.md new file mode 100644 index 00000000..182d4513 --- /dev/null +++ b/catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/SKILL.md @@ -0,0 +1,122 @@ +--- +license: MIT +name: use-igniteui-blazor +description: > + Add, configure, or review Ignite UI for Blazor Lite component support in Blazor applications. + USE FOR: installing IgniteUI.Blazor.Lite or IgniteUI.Blazor.GridLite, + registering AddIgniteUIBlazor() in Blazor Server, WASM, Hybrid, or split + Blazor Web App projects, adding @using IgniteUI.Blazor.Controls, wiring the + theme stylesheet, picking the right host page, locating the GridLite + stylesheet path, explaining single-project vs split Server/Client Web App + setup differences, and checking where an interactive render mode is needed + for Ignite UI components to work. + DO NOT USE FOR: general Blazor component authoring without Ignite UI, choosing + app architecture or render mode from scratch (see create-blazor-project), + JavaScript interop (see use-js-interop), authentication (see configure-auth), + prerendering (see support-prerendering), or layout/component design questions that need + no Ignite UI setup. +--- + +# Application Setup & Component Registration + +## 1. NuGet package + +Before adding packages, inspect the target projects' target framework and existing package references. The lowest supported target framework version is .NET 8.0. If `IgniteUI.Blazor` or `IgniteUI.Blazor.Trial` is already referenced, keep that package strategy and do not add Lite or GridLite. Only switch package families when the user explicitly asks, replacing conflicting references rather than keeping both. + +```bash +dotnet add package IgniteUI.Blazor.Lite # OSS core UI components (MIT) +dotnet add package IgniteUI.Blazor.GridLite # OSS lightweight grid (MIT) +``` + +Use `IgniteUI.Blazor.Lite` for core controls such as `IgbInput`, `IgbCombo` and `IgbDialog`, and `IgniteUI.Blazor.GridLite` for the lightweight grid. Reference both packages only when the app needs both. Do not invent per-component packages such as `IgniteUI.Blazor.Combo`. + +Charts, maps, gauges and other premium components are not included in Lite. Check the requested component's package before recommending a reference. + +## 2. `IgniteUI.Blazor.Lite` Service Registration + +Usually in `Program.cs`: + +```csharp +builder.Services.AddIgniteUIBlazor(); // no modules pre-loaded; each loads on first render +``` + +Pass `typeof(IgbModule)` values to eagerly pre-load a specific set instead: + +```csharp +builder.Services.AddIgniteUIBlazor( + typeof(IgbInputModule), typeof(IgbComboModule), typeof(IgbDialogModule)); +``` + +Module names always follow `Igb{ComponentName}Module`. Passing modules eagerly loads them during startup, increasing the initial transfer to reduce first-render latency. Components not listed still register their own modules on first render. + +For a GridLite-only setup, do not call `AddIgniteUIBlazor()` or add manual Ignite UI script tags. Reference `IgniteUI.Blazor.GridLite`, add the control namespace, and link the GridLite stylesheet shown below. + +**Split Blazor Web App:** add each required package to both the Server and Client `.csproj` files. For core controls, use the actual project paths in place of these examples. + +```bash +dotnet add Server/Server.csproj package IgniteUI.Blazor.Lite +dotnet add Client/Client.csproj package IgniteUI.Blazor.Lite +``` + +If GridLite is needed, add `IgniteUI.Blazor.GridLite` to both projects as well. For a GridLite-only app, add only that package and skip the service registrations below. + +For Lite, call `AddIgniteUIBlazor()` in **both** the server and client `Program.cs`. + +```csharp +// Server +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents() + .AddInteractiveWebAssemblyComponents(); +builder.Services.AddIgniteUIBlazor(); + +// Client (WebAssemblyHostBuilder) +builder.Services.AddIgniteUIBlazor(); +``` + +For a single-project Interactive Server Blazor Web App, call `AddIgniteUIBlazor()` once in the server `Program.cs`. Do not add a client project or WebAssembly services. + +## 3. `_Imports.razor` + +```razor +@using IgniteUI.Blazor.Controls +``` + +Add it to both `_Imports.razor` files in split Blazor Web App solutions. + +## 4. Host page — theme stylesheet + +Host page is `wwwroot/index.html` (WASM/MAUI), `Pages/_Host.cshtml` (Server), or `Components/App.razor` (Web App). + +`IgniteUI.Blazor.Lite` 0.1.1 loads its JavaScript automatically through a Blazor initializer. Keep the existing Blazor framework script and add the theme stylesheet below. Do not add a manual Ignite UI script tag. + +```html + +``` + +The stylesheet is required: without it components render unstyled. + +Theme files under `_content/IgniteUI.Blazor/themes/` are `{light|dark}/{bootstrap|material|fluent|indigo}.css` — link exactly one. + +.NET 9+ Web App projects can use the fingerprinted asset collection: + +```razor + +``` + +`IgniteUI.Blazor.GridLite` ships its own stylesheet from its own asset root, but should be used only if you are using the GridLite component exclusively. If you are using other Ignite UI components, do not link (or suggest) the GridLite stylesheet — use the main theme stylesheet above instead. + +```html + +``` + +## 5. Render mode (Blazor Web App only) + +Ignite UI components need an interactive render mode; static SSR renders nothing usable. + +```razor +@rendermode InteractiveServer +``` + +Or globally in `App.razor`: ``. + +Use `InteractiveWebAssembly` or `InteractiveAuto` in place of `InteractiveServer` as needed. diff --git a/catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/manifest.json b/catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/manifest.json new file mode 100644 index 00000000..a7e02a38 --- /dev/null +++ b/catalog/Platform/Official-DotNet-Blazor/skills/use-igniteui-blazor/manifest.json @@ -0,0 +1,5 @@ +{ + "version": "0.1.1", + "category": "Core", + "compatibility": "Requires a .NET repository or solution." +} diff --git a/external-sources/upstreams/astro/packages/astro/package.json b/external-sources/upstreams/astro/packages/astro/package.json index 12bd1f5e..66c256f7 100644 --- a/external-sources/upstreams/astro/packages/astro/package.json +++ b/external-sources/upstreams/astro/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "7.3.2", + "version": "7.3.3", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/external-sources/upstreams/dotnet-skills/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md b/external-sources/upstreams/dotnet-skills/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md new file mode 100644 index 00000000..182d4513 --- /dev/null +++ b/external-sources/upstreams/dotnet-skills/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md @@ -0,0 +1,122 @@ +--- +license: MIT +name: use-igniteui-blazor +description: > + Add, configure, or review Ignite UI for Blazor Lite component support in Blazor applications. + USE FOR: installing IgniteUI.Blazor.Lite or IgniteUI.Blazor.GridLite, + registering AddIgniteUIBlazor() in Blazor Server, WASM, Hybrid, or split + Blazor Web App projects, adding @using IgniteUI.Blazor.Controls, wiring the + theme stylesheet, picking the right host page, locating the GridLite + stylesheet path, explaining single-project vs split Server/Client Web App + setup differences, and checking where an interactive render mode is needed + for Ignite UI components to work. + DO NOT USE FOR: general Blazor component authoring without Ignite UI, choosing + app architecture or render mode from scratch (see create-blazor-project), + JavaScript interop (see use-js-interop), authentication (see configure-auth), + prerendering (see support-prerendering), or layout/component design questions that need + no Ignite UI setup. +--- + +# Application Setup & Component Registration + +## 1. NuGet package + +Before adding packages, inspect the target projects' target framework and existing package references. The lowest supported target framework version is .NET 8.0. If `IgniteUI.Blazor` or `IgniteUI.Blazor.Trial` is already referenced, keep that package strategy and do not add Lite or GridLite. Only switch package families when the user explicitly asks, replacing conflicting references rather than keeping both. + +```bash +dotnet add package IgniteUI.Blazor.Lite # OSS core UI components (MIT) +dotnet add package IgniteUI.Blazor.GridLite # OSS lightweight grid (MIT) +``` + +Use `IgniteUI.Blazor.Lite` for core controls such as `IgbInput`, `IgbCombo` and `IgbDialog`, and `IgniteUI.Blazor.GridLite` for the lightweight grid. Reference both packages only when the app needs both. Do not invent per-component packages such as `IgniteUI.Blazor.Combo`. + +Charts, maps, gauges and other premium components are not included in Lite. Check the requested component's package before recommending a reference. + +## 2. `IgniteUI.Blazor.Lite` Service Registration + +Usually in `Program.cs`: + +```csharp +builder.Services.AddIgniteUIBlazor(); // no modules pre-loaded; each loads on first render +``` + +Pass `typeof(IgbModule)` values to eagerly pre-load a specific set instead: + +```csharp +builder.Services.AddIgniteUIBlazor( + typeof(IgbInputModule), typeof(IgbComboModule), typeof(IgbDialogModule)); +``` + +Module names always follow `Igb{ComponentName}Module`. Passing modules eagerly loads them during startup, increasing the initial transfer to reduce first-render latency. Components not listed still register their own modules on first render. + +For a GridLite-only setup, do not call `AddIgniteUIBlazor()` or add manual Ignite UI script tags. Reference `IgniteUI.Blazor.GridLite`, add the control namespace, and link the GridLite stylesheet shown below. + +**Split Blazor Web App:** add each required package to both the Server and Client `.csproj` files. For core controls, use the actual project paths in place of these examples. + +```bash +dotnet add Server/Server.csproj package IgniteUI.Blazor.Lite +dotnet add Client/Client.csproj package IgniteUI.Blazor.Lite +``` + +If GridLite is needed, add `IgniteUI.Blazor.GridLite` to both projects as well. For a GridLite-only app, add only that package and skip the service registrations below. + +For Lite, call `AddIgniteUIBlazor()` in **both** the server and client `Program.cs`. + +```csharp +// Server +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents() + .AddInteractiveWebAssemblyComponents(); +builder.Services.AddIgniteUIBlazor(); + +// Client (WebAssemblyHostBuilder) +builder.Services.AddIgniteUIBlazor(); +``` + +For a single-project Interactive Server Blazor Web App, call `AddIgniteUIBlazor()` once in the server `Program.cs`. Do not add a client project or WebAssembly services. + +## 3. `_Imports.razor` + +```razor +@using IgniteUI.Blazor.Controls +``` + +Add it to both `_Imports.razor` files in split Blazor Web App solutions. + +## 4. Host page — theme stylesheet + +Host page is `wwwroot/index.html` (WASM/MAUI), `Pages/_Host.cshtml` (Server), or `Components/App.razor` (Web App). + +`IgniteUI.Blazor.Lite` 0.1.1 loads its JavaScript automatically through a Blazor initializer. Keep the existing Blazor framework script and add the theme stylesheet below. Do not add a manual Ignite UI script tag. + +```html + +``` + +The stylesheet is required: without it components render unstyled. + +Theme files under `_content/IgniteUI.Blazor/themes/` are `{light|dark}/{bootstrap|material|fluent|indigo}.css` — link exactly one. + +.NET 9+ Web App projects can use the fingerprinted asset collection: + +```razor + +``` + +`IgniteUI.Blazor.GridLite` ships its own stylesheet from its own asset root, but should be used only if you are using the GridLite component exclusively. If you are using other Ignite UI components, do not link (or suggest) the GridLite stylesheet — use the main theme stylesheet above instead. + +```html + +``` + +## 5. Render mode (Blazor Web App only) + +Ignite UI components need an interactive render mode; static SSR renders nothing usable. + +```razor +@rendermode InteractiveServer +``` + +Or globally in `App.razor`: ``. + +Use `InteractiveWebAssembly` or `InteractiveAuto` in place of `InteractiveServer` as needed. diff --git a/external-sources/vendir.lock.yml b/external-sources/vendir.lock.yml index 94e7a2f1..b51e3534 100644 --- a/external-sources/vendir.lock.yml +++ b/external-sources/vendir.lock.yml @@ -2,20 +2,20 @@ apiVersion: vendir.k14s.io/v1alpha1 directories: - contents: - git: - commitTitle: 'Merge pull request #873 from dotnet/add-dotnet-refactoring-skills...' - sha: 26323a52990d0cbfc838117109b40e115aac891f + commitTitle: 'Merge pull request #1184 from dotnet/dependabot/npm_and_yarn/eng/evaluation-tools/microsoft/vally-cli-0.16.0...' + sha: 8bbfe7a4d1c5c0cd42cd04e38031779c75f2dda3 tags: - - skill-validator-nightly-61-g26323a5 + - skill-validator-nightly-100-g8bbfe7a path: dotnet-skills - git: commitTitle: Add Cursor rules that reference the existing skill docs... sha: af2319bd01bb7cc881267a9ef42cafdaf5e9029d path: webgpu-claude-skill - git: - commitTitle: 'feat(factory): adversary skills (#18006)' - sha: c2e6b0d7c7badff6f27cfb8d7dbe8bcaad64759f + commitTitle: 'chore(deps): update VS Code related dependencies (#18038)' + sha: 2acad3f566dc81eeee70269f414fff95d9750528 tags: - - '@astrojs/cloudflare@14.3.1-42-gc2e6b0d7c7' + - '@astrojs/cloudflare@14.3.2-4-g2acad3f566' path: astro path: upstreams kind: LockConfig