@databiosphere/findable-ui 29.0.0 → 29.0.1
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,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [29.0.1](https://github.com/DataBiosphere/findable-ui/compare/v29.0.0...v29.0.1) (2025-05-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 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))
|
|
9
|
+
|
|
3
10
|
## [29.0.0](https://github.com/DataBiosphere/findable-ui/compare/v28.0.1...v29.0.0) (2025-05-06)
|
|
4
11
|
|
|
5
12
|
|
package/lib/common/entities.d.ts
CHANGED
|
@@ -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
|
|
61
|
+
description?: string;
|
|
62
62
|
name: string;
|
|
63
|
-
prefixes
|
|
63
|
+
prefixes?: DataDictionaryPrefix;
|
|
64
64
|
title: string;
|
|
65
65
|
}
|
|
66
66
|
/**
|
package/package.json
CHANGED
package/src/common/entities.ts
CHANGED
|
@@ -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
|
|
69
|
+
description?: string; // Free text description of data dictionary
|
|
70
70
|
name: string; // Programmatic name or key (e.g. tier1, hca)
|
|
71
|
-
prefixes
|
|
71
|
+
prefixes?: DataDictionaryPrefix;
|
|
72
72
|
title: string; // Display name
|
|
73
73
|
}
|
|
74
74
|
|