You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18-1
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,21 @@ All notable changes for each version of this project will be documented in this
5
5
## 13.0.0
6
6
7
7
### New Features
8
+
- Added `IgxStepper` component
9
+
- Highly customizable component that visualizes content as a process and shows its progress by dividing the content into chronological `igx-steps`.
10
+
- Exposed API to control features like step validation, styling, orientation, and easy-to-use keyboard navigation.
11
+
- Code example below:
12
+
13
+
```html
14
+
<igx-stepper>
15
+
<igx-step*ngFor="let step of stepsData" >
16
+
...
17
+
</igx-step>
18
+
</igx-stepper>
19
+
```
20
+
21
+
- For more information, check out the [README](https://github.com/IgniteUI/igniteui-angular/blob/master/projects/igniteui-angular/src/lib/stepper/README.md), [specification](https://github.com/IgniteUI/igniteui-angular/wiki/Stepper-Specification) and [official documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/stepper).
Copy file name to clipboardExpand all lines: projects/igniteui-angular/src/lib/carousel/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ A walkthrough of how to get started can be found [here](https://www.infragistics
17
17
|`gesturesSupport`| boolean | Controls should the gestures should be supported. Defaults to `true`. |
18
18
|`maximumIndicatorsCount`| number | The number of visible indicators. Defaults to `5`. |
19
19
|`indicatorsOrientation`| CarouselIndicatorsOrientation | Controls whether the indicators should be previewed on top or on bottom of carousel. Defaults to `bottom`. |
20
-
|`animationType`|CarouselAnimationType| Controls what animation should be played when slides are changing. Defaults to `slide`. |
20
+
|`animationType`|HorizontalAnimationType| Controls what animation should be played when slides are changing. Defaults to `slide`. |
21
21
|`total`| number | The number of slides the carousel currently has. |
22
22
|`current`| number | The index of the slide currently showing. |
23
23
|`isPlaying`| boolean | Returns whether the carousel is paused/playing. |
0 commit comments