This commit is contained in:
Tuğçe Küçükoğlu 2023-08-17 10:16:25 +03:00
parent 24c28130c9
commit 289ee220ed
32 changed files with 189 additions and 98 deletions

View file

@ -158,6 +158,7 @@ export interface TriStateCheckboxProps {
export interface TriStateCheckboxSlots {
/**
* Custom check icon template.
* @param {Object} scope - checkicon slot's params.
*/
checkicon(scope: {
/**
@ -167,6 +168,7 @@ export interface TriStateCheckboxSlots {
}): VNode[];
/**
* Custom uncheck icon template.
* @param {Object} scope - uncheckicon slot's params.
*/
uncheckicon(scope: {
/**
@ -176,6 +178,7 @@ export interface TriStateCheckboxSlots {
}): VNode[];
/**
* Custom nullable icon template.
* @param {Object} scope - nullableicon slot's params.
*/
nullableicon(scope: {
/**