mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 20:33:02 +00:00
chore: run library build
This commit is contained in:
parent
b15e1387d8
commit
312524b731
3 changed files with 3 additions and 3 deletions
|
@ -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 |
|
| 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 |
|
| 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 |
|
| 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 |
|
| page | <code>let</code> | No | <code>number</code> | <code>0</code> | Set to `number` to set current page |
|
||||||
|
|
||||||
### Slots
|
### Slots
|
||||||
|
|
|
@ -2367,7 +2367,7 @@
|
||||||
{
|
{
|
||||||
"name": "pageSize",
|
"name": "pageSize",
|
||||||
"kind": "let",
|
"kind": "let",
|
||||||
"description": "Set to `number` to limit the output",
|
"description": "Specify the number of items to display in a page",
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"value": "0",
|
"value": "0",
|
||||||
"isFunction": false,
|
"isFunction": false,
|
||||||
|
|
2
types/DataTable/DataTable.svelte.d.ts
vendored
2
types/DataTable/DataTable.svelte.d.ts
vendored
|
@ -143,7 +143,7 @@ export interface DataTableProps
|
||||||
useStaticWidth?: boolean;
|
useStaticWidth?: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set to `number` to limit the output
|
* Specify the number of items to display in a page
|
||||||
* @default 0
|
* @default 0
|
||||||
*/
|
*/
|
||||||
pageSize?: number;
|
pageSize?: number;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue