From 5b716fa82584fbf7a0f435b04f8f8db88dfc4c45 Mon Sep 17 00:00:00 2001 From: uwla Date: Thu, 5 Dec 2024 08:58:04 -0300 Subject: [PATCH] docs: update available features instructions --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dd26fd5..625b32d 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,8 @@ add or delete rows in the table! | title | `String` | `titleCase(key)` | The title displayed in the header | | searchable | `Bool` | `true` | Whether to allow searching rows by this column field | | sortable | `Bool` | `true` | Whether to allow sorting the data by this column field | -| editable | `Bool` | `true` | Whether the column is editable by the user | +| editable | `Bool` | `true` | Whether the column is editable by the user | +| collapsible | `Bool` | `false` | Whether the column is collapsible (expand and collapse) | | type | `String` | `string` | Data type of `key`. Allowed values: `string`, `number` | | compareFunction | `Function` | - | Custom function provided by the user to sort the column | | searchFunction | `Function` | - | Custom function provided by the user to search the column |