From 312524b7314af2899f1a5f3a2534e1df8a0b2232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Wiesza=C5=82ka?= Date: Wed, 19 Jan 2022 16:47:42 +0100 Subject: [PATCH] chore: run library build --- COMPONENT_INDEX.md | 2 +- docs/src/COMPONENT_API.json | 2 +- types/DataTable/DataTable.svelte.d.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 2af33f30..f0457bdd 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -995,7 +995,7 @@ export interface DataTableCell { | batchSelection | let | No | boolean | false | Set to `true` to enable batch selection | | stickyHeader | let | No | boolean | false | Set to `true` to enable a sticky header | | useStaticWidth | let | No | boolean | false | Set to `true` to use static width | -| pageSize | let | No | number | 0 | Set to `number` to limit the output | +| pageSize | let | No | number | 0 | Specify the number of items to display in a page | | page | let | No | number | 0 | Set to `number` to set current page | ### Slots diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index ba63ece4..14e69a04 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -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, diff --git a/types/DataTable/DataTable.svelte.d.ts b/types/DataTable/DataTable.svelte.d.ts index f9bacb57..9c37a3a6 100644 --- a/types/DataTable/DataTable.svelte.d.ts +++ b/types/DataTable/DataTable.svelte.d.ts @@ -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;