@databiosphere/findable-ui 46.1.0 → 46.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "46.1.0"
2
+ ".": "46.1.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [46.1.1](https://github.com/DataBiosphere/findable-ui/compare/v46.1.0...v46.1.1) (2025-11-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * column filters clear all filters does not clear all filters with initial column filters ([#699](https://github.com/DataBiosphere/findable-ui/issues/699)) ([#700](https://github.com/DataBiosphere/findable-ui/issues/700)) ([75d1c2d](https://github.com/DataBiosphere/findable-ui/commit/75d1c2d47f88a894e2e9941d7aa2228c3eef5252))
9
+
3
10
  ## [46.1.0](https://github.com/DataBiosphere/findable-ui/compare/v46.0.0...v46.1.0) (2025-11-03)
4
11
 
5
12
 
@@ -14,7 +14,7 @@ export const ColumnFiltersAdapter = ({ renderSurface, table, }) => {
14
14
  // eslint-disable-next-line @typescript-eslint/no-unused-vars -- `categorySection` is not required by TanStack adapter.
15
15
  _categorySection, viewKind) => {
16
16
  if (categoryKey === CLEAR_ALL) {
17
- table.resetColumnFilters();
17
+ table.resetColumnFilters(true);
18
18
  return;
19
19
  }
20
20
  // Range filters use direct value assignment (e.g., [min, max] tuple for numeric ranges).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "46.1.0",
3
+ "version": "46.1.1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -36,7 +36,7 @@ export const ColumnFiltersAdapter = <T extends RowData>({
36
36
  viewKind?: VIEW_KIND
37
37
  ) => {
38
38
  if (categoryKey === CLEAR_ALL) {
39
- table.resetColumnFilters();
39
+ table.resetColumnFilters(true);
40
40
  return;
41
41
  }
42
42