@epam/statgpt-conversation-view 0.4.0-rc.22 → 0.4.0-rc.24

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,6 +1,17 @@
1
1
  import { DraggableListItemNode } from '../../../../../../ui-components/src/index';
2
2
  import { DatasetDimensionsScheme, DimensionConfig, StructuralData } from '../../../../../../sdmx-toolkit/src/index';
3
3
  import { DimensionCustomizationMap, DimensionKeyCustomization } from '../types';
4
+ /**
5
+ * Column IDs that can be enriched with per-dataset group nodes.
6
+ * Pass a subset as `enrichedColIds` to limit which columns get the grouped sub-items treatment.
7
+ */
8
+ export declare const ALL_AGGREGATED_COL_IDS: ReadonlySet<string>;
9
+ /**
10
+ * Default set of columns that receive the grouped sub-items treatment.
11
+ * Only the indicator column is enriched by default; country and frequency
12
+ * columns show a flat value without internal dimension breakdown.
13
+ */
14
+ export declare const DEFAULT_ENRICHED_COL_IDS: ReadonlySet<string>;
4
15
  interface CrossDatasetColumnsInfo {
5
16
  dataQueries: Array<{
6
17
  urn: string;
@@ -10,6 +21,7 @@ interface CrossDatasetColumnsInfo {
10
21
  getDimensionConfig: (urn: string, dimKey: string) => DimensionConfig | undefined;
11
22
  locale: string;
12
23
  dimensionCustomization?: DimensionCustomizationMap;
24
+ enrichedColIds?: ReadonlySet<string>;
13
25
  }
14
26
  /**
15
27
  * Applies ordering and hidden-key filtering from a customization record to a list of dimension keys.