.d.ts updates

This commit is contained in:
Tuğçe Küçükoğlu 2023-03-03 11:18:55 +03:00
parent f2024af40d
commit 95d3740f63
46 changed files with 396 additions and 380 deletions

View file

@ -120,7 +120,7 @@ export interface TreeProps {
loading?: boolean | undefined;
/**
* Icon to display when tree is loading.
* @defaultValue pi pi-spin
* @defaultValue 'pi pi-spin'
*/
loadingIcon?: string | undefined;
/**
@ -129,12 +129,12 @@ export interface TreeProps {
filter?: boolean | undefined;
/**
* When filtering is enabled, filterBy decides which field or fields (comma separated) to search against.
* Default valye is 'label'.
* @defaultValue 'label'
*/
filterBy?: string | undefined;
/**
* Mode for filtering.
* @defaultValue lenient
* @defaultValue 'lenient'
*/
filterMode?: 'lenient' | 'strict' | undefined;
/**