mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
.d.ts updates
This commit is contained in:
parent
f2024af40d
commit
95d3740f63
46 changed files with 396 additions and 380 deletions
22
components/datatable/DataTable.d.ts
vendored
22
components/datatable/DataTable.d.ts
vendored
|
@ -612,7 +612,7 @@ export interface DataTableProps {
|
|||
loading?: boolean | undefined;
|
||||
/**
|
||||
* The icon to show while indicating data load is in progress.
|
||||
* @defaultValue pi pi-spinner
|
||||
* @defaultValue 'pi pi-spinner'
|
||||
*/
|
||||
loadingIcon?: string | undefined;
|
||||
/**
|
||||
|
@ -634,7 +634,7 @@ export interface DataTableProps {
|
|||
multiSortMeta?: DataTableSortMeta[] | undefined;
|
||||
/**
|
||||
* Defines whether sorting works on single column or on multiple columns.
|
||||
* @defaultValue single
|
||||
* @defaultValue 'single'
|
||||
*/
|
||||
sortMode?: 'single' | 'multiple' | undefined;
|
||||
/**
|
||||
|
@ -669,7 +669,7 @@ export interface DataTableProps {
|
|||
selectionMode?: 'single' | 'multiple' | undefined;
|
||||
/**
|
||||
* Algorithm to define if a row is selected.
|
||||
* @defaultValue deepEquals
|
||||
* @defaultValue 'deepEquals'
|
||||
*/
|
||||
compareSelectionBy?: 'equals' | 'deepEquals' | undefined;
|
||||
/**
|
||||
|
@ -698,12 +698,12 @@ export interface DataTableProps {
|
|||
rowHover?: boolean | undefined;
|
||||
/**
|
||||
* Character to use as the csv separator.
|
||||
* @defaultValue ,
|
||||
* @defaultValue ','
|
||||
*/
|
||||
csvSeparator?: string | undefined;
|
||||
/**
|
||||
* Name of the exported file.
|
||||
* @defaultValue download
|
||||
* @defaultValue 'download'
|
||||
*/
|
||||
exportFilename?: string | undefined;
|
||||
/**
|
||||
|
@ -717,7 +717,7 @@ export interface DataTableProps {
|
|||
resizableColumns?: boolean | undefined;
|
||||
/**
|
||||
* Defines whether the overall table width.
|
||||
* @defaultValue fit
|
||||
* @defaultValue 'fit'
|
||||
*/
|
||||
columnResizeMode?: 'fit' | 'expand' | undefined;
|
||||
/**
|
||||
|
@ -731,12 +731,12 @@ export interface DataTableProps {
|
|||
expandedRows?: any[] | DataTableExpandedRows | null;
|
||||
/**
|
||||
* Icon of the row toggler to display the row as expanded.
|
||||
* @defaultValue pi-chevron-down
|
||||
* @defaultValue 'pi-chevron-down'
|
||||
*/
|
||||
expandedRowIcon?: string | undefined;
|
||||
/**
|
||||
* Icon of the row toggler to display the row as collapsed.
|
||||
* @defaultValue pi-chevron-right
|
||||
* @defaultValue 'pi-chevron-right'
|
||||
*/
|
||||
collapsedRowIcon?: string | undefined;
|
||||
/**
|
||||
|
@ -758,7 +758,7 @@ export interface DataTableProps {
|
|||
expandedRowGroups?: any[] | DataTableExpandedRows;
|
||||
/**
|
||||
* Defines where a stateful table keeps its state.
|
||||
* @defaultValue session
|
||||
* @defaultValue 'session'
|
||||
*/
|
||||
stateStorage?: 'session' | 'local' | undefined;
|
||||
/**
|
||||
|
@ -766,7 +766,7 @@ export interface DataTableProps {
|
|||
*/
|
||||
stateKey?: string | undefined;
|
||||
/**
|
||||
* Defines the incell editing mode, valid options are 'cell' and 'row'.
|
||||
* Defines the incell editing mode.
|
||||
*/
|
||||
editMode?: 'cell' | 'row' | undefined;
|
||||
/**
|
||||
|
@ -801,7 +801,7 @@ export interface DataTableProps {
|
|||
frozenValue?: any[] | undefined | null;
|
||||
/**
|
||||
* The breakpoint to define the maximum width boundary when using stack responsive layout.
|
||||
* @defaultValue 960px
|
||||
* @defaultValue '960px'
|
||||
*/
|
||||
breakpoint?: string | undefined;
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue