Skip to content

Commit

Permalink
fix(list-index): fix types for indexes param
Browse files Browse the repository at this point in the history
fixes #3970
  • Loading branch information
nolimits4web committed Jan 31, 2022
1 parent 8523b8d commit e94bb2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/components/list-index/list-index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export namespace ListIndex {
/** Related List View element. HTMLElement or string with CSS selector of List View element. */
listEl?: HTMLElement | CSSSelector;
/** Array with indexes. If not passed then it will automatically generate it based on item-divider and list-group-title elements inside of passed List View element in listEl parameter. (default auto) */
indexes?: number[] | string; // ??
indexes?: string[] | string; // ??
/** Will automatically scroll related List View to the selected index. (default true) */
scrollList?: boolean;
/** Enables label bubble with selected index when you swipe over list index. (default false) */
Expand Down

0 comments on commit e94bb2b

Please sign in to comment.