@databiosphere/findable-ui 39.1.0 → 40.0.0
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [40.0.0](https://github.com/DataBiosphere/findable-ui/compare/v39.1.0...v40.0.0) (2025-07-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* upgrade next js to 14.2.30 or greater ([#568](https://github.com/DataBiosphere/findable-ui/issues/568)) (#579)
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* fix markdown rendering overflow ([#551](https://github.com/DataBiosphere/findable-ui/issues/551)) ([#580](https://github.com/DataBiosphere/findable-ui/issues/580)) ([42ce935](https://github.com/DataBiosphere/findable-ui/commit/42ce9355b10997e29648e9685622dfe04db4e625))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Chores
|
|
16
|
+
|
|
17
|
+
* upgrade next js to 14.2.30 or greater ([#568](https://github.com/DataBiosphere/findable-ui/issues/568)) ([#579](https://github.com/DataBiosphere/findable-ui/issues/579)) ([ff88c9c](https://github.com/DataBiosphere/findable-ui/commit/ff88c9ca9479f7ae736e9794b428cc1454d81d6c))
|
|
18
|
+
|
|
3
19
|
## [39.1.0](https://github.com/DataBiosphere/findable-ui/compare/v39.0.0...v39.1.0) (2025-07-24)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -3,6 +3,9 @@ import styled from "@emotion/styled";
|
|
|
3
3
|
// See https://github.com/emotion-js/emotion/releases/tag/%40emotion%2Fcache%4011.10.2.
|
|
4
4
|
const ignoreSsrWarning = "/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */";
|
|
5
5
|
export const StyledContainer = styled("div") `
|
|
6
|
+
min-width: 0;
|
|
7
|
+
width: 100%;
|
|
8
|
+
|
|
6
9
|
> *:first-child:not(style)${ignoreSsrWarning} {
|
|
7
10
|
margin-top: 0;
|
|
8
11
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databiosphere/findable-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "40.0.0",
|
|
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.
|
|
29
|
+
"@next/eslint-plugin-next": "^14.2.30",
|
|
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.
|
|
49
|
+
"eslint-config-next": "^14.2.30",
|
|
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",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"copy-to-clipboard": "3.3.1",
|
|
79
79
|
"isomorphic-dompurify": "^2.22.0",
|
|
80
80
|
"ky": "^1.7.2",
|
|
81
|
-
"next": "^14.2.
|
|
81
|
+
"next": "^14.2.30",
|
|
82
82
|
"next-auth": "^4.24.7",
|
|
83
83
|
"react": "^18.3.1",
|
|
84
84
|
"react-dom": "^18.3.1",
|
|
@@ -6,6 +6,9 @@ const ignoreSsrWarning =
|
|
|
6
6
|
"/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */";
|
|
7
7
|
|
|
8
8
|
export const StyledContainer = styled("div")`
|
|
9
|
+
min-width: 0;
|
|
10
|
+
width: 100%;
|
|
11
|
+
|
|
9
12
|
> *:first-child:not(style)${ignoreSsrWarning} {
|
|
10
13
|
margin-top: 0;
|
|
11
14
|
}
|