mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
parent
6672378d51
commit
5ea506913f
3 changed files with 46 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
* @module tristatecheckbox
|
||||
*
|
||||
*/
|
||||
import { InputHTMLAttributes } from 'vue';
|
||||
import { InputHTMLAttributes, VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor, Nullable } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
|
@ -49,7 +49,20 @@ export interface TriStateCheckboxProps {
|
|||
/**
|
||||
* Defines valid slots in TriStateCheckbox component.
|
||||
*/
|
||||
export interface TriStateCheckboxSlots {}
|
||||
export interface TriStateCheckboxSlots {
|
||||
/**
|
||||
* Custom check icon template.
|
||||
*/
|
||||
checkicon(): VNode[];
|
||||
/**
|
||||
* Custom uncheck icon template.
|
||||
*/
|
||||
uncheckicon(): VNode[];
|
||||
/**
|
||||
* Custom nullable icon template.
|
||||
*/
|
||||
nullableicon(): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid emits in TriStateCheckbox component.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue