From a53f7c474e3a4b1be4f3b359662b412b1b85e595 Mon Sep 17 00:00:00 2001 From: Hristo Anastasov Date: Wed, 3 Nov 2021 11:49:02 +0200 Subject: [PATCH 1/3] chore(*): update changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5546ac9b854..4e340614d6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,7 +53,9 @@ 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`. +- `IgxToastComponent` + - **Deprecated** - The `position` input property has been deprecated. Use `positionSettings` input instead. ## 12.2.3 From f7cb8a11ba45740bd08e39227c3e789d448530b8 Mon Sep 17 00:00:00 2001 From: Hristo Anastasov Date: Wed, 3 Nov 2021 11:54:14 +0200 Subject: [PATCH 2/3] chore(*): update changelog --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e340614d6c..a31ad31947a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,14 +54,13 @@ All notable changes for each version of this project will be documented in this - Input `columns`. Use `igxGrid` `columns` input instead. - `IgxCarousel` - **Breaking Changes** -The carousel animation type `CarouselAnimationType` is renamed to `HorizontalAnimationType`. -- `IgxToastComponent` - - **Deprecated** - The `position` input property has been deprecated. Use `positionSettings` input instead. ## 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 From a324acf8011bb9d9720f19833d5ee8fb2d531647 Mon Sep 17 00:00:00 2001 From: MonikaKirkova Date: Wed, 3 Nov 2021 12:27:23 +0200 Subject: [PATCH 3/3] fix(stepper): fix wrong api comment --- projects/igniteui-angular/src/lib/stepper/stepper.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; * }