Refactor #2542
parent
1f9f87c804
commit
8465dcb77a
|
@ -119,6 +119,12 @@ const AutoCompleteProps = [
|
||||||
default: "null",
|
default: "null",
|
||||||
description: "Style class of the overlay panel."
|
description: "Style class of the overlay panel."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "loadingIcon",
|
||||||
|
type: "string",
|
||||||
|
default: "pi pi-spinner",
|
||||||
|
description: "Icon to display in loading state."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "virtualScrollerOptions",
|
name: "virtualScrollerOptions",
|
||||||
type: "object",
|
type: "object",
|
||||||
|
|
|
@ -135,6 +135,11 @@ export interface AutoCompleteProps {
|
||||||
* Style class of the overlay panel.
|
* Style class of the overlay panel.
|
||||||
*/
|
*/
|
||||||
panelClass?: any;
|
panelClass?: any;
|
||||||
|
/**
|
||||||
|
* Icon to display in loading state.
|
||||||
|
* Default value is 'pi pi-spinner pi-spin'.
|
||||||
|
*/
|
||||||
|
loadingIcon?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.
|
* Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.
|
||||||
* @see VirtualScroller.VirtualScrollerProps
|
* @see VirtualScroller.VirtualScrollerProps
|
||||||
|
|
Loading…
Reference in New Issue