-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Autocomplete] Remove startAfter props #20729
[Autocomplete] Remove startAfter props #20729
Conversation
Details of bundle changes.Comparing: ed84f5f...4657aa4 Details of page changes
|
@marcosvega91 Thanks :) |
- `config.ignoreCase` (*Boolean* [optional]): Defaults to `true`. Lowercase everything. | ||
- `config.limit` (*Number* [optional]): Default to null. Limit the number of suggested options to be shown. For example, if `config.limit` is `100`, only the first `100` matching options are shown. It can be useful if a lot of options match and virtualization wasn't set up. | ||
- `config.matchFrom` (*'any' | 'start'* [optional]): Defaults to `'any'`. | ||
- `config.startAfter`(*Number* [optional]): Default to `0`. Show the suggested options only after a certain number of letters | ||
- `config.stringify` (*Func* [optional]): Controls how an option is converted into a string so that it can be matched against the input text fragment. | ||
- `config.trim` (*Boolean* [optional]): Defaults to `false`. Remove trailing spaces. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I run the command to build the docs but nothing happens
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These ones are handcrafted 🙃
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah ok 😢
@marcosvega91 it might be great to show an example of how to solve the |
fix #20551