chore: run library build

This commit is contained in:
Krzysztof Wieszałka 2022-01-19 16:47:42 +01:00
commit 312524b731
3 changed files with 3 additions and 3 deletions

View file

@ -995,7 +995,7 @@ export interface DataTableCell {
| batchSelection | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable batch selection |
| stickyHeader | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable a sticky header |
| useStaticWidth | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to use static width |
| pageSize | <code>let</code> | No | <code>number</code> | <code>0</code> | Set to `number` to limit the output |
| pageSize | <code>let</code> | No | <code>number</code> | <code>0</code> | Specify the number of items to display in a page |
| page | <code>let</code> | No | <code>number</code> | <code>0</code> | Set to `number` to set current page |
### Slots

View file

@ -2367,7 +2367,7 @@
{
"name": "pageSize",
"kind": "let",
"description": "Set to `number` to limit the output",
"description": "Specify the number of items to display in a page",
"type": "number",
"value": "0",
"isFunction": false,

View file

@ -143,7 +143,7 @@ export interface DataTableProps
useStaticWidth?: boolean;
/**
* Set to `number` to limit the output
* Specify the number of items to display in a page
* @default 0
*/
pageSize?: number;