diff --git a/CHANGELOG.md b/CHANGELOG.md
index 87cde13b422..96cd5432ced 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -80,6 +80,11 @@ All notable changes for each version of this project will be documented in this
- `IgxInputGroupComponent`, `IgxSelectComponent`, `IgxDatePickerComponent`, `IgxDateRangePickerComponent`, `IgxTimePickerComponent`
- The default `type` has changed from `line` to `box`. The `ng update` migration automatically adds `type="line"` to existing instances that do not already have an explicit `type` binding to preserve their appearance.
+### Behavioral Changes
+
+- `IgxCarouselComponent`
+ - Changed the default tab order of the component; focus now flows starting with the active slide indicator, navigation buttons, or the first focusable element in the active slide, whichever is available.
+
### General
- **Touch Gestures (HammerJS)** _(optional)_
@@ -119,7 +124,7 @@ All notable changes for each version of this project will be documented in this
- `IgxOverlayService`
- **Deprecation** - The `outlet` property in `OverlaySettings`, `IgxOverlayOutletDirective`, and `igxToggleOutlet` input on `IgxToggleActionDirective` are deprecated and will be removed in a future version. As overlay service now integrates the HTML Popover API and prefers rendering content in place / in the top layer, significantly reducing the need for outlet containers, new code should rely on the default in-place / top-layer rendering behavior instead of custom outlet containers.
-
+
- **AI-Assisted Development - Copilot Skill: Generate from Image Design**
- Added a new `igniteui-angular-generate-from-image-design` Copilot Skill that teaches AI coding assistants/agents (e.g., GitHub Copilot, Cursor, Windsurf, Claude, JetBrains AI, etc.) how to implement Angular application views directly from design images (screenshots, mockups, wireframes).
- The skill provides a structured workflow covering image analysis, component discovery via MCP tools (`list_components`, `get_doc`), theme generation (`create_palette`, `create_theme`, `create_component_theme`), layout implementation, and visual refinement (`set_size`, `set_spacing`, `set_roundness`).
@@ -160,7 +165,7 @@ All notable changes for each version of this project will be documented in this
data: NOTO_SANS_BOLD // Optional: Base64-encoded bold TTF font data
}
};
-
+
this.pdfExporter.export(this.grid, options);
}
```
@@ -194,7 +199,7 @@ All notable changes for each version of this project will be documented in this
- **Theming & Styling** - Theming & Styling (includes MCP server setup for live theming tools)
- These skills are automatically discovered when placed in the agent's skills path ( e.g. `.claude/skills`) and this release ships with an optional migration to add those to your project. For more information, see the [README](README.md#ai-assisted-development).
-- Added `IgxGridLiteComponent` wrapper around the `igc-grid-lite` Web Component _(in Developer Preview)_
+- Added `IgxGridLiteComponent` wrapper around the `igc-grid-lite` Web Component _(in Developer Preview)_
Available from the `igniteui-angular/grids/lite` entry point. The wrapper component adds Angular-friendly API with similar inputs, including two-way bindable `sortingExpressions` and `filteringExpressions`, Angular template-based cell and header rendering with declarative templates via the `igxGridLiteCell` and `igxGridLiteHeader` directives.
@@ -260,14 +265,14 @@ All notable changes for each version of this project will be documented in this
import { IgxPdfExporterService, IgxPdfExporterOptions } from 'igniteui-angular';
constructor(private pdfExporter: IgxPdfExporterService) {}
-
+
exportToPdf() {
const options = new IgxPdfExporterOptions('MyGridExport');
options.pageOrientation = 'landscape'; // 'portrait' or 'landscape' (default: 'landscape')
options.pageSize = 'a4'; // 'a3', 'a4', 'a5', 'letter', 'legal', etc.
options.fontSize = 10;
options.showTableBorders = true;
-
+
this.pdfExporter.export(this.grid, options);
}
```
@@ -276,9 +281,9 @@ All notable changes for each version of this project will be documented in this
```html