@databiosphere/findable-ui 29.0.0 → 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.0"
2
+ ".": "29.0.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
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
+
10
+ ## [29.0.1](https://github.com/DataBiosphere/findable-ui/compare/v29.0.0...v29.0.1) (2025-05-07)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * updated optional dictionary values [#423](https://github.com/DataBiosphere/findable-ui/issues/423) ([#459](https://github.com/DataBiosphere/findable-ui/issues/459)) ([f6dbfb5](https://github.com/DataBiosphere/findable-ui/commit/f6dbfb5461541166a6f8b82ae4f5d07761e447d4))
16
+
3
17
  ## [29.0.0](https://github.com/DataBiosphere/findable-ui/compare/v28.0.1...v29.0.0) (2025-05-06)
4
18
 
5
19
 
@@ -54,13 +54,13 @@ export type DataDictionaryPrefix = Record<string, string>;
54
54
  * Model of a metadata dictionary containing a set of classes and their definitions.
55
55
  */
56
56
  export interface DataDictionary {
57
- annotations: {
57
+ annotations?: {
58
58
  [key in keyof DataDictionaryPrefix]: string;
59
59
  };
60
60
  classes: Class[];
61
- description: string;
61
+ description?: string;
62
62
  name: string;
63
- prefixes: DataDictionaryPrefix;
63
+ prefixes?: DataDictionaryPrefix;
64
64
  title: string;
65
65
  }
66
66
  /**
@@ -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.0",
3
+ "version": "29.0.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -62,13 +62,13 @@ export type DataDictionaryPrefix = Record<string, string>;
62
62
  * Model of a metadata dictionary containing a set of classes and their definitions.
63
63
  */
64
64
  export interface DataDictionary {
65
- annotations: {
65
+ annotations?: {
66
66
  [key in keyof DataDictionaryPrefix]: string; // Prefix to title e.g. "cxg": "CELLxGENE"
67
67
  };
68
68
  classes: Class[];
69
- description: string; // Free text description of data dictionary
69
+ description?: string; // Free text description of data dictionary
70
70
  name: string; // Programmatic name or key (e.g. tier1, hca)
71
- prefixes: DataDictionaryPrefix;
71
+ prefixes?: DataDictionaryPrefix;
72
72
  title: string; // Display name
73
73
  }
74
74
 
@@ -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