@epam/statgpt-sdmx-toolkit 0.6.0-rc.3 → 0.6.0-rc.5
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/index.cjs +2 -2
- package/index.mjs +199 -191
- package/models/structural-metadata/hierarchy.d.ts +6 -0
- package/package.json +3 -3
|
@@ -22,6 +22,12 @@ export interface TreeNode<T> {
|
|
|
22
22
|
children: TreeNode<T>[];
|
|
23
23
|
isExpanded?: boolean;
|
|
24
24
|
disabled?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Whether the node corresponds to a real, selectable code from the dimension's
|
|
27
|
+
* own codelist (as opposed to a purely structural grouping node that only
|
|
28
|
+
* exists in the hierarchy and cannot be persisted as a value on its own).
|
|
29
|
+
*/
|
|
30
|
+
isSelectableValue?: boolean;
|
|
25
31
|
parent?: string;
|
|
26
32
|
metadata: T;
|
|
27
33
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epam/statgpt-sdmx-toolkit",
|
|
3
|
-
"version": "0.6.0-rc.
|
|
3
|
+
"version": "0.6.0-rc.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"module": "./index.mjs",
|
|
15
15
|
"types": "./index.d.ts",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@epam/statgpt-dial-toolkit": "0.6.0-rc.
|
|
18
|
-
"@epam/statgpt-shared-toolkit": "0.6.0-rc.
|
|
17
|
+
"@epam/statgpt-dial-toolkit": "0.6.0-rc.5",
|
|
18
|
+
"@epam/statgpt-shared-toolkit": "0.6.0-rc.5",
|
|
19
19
|
"compare-versions": "^6.1.1",
|
|
20
20
|
"date-fns": "^4.1.0"
|
|
21
21
|
}
|