diff --git a/CHANGELOG.md b/CHANGELOG.md index 5546ac9b854..a31ad31947a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,13 +53,14 @@ All notable changes for each version of this project will be documented in this - **Breaking Change** - The following input has been removed - Input `columns`. Use `igxGrid` `columns` input instead. - `IgxCarousel` - - **Breaking Changes** -The carousel animation type `CarouselAnimationType` is renamed to `HorizontalAnimationType`. + - **Breaking Changes** -The carousel animation type `CarouselAnimationType` is renamed to `HorizontalAnimationType`. ## 12.2.3 ### General - **Breaking Change** - `IgxPercentSummaryOperand` and `IgxCurrencySummaryOperand` have been removed and `IgxNumberSummaryOperand` should be used instead. If you have used the percent or currency summary operands to extend a custom summary operand from them, then change the custom operand to extend from the number summary operand. - +- `IgxToastComponent` + - **Deprecated** - The `position` input property has been deprecated. Use `positionSettings` input instead. ## 12.2.1 ### New Features diff --git a/projects/igniteui-angular/src/lib/stepper/stepper.component.ts b/projects/igniteui-angular/src/lib/stepper/stepper.component.ts index 24824aa0ab3..ece16207618 100644 --- a/projects/igniteui-angular/src/lib/stepper/stepper.component.ts +++ b/projects/igniteui-angular/src/lib/stepper/stepper.component.ts @@ -264,7 +264,7 @@ export class IgxStepperComponent extends IgxCarouselComponentBase implements Igx * ``` * *```typescript - * public handleActiveStepChanging(event: IStepTogglingEventArgs) { + * public handleActiveStepChanging(event: IStepChangingEventArgs) { * if (event.newIndex < event.oldIndex) { * event.cancel = true; * }