Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reference/index/interfaces/Table_RowSelection.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ getIsSomePageRowsSelected: () => boolean;

Defined in: [features/row-selection/rowSelectionFeature.types.ts:150](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/row-selection/rowSelectionFeature.types.ts#L150)

Checks whether the current page has a partial row selection.
Checks whether at least one selectable row on the current page is selected.

#### Returns

Expand All @@ -121,7 +121,7 @@ getIsSomeRowsSelected: () => boolean;

Defined in: [features/row-selection/rowSelectionFeature.types.ts:154](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/row-selection/rowSelectionFeature.types.ts#L154)

Checks whether filtered rows have a partial row selection.
Checks whether at least one row id is selected.

#### Returns

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function table_getIsSomePageRowsSelected<TFeatures, TData>(table): boolean;

Defined in: [features/row-selection/rowSelectionFeature.utils.ts:424](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/row-selection/rowSelectionFeature.utils.ts#L424)

Checks whether the current page has a partial selection.
Checks whether at least one selectable row on the current page is selected.

## Type Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ function table_getIsSomeRowsSelected<TFeatures, TData>(table): boolean;

Defined in: [features/row-selection/rowSelectionFeature.utils.ts:406](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/row-selection/rowSelectionFeature.utils.ts#L406)

Checks whether selection is partially applied across filtered rows.
Checks whether at least one row id is selected.

The result is true when at least one row id is selected
The result stays true when every row is selected.

## Type Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ export interface Table_RowSelection<
*/
getIsAllRowsSelected: () => boolean
/**
* Checks whether the current page has a partial row selection.
* Checks whether at least one selectable row on the current page is selected.
*/
getIsSomePageRowsSelected: () => boolean
/**
* Checks whether filtered rows have a partial row selection.
* Checks whether at least one row id is selected.
*/
getIsSomeRowsSelected: () => boolean
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,9 @@ export function table_getIsAllPageRowsSelected<
}

/**
* Checks whether selection is partially applied across filtered rows.
* Checks whether at least one row id is selected.
*
* The result is true when at least one row id is selected
* The result stays true when every row is selected.
*
* @example
* ```ts
Expand All @@ -414,7 +414,7 @@ export function table_getIsSomeRowsSelected<
}

/**
* Checks whether the current page has a partial selection.
* Checks whether at least one selectable row on the current page is selected.
*
* @example
* ```ts
Expand Down
Loading