Datatable dts defaultValue strings updated
parent
0b1a84b034
commit
daa4e9fd77
|
@ -576,7 +576,7 @@ export interface DataTableProps {
|
||||||
* - JumpToPageDropdown
|
* - JumpToPageDropdown
|
||||||
* - JumpToPageInput
|
* - JumpToPageInput
|
||||||
* - CurrentPageReport
|
* - CurrentPageReport
|
||||||
* @defaultValue 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown'
|
* @defaultValue FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown
|
||||||
*/
|
*/
|
||||||
paginatorTemplate?: any | string;
|
paginatorTemplate?: any | string;
|
||||||
/**
|
/**
|
||||||
|
@ -597,7 +597,7 @@ export interface DataTableProps {
|
||||||
* - {first}
|
* - {first}
|
||||||
* - {last}
|
* - {last}
|
||||||
* - {totalRecords}
|
* - {totalRecords}
|
||||||
* @defaultValue '({currentPage} of {totalPages})'
|
* @defaultValue ({currentPage} of {totalPages})
|
||||||
*/
|
*/
|
||||||
currentPageReportTemplate?: string | undefined;
|
currentPageReportTemplate?: string | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -612,7 +612,7 @@ export interface DataTableProps {
|
||||||
loading?: boolean | undefined;
|
loading?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* The icon to show while indicating data load is in progress.
|
* The icon to show while indicating data load is in progress.
|
||||||
* @defaultValue 'pi pi-spinner'
|
* @defaultValue pi pi-spinner
|
||||||
*/
|
*/
|
||||||
loadingIcon?: string | undefined;
|
loadingIcon?: string | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -634,7 +634,7 @@ export interface DataTableProps {
|
||||||
multiSortMeta?: DataTableSortMeta[] | undefined;
|
multiSortMeta?: DataTableSortMeta[] | undefined;
|
||||||
/**
|
/**
|
||||||
* Defines whether sorting works on single column or on multiple columns.
|
* Defines whether sorting works on single column or on multiple columns.
|
||||||
* @defaultValue 'single'
|
* @defaultValue single
|
||||||
*/
|
*/
|
||||||
sortMode?: 'single' | 'multiple' | undefined;
|
sortMode?: 'single' | 'multiple' | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -669,7 +669,7 @@ export interface DataTableProps {
|
||||||
selectionMode?: 'single' | 'multiple' | undefined;
|
selectionMode?: 'single' | 'multiple' | undefined;
|
||||||
/**
|
/**
|
||||||
* Algorithm to define if a row is selected.
|
* Algorithm to define if a row is selected.
|
||||||
* @defaultValue 'deepEquals'
|
* @defaultValue deepEquals
|
||||||
*/
|
*/
|
||||||
compareSelectionBy?: 'equals' | 'deepEquals' | undefined;
|
compareSelectionBy?: 'equals' | 'deepEquals' | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -698,12 +698,12 @@ export interface DataTableProps {
|
||||||
rowHover?: boolean | undefined;
|
rowHover?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Character to use as the csv separator.
|
* Character to use as the csv separator.
|
||||||
* @defaultValue ','
|
* @defaultValue ,
|
||||||
*/
|
*/
|
||||||
csvSeparator?: string | undefined;
|
csvSeparator?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Name of the exported file.
|
* Name of the exported file.
|
||||||
* @defaultValue 'download'
|
* @defaultValue download
|
||||||
*/
|
*/
|
||||||
exportFilename?: string | undefined;
|
exportFilename?: string | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -717,7 +717,7 @@ export interface DataTableProps {
|
||||||
resizableColumns?: boolean | undefined;
|
resizableColumns?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
* Defines whether the overall table width.
|
* Defines whether the overall table width.
|
||||||
* @defaultValue 'fit'
|
* @defaultValue fit
|
||||||
*/
|
*/
|
||||||
columnResizeMode?: 'fit' | 'expand' | undefined;
|
columnResizeMode?: 'fit' | 'expand' | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -731,12 +731,12 @@ export interface DataTableProps {
|
||||||
expandedRows?: any[] | DataTableExpandedRows | null;
|
expandedRows?: any[] | DataTableExpandedRows | null;
|
||||||
/**
|
/**
|
||||||
* Icon of the row toggler to display the row as expanded.
|
* Icon of the row toggler to display the row as expanded.
|
||||||
* @defaultValue 'pi-chevron-down'
|
* @defaultValue pi-chevron-down
|
||||||
*/
|
*/
|
||||||
expandedRowIcon?: string | undefined;
|
expandedRowIcon?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Icon of the row toggler to display the row as collapsed.
|
* Icon of the row toggler to display the row as collapsed.
|
||||||
* @defaultValue 'pi-chevron-right'
|
* @defaultValue pi-chevron-right
|
||||||
*/
|
*/
|
||||||
collapsedRowIcon?: string | undefined;
|
collapsedRowIcon?: string | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -758,7 +758,7 @@ export interface DataTableProps {
|
||||||
expandedRowGroups?: any[] | DataTableExpandedRows;
|
expandedRowGroups?: any[] | DataTableExpandedRows;
|
||||||
/**
|
/**
|
||||||
* Defines where a stateful table keeps its state.
|
* Defines where a stateful table keeps its state.
|
||||||
* @defaultValue 'session'
|
* @defaultValue session
|
||||||
*/
|
*/
|
||||||
stateStorage?: 'session' | 'local' | undefined;
|
stateStorage?: 'session' | 'local' | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -801,7 +801,7 @@ export interface DataTableProps {
|
||||||
frozenValue?: any[] | undefined | null;
|
frozenValue?: any[] | undefined | null;
|
||||||
/**
|
/**
|
||||||
* The breakpoint to define the maximum width boundary when using stack responsive layout.
|
* The breakpoint to define the maximum width boundary when using stack responsive layout.
|
||||||
* @defaultValue '960px'
|
* @defaultValue 960px
|
||||||
*/
|
*/
|
||||||
breakpoint?: string | undefined;
|
breakpoint?: string | undefined;
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue