@databiosphere/findable-ui 46.1.0 → 46.1.2

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.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [46.1.2](https://github.com/DataBiosphere/findable-ui/compare/v46.1.1...v46.1.2) (2025-11-21)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * bug/ui issue: horizontal table scroll triggers browser history navigation ([#702](https://github.com/DataBiosphere/findable-ui/issues/702)) ([#707](https://github.com/DataBiosphere/findable-ui/issues/707)) ([750cbf4](https://github.com/DataBiosphere/findable-ui/commit/750cbf40acd986a046e75c00fd0780dfe916542a))
9
+
10
+ ## [46.1.1](https://github.com/DataBiosphere/findable-ui/compare/v46.1.0...v46.1.1) (2025-11-10)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * 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))
16
+
3
17
  ## [46.1.0](https://github.com/DataBiosphere/findable-ui/compare/v46.0.0...v46.1.0) (2025-11-03)
4
18
 
5
19
 
@@ -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).
@@ -498,6 +498,9 @@ const MuiCssBaseline = {
498
498
  fontFamily: "Roboto Mono, monospace",
499
499
  fontSize: 12,
500
500
  },
501
+ html: {
502
+ overscrollBehaviorX: "contain",
503
+ },
501
504
  img: {
502
505
  display: "block",
503
506
  },
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.2",
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
 
@@ -513,6 +513,9 @@ const MuiCssBaseline: Components["MuiCssBaseline"] = {
513
513
  fontFamily: "Roboto Mono, monospace",
514
514
  fontSize: 12,
515
515
  },
516
+ html: {
517
+ overscrollBehaviorX: "contain",
518
+ },
516
519
  img: {
517
520
  display: "block",
518
521
  },