File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
projects/igniteui-angular/src/lib/carousel Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,9 @@ A walkthrough of how to get started can be found [here](https://www.infragistics
34
34
| ` next() ` | void | Switches to the next slide. Emits ` slideChanged ` event. |
35
35
| ` add(slide: IgxSlide) ` | void | Adds a slide to the carousel. Emits ` slideAdded ` event. |
36
36
| ` remove(slide: IgxSlide) ` | void | Removes an existing slide from the carousel. Emits ` slideRemoved ` event. |
37
- | ` get(index: Number) ` | IgxSlide or void | Returns the slide with the given index or null. |
38
- | ` select(slide: IgxSlide, direction: Direction) ` | void | Selects the slide and the direction to transition to. Emits ` slideChanged ` event. |
37
+ | ` get(index: number) ` | IgxSlide or void | Returns the slide with the given index or null. |
38
+ | ` select(slide: IgxSlide, direction: Direction) ` | void | Switches to the passed-in slide with a given direction. Emits ` slideChanged ` event. |
39
+ | ` select(index: number, direction: Direction) ` | void | Switches to slide by index with a given direction. Emits ` slideChanged ` event. |
39
40
40
41
### Keyboard navigation
41
42
You can’t perform that action at this time.
0 commit comments