@databiosphere/findable-ui 46.1.1 → 46.1.3

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.1"
2
+ ".": "46.1.3"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [46.1.3](https://github.com/DataBiosphere/findable-ui/compare/v46.1.2...v46.1.3) (2025-12-01)
4
+
5
+
6
+ ### Chores
7
+
8
+ * bump nextjs version to fix vulnerabilities ([#704](https://github.com/DataBiosphere/findable-ui/issues/704)) ([#705](https://github.com/DataBiosphere/findable-ui/issues/705)) ([096ba35](https://github.com/DataBiosphere/findable-ui/commit/096ba35d926fe8b40b1c0b981770076355cae8ab))
9
+
10
+ ## [46.1.2](https://github.com/DataBiosphere/findable-ui/compare/v46.1.1...v46.1.2) (2025-11-21)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * 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))
16
+
3
17
  ## [46.1.1](https://github.com/DataBiosphere/findable-ui/compare/v46.1.0...v46.1.1) (2025-11-10)
4
18
 
5
19
 
@@ -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.1",
3
+ "version": "46.1.3",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -26,7 +26,7 @@
26
26
  "@commitlint/config-conventional": "^17.4.2",
27
27
  "@emotion/jest": "^11.13.0",
28
28
  "@mui/types": "^7.4.0",
29
- "@next/eslint-plugin-next": "^14.2.32",
29
+ "@next/eslint-plugin-next": "^14.2.33",
30
30
  "@storybook/addon-actions": "^8.6.4",
31
31
  "@storybook/addon-essentials": "^8.6.4",
32
32
  "@storybook/addon-interactions": "^8.6.4",
@@ -46,7 +46,7 @@
46
46
  "@types/uuid": "8.3.4",
47
47
  "@typescript-eslint/eslint-plugin": "^7.18.0",
48
48
  "eslint": "^8.33.0",
49
- "eslint-config-next": "^14.2.32",
49
+ "eslint-config-next": "^14.2.33",
50
50
  "eslint-config-prettier": "^8.6.0",
51
51
  "eslint-plugin-eslint-comments": "^3.2.0",
52
52
  "eslint-plugin-jsdoc": "^48.1.0",
@@ -79,8 +79,8 @@
79
79
  "gray-matter": "^4.0.3",
80
80
  "isomorphic-dompurify": "^2.22.0",
81
81
  "ky": "^1.7.2",
82
- "next": "^14.2.32",
83
- "next-auth": "4.24.11",
82
+ "next": "^14.2.33",
83
+ "next-auth": "^4.24.13",
84
84
  "next-mdx-remote": "^4.4.1",
85
85
  "react": "^18.3.1",
86
86
  "react-dom": "^18.3.1",
@@ -99,6 +99,9 @@
99
99
  "uuid": "8.3.2",
100
100
  "yup": "^1.6.1"
101
101
  },
102
+ "overrides": {
103
+ "glob": "^11.0.4"
104
+ },
102
105
  "engines": {
103
106
  "node": "20.10.0"
104
107
  }
@@ -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
  },