description:"When specified, displays a filter input at header."
},
{
name:"filterPlaceholder",
type:"string",
default:"null",
description:"Placeholder text to show when filter input is empty."
},
{
name:"filterLocale",
type:"string",
default:"undefined",
description:"Locale to use in filtering. The default locale is the host environment's current locale."
},
{
name:"filterMatchMode",
type:"string",
default:"contains",
description:'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"'
},
{
name:"filterFields",
type:"array",
default:"null",
description:"Fields used when filtering the options, defaults to optionLabel."
},
{
name:"editable",
type:"boolean",
default:"false",
description:"When present, custom value instead of predefined options can be entered using the editable input field."
},
{
name:"placeholder",
type:"string",
default:"null",
description:"Default text to display when no option is selected."
},
{
name:"disabled",
type:"boolean",
default:"false",
description:"When present, it specifies that the component should be disabled."
},
{
name:"dataKey",
type:"string",
default:"null",
description:"A property to uniquely identify an option."
},
{
name:"showClear",
type:"boolean",
default:"false",
description:"When enabled, a clear icon is displayed to clear the value."
},
{
name:"tabindex",
type:"number",
default:"null",
description:"Index of the element in tabbing order."
},
{
name:"inputId",
type:"string",
default:"null",
description:"Identifier of the underlying input element."
},
{
name:"ariaLabelledBy",
type:"string",
default:"null",
description:'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.'
},
{
name:"emptyFilterMessage",
type:"string",
default:"No results found",
description:"Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration."
},
{
name:"emptyMessage",
type:"string",
default:"No results found",
description:"Text to display when there are no options available. Defaults to value from PrimeVue locale configuration."