@databiosphere/findable-ui 29.0.1 → 29.0.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
- ".": "29.0.1"
2
+ ".": "29.0.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [29.0.2](https://github.com/DataBiosphere/findable-ui/compare/v29.0.1...v29.0.2) (2025-05-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * updated ColumnDef typing [#423](https://github.com/DataBiosphere/findable-ui/issues/423) ([#461](https://github.com/DataBiosphere/findable-ui/issues/461)) ([0b56ce8](https://github.com/DataBiosphere/findable-ui/commit/0b56ce82cb9c1247a32226e8e659ae760c7a140a))
9
+
3
10
  ## [29.0.1](https://github.com/DataBiosphere/findable-ui/compare/v29.0.0...v29.0.1) (2025-05-07)
4
11
 
5
12
 
@@ -79,7 +79,7 @@ export interface DataDictionaryColumnDef {
79
79
  * dictionary) as well as column def for displaying the data dictionary.
80
80
  */
81
81
  export interface DataDictionaryConfig {
82
- columnDefs: ColumnDef<Attribute>[];
82
+ columnDefs: ColumnDef<Attribute, AttributeValueTypes>[];
83
83
  dataDictionary: DataDictionary;
84
84
  }
85
85
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "29.0.1",
3
+ "version": "29.0.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -90,7 +90,7 @@ export interface DataDictionaryColumnDef {
90
90
  * dictionary) as well as column def for displaying the data dictionary.
91
91
  */
92
92
  export interface DataDictionaryConfig {
93
- columnDefs: ColumnDef<Attribute>[];
93
+ columnDefs: ColumnDef<Attribute, AttributeValueTypes>[];
94
94
  dataDictionary: DataDictionary;
95
95
  }
96
96