2021-05-12 09:35:29 +00:00
const CascadeSelectProps = [
{
name : "modelValue" ,
type : "any" ,
default : "null" ,
description : "Value of the component."
} ,
{
name : "options" ,
type : "array" ,
default : "null" ,
description : "An array of selectitems to display as the available options."
} ,
{
name : "optionLabel" ,
2021-12-07 06:21:20 +00:00
type : "string | function" ,
2021-05-12 09:35:29 +00:00
default : "null" ,
description : "Property name or getter function to use as the label of an option."
} ,
{
name : "optionValue" ,
2021-12-07 06:21:20 +00:00
type : "string | function" ,
2021-05-12 09:35:29 +00:00
default : "null" ,
description : "Property name or getter function to use as the value of an option, defaults to the option itself when not defined."
} ,
2022-08-07 22:49:21 +00:00
{
name : "optionDisabled" ,
type : "boolean" ,
default : "null" ,
description : "Property name or getter function to use as the disabled flag of an option, defaults to false when not defined."
} ,
2021-05-12 09:35:29 +00:00
{
name : "optionGroupLabel" ,
2021-12-07 06:21:20 +00:00
type : "string | function" ,
2021-05-12 09:35:29 +00:00
default : "null" ,
description : "Property name or getter function to use as the label of an option group."
} ,
{
name : "optionGroupChildren" ,
2021-12-07 06:21:20 +00:00
type : "array | function" ,
2021-05-12 09:35:29 +00:00
default : "null" ,
description : "Property name or getter function to retrieve the items of a group."
} ,
{
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."
} ,
{
2022-08-07 22:49:21 +00:00
name : "inputStyle" ,
type : "object" ,
2021-05-12 09:35:29 +00:00
default : "null" ,
2022-08-07 22:49:21 +00:00
description : "Inline style of the input field."
} ,
{
name : "inputClass" ,
type : "string" ,
default : "null" ,
description : "Style class of the input field."
} ,
{
name : "inputProps" ,
type : "object" ,
default : "null" ,
description : "Uses to pass all properties of the HTMLInputElement/HTMLSpanElement to the focusable input element inside the component."
} ,
{
name : "panelStyle" ,
type : "object" ,
default : "null" ,
description : "Inline style of the overlay panel."
} ,
{
name : "panelClass" ,
type : "string" ,
default : "null" ,
description : "Style class of the overlay panel."
} ,
{
name : "panelProps" ,
type : "object" ,
default : "null" ,
description : "Uses to pass all properties of the HTMLDivElement to the overlay panel inside the component."
2021-05-12 09:35:29 +00:00
} ,
{
name : "appendTo" ,
type : "string" ,
default : "body" ,
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.'
} ,
2021-05-14 09:18:42 +00:00
{
name : "loading" ,
type : "boolean" ,
default : "false" ,
description : "Whether the multiselect is in loading state."
} ,
{
name : "loadingIcon" ,
type : "string" ,
default : "pi pi-spinner pi-spin" ,
description : "Icon to display in loading state."
2022-07-22 18:41:34 +00:00
} ,
{
2022-08-07 22:49:21 +00:00
name : "autoOptionFocus" ,
type : "boolean" ,
default : "true" ,
description : "Whether to focus on the first visible or selected element when the overlay panel is shown."
} ,
{
name : "searchLocale" ,
2022-07-22 18:41:34 +00:00
type : "string" ,
2022-08-07 22:49:21 +00:00
default : "undefined" ,
description : "Locale to use in searching. The default locale is the host environment's current locale."
2022-07-22 18:41:34 +00:00
} ,
{
2022-08-07 22:49:21 +00:00
name : "searchMessage" ,
type : "string" ,
default : "{0} results are available" ,
description : "Text to be displayed in hidden accessible field when filtering returns any results. Defaults to value from PrimeVue locale configuration."
} ,
{
name : "selectionMessage" ,
type : "string" ,
default : "{0} items selected" ,
description : "Text to be displayed in hidden accessible field when options are selected. Defaults to value from PrimeVue locale configuration."
} ,
{
name : "emptySelectionMessage" ,
type : "string" ,
default : "No selected item" ,
description : "Text to be displayed in hidden accessible field when any option is not selected. Defaults to value from PrimeVue locale configuration."
} ,
{
name : "emptySearchMessage" ,
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 : "tabindex" ,
type : "number" ,
default : "0" ,
description : "Index of the element in tabbing order."
} ,
{
name : "aria-label" ,
type : "string" ,
2022-07-22 18:41:34 +00:00
default : "null" ,
2022-08-07 22:49:21 +00:00
description : "Defines a string value that labels an interactive element."
2022-07-22 18:41:34 +00:00
} ,
{
2022-08-07 22:49:21 +00:00
name : "aria-labelledby" ,
type : "string" ,
2022-07-22 18:41:34 +00:00
default : "null" ,
2022-08-07 22:49:21 +00:00
description : "Identifier of the underlying input element."
2022-07-22 18:50:54 +00:00
}
2021-05-12 09:35:29 +00:00
] ;
const CascadeSelectEvents = [
{
name : "change" ,
description : "Callback to invoke on value change." ,
arguments : [
{
name : "originalEvent" ,
type : "object" ,
description : "Browser event"
} ,
{
name : "value" ,
type : "object" ,
description : "Selected option value"
}
]
} ,
2022-08-07 22:49:21 +00:00
{
name : "focus" ,
description : "Callback to invoke when component receives focus." ,
arguments : [
{
name : "event" ,
type : "object" ,
description : "Browser event"
}
]
} ,
{
name : "blur" ,
description : "Callback to invoke when component loses focus." ,
arguments : [
{
name : "event" ,
type : "object" ,
description : "Browser event"
}
]
} ,
{
name : "click" ,
description : "Callback to invoke on click." ,
arguments : [
{
name : "event" ,
type : "object" ,
description : "Browser event"
}
]
} ,
2021-05-12 09:35:29 +00:00
{
name : "group-change" ,
description : "Callback to invoke when a group changes." ,
arguments : [
{
name : "originalEvent" ,
type : "object" ,
description : "Browser event"
} ,
{
name : "value" ,
type : "object" ,
description : "Selected option value"
}
]
} ,
{
name : "before-show" ,
description : "Callback to invoke before the overlay is shown."
} ,
{
name : "before-hide" ,
description : "Callback to invoke before the overlay is hidden."
} ,
{
name : "show" ,
description : "Callback to invoke when the overlay is shown."
} ,
{
name : "hide" ,
description : "Callback to invoke when the overlay is hidden."
}
] ;
const CascadeSelectSlots = [
{
name : "value" ,
description : "Custom content for the item's value"
} ,
{
name : "option" ,
description : "Custom content for the item's option"
2021-08-27 13:58:51 +00:00
} ,
{
name : "indicator" ,
description : "Custom content for the dropdown indicator"
2021-05-12 09:35:29 +00:00
}
] ;
module . exports = {
cascadeselect : {
name : "CascadeSelect" ,
description : "CascadeSelect displays a nested structure of options." ,
props : CascadeSelectProps ,
events : CascadeSelectEvents ,
slots : CascadeSelectSlots
}
} ;