From ac275e42dccc85ec50ec641bc407c7874a1fe6f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Saffet=20Bar=C4=B1=C5=9F=20Karaca?= Date: Tue, 20 Feb 2024 11:20:43 +0300 Subject: [PATCH] feat: table story * feat: Edit row selection story texts --- src/components/table/bl-table.stories.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/table/bl-table.stories.mdx b/src/components/table/bl-table.stories.mdx index 4e7259ac..15f5908f 100644 --- a/src/components/table/bl-table.stories.mdx +++ b/src/components/table/bl-table.stories.mdx @@ -152,7 +152,7 @@ Table is a component to visualize a data set in rows and columns. It needs to be # Row Selection -To enable single row selection, set the `selectable` attribute on ``. This allows users to select a single row at a time. Listen for the `@bl-table-row-select` event to handle row selection changes. This event provides details about the selected row, enabling actions or updates based on the user's selection. +To enable row selection, set the `selectable` attribute on ``. This allows users to select rows. Listen for the `@bl-table-row-select` event to handle row selection changes. This event provides details about the selected rows, enabling actions or updates based on the user's selection. `. # Multiple Row Selection -To enable multiple row selection, set both `selectable` and `multiple` attributes on ``. This modification allows users to select more than one row simultaneously. The `@bl-table-row-select` event is also used here to handle changes in row selection, providing details about all selected rows. +To enable multiple row selection, set both `selectable` and `multiple` attributes on ``. This modification allows users to select or unselect all rows by using checkbox in header. The `@bl-table-row-select` event is also used here to handle changes in row selection, providing details about all selected rows.