Merge pull request #5850 from neilpadfield/fix/api-docs-patch-1

Fix documented default for emptyMessage on several components
pull/5863/head
Tuğçe Küçükoğlu 2024-06-10 11:50:39 +03:00 committed by GitHub
commit 4ad8cd7406
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -484,7 +484,7 @@ export interface DropdownProps {
emptyFilterMessage?: string | undefined;
/**
* Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.
* @defaultValue No results found
* @defaultValue No available options
*/
emptyMessage?: string | undefined;
/**

View File

@ -333,7 +333,7 @@ export interface ListboxProps {
emptyFilterMessage?: string | undefined;
/**
* Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.
* @defaultValue No results found
* @defaultValue No available options
*/
emptyMessage?: string | undefined;
/**

View File

@ -520,7 +520,7 @@ export interface MultiSelectProps {
emptyFilterMessage?: string | undefined;
/**
* Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.
* @defaultValue No results found'
* @defaultValue No available options
*/
emptyMessage?: string | undefined;
/**

View File

@ -213,7 +213,7 @@ export interface TreeSelectProps {
appendTo?: HintedString<'body' | 'self'> | undefined | HTMLElement;
/**
* Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.
* @defaultValue No results found
* @defaultValue No available options
*/
emptyMessage?: string | undefined;
/**