mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
parent
38cd13a5e7
commit
0ddfeb4fb0
4 changed files with 42 additions and 13 deletions
|
@ -19,6 +19,10 @@ export interface InlineMessageProps {
|
|||
* @defaultValue info
|
||||
*/
|
||||
severity?: 'success' | 'info' | 'warn' | 'error' | string | undefined;
|
||||
/**
|
||||
* Display a custom icon for the message.
|
||||
*/
|
||||
icon?: string | undefined;
|
||||
}
|
||||
/**
|
||||
* Defines valid slots in InlineMessage slots.
|
||||
|
@ -28,6 +32,10 @@ export interface InlineMessageSlots {
|
|||
* Default custom slot.
|
||||
*/
|
||||
default(): VNode[];
|
||||
/**
|
||||
* Custom message icon template.
|
||||
*/
|
||||
messageicon(): VNode[];
|
||||
}
|
||||
|
||||
export interface InlineMessageEmits {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue