mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #5096 - autoOptionFocus default type is changed as false
This commit is contained in:
parent
594eef2ca1
commit
1a048a0fd1
15 changed files with 15 additions and 15 deletions
|
@ -439,7 +439,7 @@ export interface AutoCompleteProps {
|
|||
virtualScrollerOptions?: VirtualScrollerProps;
|
||||
/**
|
||||
* Whether to focus on the first visible or selected element when the overlay panel is shown.
|
||||
* @defaultValue true
|
||||
* @defaultValue false
|
||||
*/
|
||||
autoOptionFocus?: boolean | undefined;
|
||||
/**
|
||||
|
|
|
@ -127,7 +127,7 @@ export default {
|
|||
},
|
||||
autoOptionFocus: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
default: false
|
||||
},
|
||||
selectOnFocus: {
|
||||
type: Boolean,
|
||||
|
|
|
@ -66,7 +66,7 @@ export default {
|
|||
},
|
||||
autoOptionFocus: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
default: false
|
||||
},
|
||||
selectOnFocus: {
|
||||
type: Boolean,
|
||||
|
|
|
@ -335,7 +335,7 @@ export interface CascadeSelectProps {
|
|||
optionGroupIcon?: string | undefined;
|
||||
/**
|
||||
* Whether to focus on the first visible or selected element when the overlay panel is shown.
|
||||
* @defaultValue true
|
||||
* @defaultValue false
|
||||
*/
|
||||
autoOptionFocus?: boolean | undefined;
|
||||
/**
|
||||
|
|
|
@ -116,7 +116,7 @@ export default {
|
|||
},
|
||||
autoOptionFocus: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
default: false
|
||||
},
|
||||
autoFilterFocus: {
|
||||
type: Boolean,
|
||||
|
|
2
components/lib/dropdown/Dropdown.d.ts
vendored
2
components/lib/dropdown/Dropdown.d.ts
vendored
|
@ -400,7 +400,7 @@ export interface DropdownProps {
|
|||
virtualScrollerOptions?: VirtualScrollerProps;
|
||||
/**
|
||||
* Whether to focus on the first visible or selected element when the overlay panel is shown.
|
||||
* @defaultValue true
|
||||
* @defaultValue false
|
||||
*/
|
||||
autoOptionFocus?: boolean | undefined;
|
||||
/**
|
||||
|
|
|
@ -45,7 +45,7 @@ export default {
|
|||
},
|
||||
autoOptionFocus: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
default: false
|
||||
},
|
||||
selectOnFocus: {
|
||||
type: Boolean,
|
||||
|
|
2
components/lib/listbox/Listbox.d.ts
vendored
2
components/lib/listbox/Listbox.d.ts
vendored
|
@ -293,7 +293,7 @@ export interface ListboxProps {
|
|||
virtualScrollerOptions?: VirtualScrollerProps;
|
||||
/**
|
||||
* Whether to focus on the first visible or selected element.
|
||||
* @defaultValue true
|
||||
* @defaultValue false
|
||||
*/
|
||||
autoOptionFocus?: boolean | undefined;
|
||||
/**
|
||||
|
|
|
@ -125,7 +125,7 @@ export default {
|
|||
},
|
||||
autoOptionFocus: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
default: false
|
||||
},
|
||||
autoFilterFocus: {
|
||||
type: Boolean,
|
||||
|
|
2
components/lib/multiselect/MultiSelect.d.ts
vendored
2
components/lib/multiselect/MultiSelect.d.ts
vendored
|
@ -470,7 +470,7 @@ export interface MultiSelectProps {
|
|||
virtualScrollerOptions?: VirtualScrollerProps;
|
||||
/**
|
||||
* Whether to focus on the first visible or selected element when the overlay panel is shown.
|
||||
* @defaultValue true
|
||||
* @defaultValue false
|
||||
*/
|
||||
autoOptionFocus?: boolean | undefined;
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue