@databiosphere/findable-ui 26.0.0 → 27.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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "26.0.0"
2
+ ".": "27.0.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [27.0.0](https://github.com/DataBiosphere/findable-ui/compare/v26.0.0...v27.0.0) (2025-04-24)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * updated column def width type #437 ([#438](https://github.com/DataBiosphere/findable-ui/issues/438))
9
+
10
+ ### Bug Fixes
11
+
12
+ * updated column def width type [#437](https://github.com/DataBiosphere/findable-ui/issues/437) ([6e9bd24](https://github.com/DataBiosphere/findable-ui/commit/6e9bd247ddded8e169f68a09e3c4553692d6a979))
13
+ * updated column def width type [#437](https://github.com/DataBiosphere/findable-ui/issues/437) ([#438](https://github.com/DataBiosphere/findable-ui/issues/438)) ([6e9bd24](https://github.com/DataBiosphere/findable-ui/commit/6e9bd247ddded8e169f68a09e3c4553692d6a979))
14
+
3
15
  ## [26.0.0](https://github.com/DataBiosphere/findable-ui/compare/v25.1.0...v26.0.0) (2025-04-23)
4
16
 
5
17
 
@@ -1,5 +1,4 @@
1
1
  import { ColumnDef } from "@tanstack/react-table";
2
- import { GridTrackSize } from "../config/entities";
3
2
  /**
4
3
  * Model of a value of a metadata class.
5
4
  */
@@ -51,8 +50,8 @@ export interface DataDictionaryColumnDef {
51
50
  attributeDisplayName: string;
52
51
  attributeSlotName: string;
53
52
  width: {
54
- max: GridTrackSize;
55
- min: GridTrackSize;
53
+ max: string;
54
+ min: string;
56
55
  };
57
56
  }
58
57
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "26.0.0",
3
+ "version": "27.0.0",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -1,5 +1,4 @@
1
1
  import { ColumnDef } from "@tanstack/react-table";
2
- import { GridTrackSize } from "../config/entities";
3
2
 
4
3
  /**
5
4
  * Model of a value of a metadata class.
@@ -60,8 +59,8 @@ export interface DataDictionaryColumnDef {
60
59
  attributeSlotName: string;
61
60
  // Adding width here for now; possibly revisit separating column def and UI.
62
61
  width: {
63
- max: GridTrackSize;
64
- min: GridTrackSize;
62
+ max: string;
63
+ min: string;
65
64
  };
66
65
  }
67
66