Skip to content

Commit

Permalink
Updated jsdoc in textFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
salmenus committed Aug 14, 2023
1 parent bea3e16 commit bb354db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface INumberFilterParams extends IScalarFilterParams {
*/
allowedCharPattern?: string;
/**
* Overrides the browser's autocomplete/autofill behaviour by updating the autocomplete attribute on the input field used in the floating filter input. Possible values are:
* Overrides the browser's autocomplete/autofill behaviour by updating the autocomplete attribute on the input field used in the floating filter input.
* Possible values are:
* - `true` to allow the default browser autocomplete/autofill behaviour.
* - `false` to disable the browser autocomplete/autofill behavior.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ export interface ITextFilterParams extends ISimpleFilterParams {
*/
caseSensitive?: boolean;
/**
* Overrides the browser's autocomplete/autofill behaviour by updating autocomplete attribute on the input field used in the filter.
* Overrides the browser's autocomplete/autofill behaviour by updating the autocomplete attribute on the input field used in the floating filter input.
* Possible values are:
* - `true` to keep the the default autocomplete/autofill behaviour.
* - `false` to disable the autocomplete/autofill.
* - A **string** to used as the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute.
* - `true` to allow the default browser autocomplete/autofill behaviour.
* - `false` to disable the browser autocomplete/autofill behavior.
* - A **string** to used as the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute value.
* Default: `false`.
*/
browserAutoComplete?: boolean | string;
Expand Down

0 comments on commit bb354db

Please sign in to comment.