mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #2801 - New inputClass and inputStyle properties
This commit is contained in:
parent
9370a67652
commit
188fe3655e
4 changed files with 86 additions and 46 deletions
40
src/components/cascadeselect/CascadeSelect.d.ts
vendored
40
src/components/cascadeselect/CascadeSelect.d.ts
vendored
|
@ -70,28 +70,12 @@ export interface CascadeSelectProps {
|
|||
* Index of the element in tabbing order.
|
||||
*/
|
||||
tabindex?: string | undefined;
|
||||
/**
|
||||
* Identifier of the underlying input element.
|
||||
*/
|
||||
inputId?: string | undefined;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
inputProps?: object | undefined;
|
||||
/**
|
||||
* 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.
|
||||
* @see CascadeSelectAppendToType
|
||||
* Default value is 'body'.
|
||||
*/
|
||||
appendTo?: CascadeSelectAppendToType;
|
||||
/**
|
||||
* Style class of the overlay panel.
|
||||
*/
|
||||
panelClass?: any;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
panelProps?: object | undefined;
|
||||
/**
|
||||
* Whether the dropdown is in loading state.
|
||||
*/
|
||||
|
@ -101,6 +85,30 @@ export interface CascadeSelectProps {
|
|||
* Default value is 'pi pi-spinner pi-spin'.
|
||||
*/
|
||||
loadingIcon?: string | undefined;
|
||||
/**
|
||||
* Identifier of the underlying input element.
|
||||
*/
|
||||
inputId?: string | undefined;
|
||||
/**
|
||||
* Style class of the input field.
|
||||
*/
|
||||
inputClass?: any | undefined;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
inputStyle?: any | undefined;
|
||||
/**
|
||||
* Inline style of the input field.
|
||||
*/
|
||||
inputProps?: object | undefined;
|
||||
/**
|
||||
* Style class of the overlay panel.
|
||||
*/
|
||||
panelClass?: any;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
panelProps?: object | undefined;
|
||||
}
|
||||
|
||||
export interface CascadeSelectSlots {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue