@hestia-earth/ui-components 0.43.8 → 0.43.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/ui-components",
3
- "version": "0.43.8",
3
+ "version": "0.43.10",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,6 +33,7 @@ import * as _angular_platform_browser from '@angular/platform-browser';
33
33
  import * as _angular_cdk_overlay from '@angular/cdk/overlay';
34
34
  import { ConnectedPosition } from '@angular/cdk/overlay';
35
35
  import { ResizeEvent } from 'angular-resizable-element';
36
+ import { IFormula } from '@hestia-earth/aggregation-engine';
36
37
  import * as chartjs_plugin_annotation from 'chartjs-plugin-annotation';
37
38
  export * from '@hestia-earth/ui-components/katex';
38
39
 
@@ -2540,7 +2541,8 @@ declare enum View$2 {
2540
2541
  table = "Table",
2541
2542
  chart = "Chart",
2542
2543
  timeline = "Operations Timeline",
2543
- logs = "Recalculations logs"
2544
+ logs = "Recalculations logs",
2545
+ aggregationLogs = "Aggregation logs"
2544
2546
  }
2545
2547
  type groupedEmissions$1 = {
2546
2548
  [methodTier in EmissionMethodTier]: IGroupedKeys<Emission>[];
@@ -2582,6 +2584,7 @@ declare class CyclesNodesComponent {
2582
2584
  Chart: svgIconNames;
2583
2585
  "Operations Timeline": svgIconNames;
2584
2586
  "Recalculations logs": svgIconNames;
2587
+ "Aggregation logs": svgIconNames;
2585
2588
  };
2586
2589
  private readonly showView;
2587
2590
  protected readonly views: _angular_core.Signal<View$2[]>;
@@ -2591,7 +2594,19 @@ declare class CyclesNodesComponent {
2591
2594
  protected readonly originalCycles: _angular_core.Signal<ICycleJSONLD[] | groupedNodeExtended[]>;
2592
2595
  protected readonly cycles: _angular_core.Signal<ICycleJSONLD[] | groupedNodeExtended[]>;
2593
2596
  protected readonly showSelectCycle: _angular_core.Signal<boolean>;
2594
- private readonly selectedIndex;
2597
+ /**
2598
+ * The cycles the current view can show, each with its position in `cycles()`.
2599
+ *
2600
+ * The two logs views read a different file for the same cycle: the recalculation logs parse the
2601
+ * model logs, which an aggregated cycle does not have (its log describes the aggregation), and the
2602
+ * aggregation logs only mean anything for an aggregated one. So each view offers only the cycles
2603
+ * it can actually read - showing a cycle the view cannot parse is not an empty table, it throws.
2604
+ */
2605
+ protected readonly selectableCycles: _angular_core.Signal<{
2606
+ cycle: any;
2607
+ index: any;
2608
+ }[]>;
2609
+ protected readonly selectedIndex: _angular_core.WritableSignal<number>;
2595
2610
  private readonly ogirinalSelectedCycle;
2596
2611
  protected readonly selectedCycle: _angular_core.Signal<ICycleJSONLD | groupedNodeExtended>;
2597
2612
  protected readonly selectedLogsKey: _angular_core.Signal<any>;
@@ -2722,6 +2737,10 @@ declare class CyclesNodesComponent {
2722
2737
  }>;
2723
2738
  private readonly isOriginal;
2724
2739
  private readonly hasRecalculatedNodes;
2740
+ private readonly hasAggregatedNodes;
2741
+ private readonly primaryProduct;
2742
+ protected readonly primaryProductTermType: _angular_core.Signal<string>;
2743
+ protected readonly primaryProductTermId: _angular_core.Signal<string>;
2725
2744
  protected readonly showSwitchToRecalculated: _angular_core.Signal<boolean>;
2726
2745
  protected readonly timelineValues: _angular_core.Signal<blankNodesType[]>;
2727
2746
  private readonly enableTimeline;
@@ -3652,6 +3671,111 @@ declare class HeGlossaryService {
3652
3671
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<HeGlossaryService>;
3653
3672
  }
3654
3673
 
3674
+ /**
3675
+ * A variable listed under a formula: its symbol, what it means, and whether the value that should
3676
+ * have been substituted into it was absent.
3677
+ */
3678
+ interface IFormulaVariable {
3679
+ symbol: string;
3680
+ description?: string;
3681
+ /**
3682
+ * The symbol should carry a value but none was available, so it stayed symbolic. Never set for a
3683
+ * constant or a quantity that is deliberately not stored - those are not "missing".
3684
+ */
3685
+ missing?: boolean;
3686
+ }
3687
+ /**
3688
+ * A formula ready to display: the KaTeX source to render, and the variables shown beneath it.
3689
+ */
3690
+ interface IRenderedFormula {
3691
+ rendered: string;
3692
+ /**
3693
+ * What the formula is for, e.g. `Completeness`. Shown above it when several formulas are listed
3694
+ * together, so a reader can tell them apart.
3695
+ */
3696
+ section?: string;
3697
+ /**
3698
+ * The sentence introducing the formula, taken from the documentation it was extracted from.
3699
+ */
3700
+ context?: string;
3701
+ variables: IFormulaVariable[];
3702
+ }
3703
+ /**
3704
+ * A run of documentation text: either plain text, or a symbol to render as inline math.
3705
+ */
3706
+ interface IFormulaTextPart {
3707
+ text?: string;
3708
+ math?: string;
3709
+ }
3710
+ /**
3711
+ * Split documentation text into its plain runs and the inline math between them, so a description
3712
+ * shows its symbols as symbols rather than the raw `$w_i$` source it is written with.
3713
+ */
3714
+ declare const toTextParts: (value?: string) => IFormulaTextPart[];
3715
+
3716
+ /**
3717
+ * Displays a set of formulas with the variables documented under them, and a switch between the
3718
+ * symbolic and the substituted view.
3719
+ *
3720
+ * Presentation only: the caller decides which formulas to show and how their symbols resolve, which
3721
+ * differs entirely between a recalculation (a model's jlog entry, with sub-formulas and
3722
+ * contributions) and an aggregation (the quantities the aggregation records for a data item).
3723
+ */
3724
+ declare class FormulaBlockComponent {
3725
+ /**
3726
+ * The formulas to display, already rendered by the caller.
3727
+ */
3728
+ readonly formulas: _angular_core.InputSignal<IRenderedFormula[]>;
3729
+ /**
3730
+ * Whether any symbol resolves. When nothing does, the substituted view would be identical to the
3731
+ * symbolic one, so the switch is disabled rather than silently doing nothing.
3732
+ */
3733
+ readonly hasSubstitutions: _angular_core.InputSignal<boolean>;
3734
+ /**
3735
+ * Shown when the switch is disabled, to say why there is nothing to substitute.
3736
+ */
3737
+ readonly emptyTitle: _angular_core.InputSignal<string>;
3738
+ /**
3739
+ * The label above the formulas. Defaults to "Formula(s)"; set it when several blocks sit together
3740
+ * and the reader needs to know what each one covers.
3741
+ */
3742
+ readonly heading: _angular_core.InputSignal<string>;
3743
+ /**
3744
+ * A line under the heading saying what the block covers, e.g. when it applies.
3745
+ */
3746
+ readonly note: _angular_core.InputSignal<string>;
3747
+ /**
3748
+ * Whether this block carries the raw/substituted switch. Turn it off on all but the first of
3749
+ * several blocks: they share one state, so repeating the switch only repeats the same control.
3750
+ */
3751
+ readonly showToggle: _angular_core.InputSignal<boolean>;
3752
+ /**
3753
+ * Whether the substituted view is shown. Two-way, so the caller can render accordingly.
3754
+ */
3755
+ readonly substituted: _angular_core.ModelSignal<boolean>;
3756
+ protected readonly toggleId: string;
3757
+ /**
3758
+ * The formulas with their documentation text split into plain runs and inline math, and the
3759
+ * section header dropped where it repeats the formula above - so a run of formulas from one
3760
+ * section reads as one section rather than as the same heading over and over.
3761
+ */
3762
+ protected readonly items: _angular_core.Signal<{
3763
+ section: string;
3764
+ contextParts: _hestia_earth_ui_components.IFormulaTextPart[];
3765
+ variables: {
3766
+ descriptionParts: _hestia_earth_ui_components.IFormulaTextPart[];
3767
+ symbol: string;
3768
+ description?: string;
3769
+ missing?: boolean;
3770
+ }[];
3771
+ rendered: string;
3772
+ context?: string;
3773
+ }[]>;
3774
+ protected toggle(): void;
3775
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormulaBlockComponent, never>;
3776
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormulaBlockComponent, "he-formula-block", never, { "formulas": { "alias": "formulas"; "required": false; "isSignal": true; }; "hasSubstitutions": { "alias": "hasSubstitutions"; "required": false; "isSignal": true; }; "emptyTitle": { "alias": "emptyTitle"; "required": false; "isSignal": true; }; "heading": { "alias": "heading"; "required": false; "isSignal": true; }; "note": { "alias": "note"; "required": false; "isSignal": true; }; "showToggle": { "alias": "showToggle"; "required": false; "isSignal": true; }; "substituted": { "alias": "substituted"; "required": false; "isSignal": true; }; }, { "substituted": "substitutedChange"; }, never, never, true, never>;
3777
+ }
3778
+
3655
3779
  declare const GUIDE_ENABLED: InjectionToken<boolean>;
3656
3780
  declare const guideNamespace = "he-guide";
3657
3781
  interface IMessage {
@@ -4899,6 +5023,37 @@ declare const groupJLogByTerm: (jlog: Record<string, any>, nodeKey: string, reca
4899
5023
  * @param nodeType The node type.
4900
5024
  */
4901
5025
  declare const groupJLogByField: (jlog: Record<string, any>, nodeKey: string, originalValues: nonBlankNodesTypeValue, recalculatedValues: nonBlankNodesTypeValue, nodeType?: NodeType) => IJLogTermGroup[];
5026
+ /**
5027
+ * One blank node, labelled by what tells it apart from the others sharing its term.
5028
+ */
5029
+ interface IBlankNodeIdentityRow {
5030
+ index: number;
5031
+ value: any;
5032
+ segments: IIdentitySegment[];
5033
+ scalars: IIdentityScalar[];
5034
+ label: string;
5035
+ }
5036
+ interface IBlankNodeIdentityGroup {
5037
+ term?: ITermJSONLD;
5038
+ termId: string;
5039
+ type?: SchemaType;
5040
+ rows: IBlankNodeIdentityRow[];
5041
+ canOpen: boolean;
5042
+ value: propertyValueType;
5043
+ valueFormula?: string;
5044
+ }
5045
+ /**
5046
+ * Group blank nodes by term, labelling those that share one - the grouping the recalculation logs
5047
+ * show, for a view that has no `.jlog` to read (the aggregation logs).
5048
+ *
5049
+ * The labels come from the schema `uniquenessFields`, so two entries for the same term read as e.g.
5050
+ * "depths: 0-30" or "inputs: Wheat, grain" exactly as they do in the recalculation logs.
5051
+ *
5052
+ * @param values The blank nodes of one node key (e.g. a cycle's `inputs`).
5053
+ * @param nodeType The type of the node holding them (e.g. `Cycle`), for the parent uniqueness fields.
5054
+ * @param nodeKey The node field they were read from (e.g. `inputs`).
5055
+ */
5056
+ declare const groupBlankNodesByTermIdentity: (values: any[], nodeType?: NodeType, nodeKey?: string) => IBlankNodeIdentityGroup[];
4902
5057
  /**
4903
5058
  * The maximum number of model columns across all rows, to size the "Model N" columns.
4904
5059
  */
@@ -4927,6 +5082,152 @@ declare class NodeAggregatedInfoComponent {
4927
5082
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeAggregatedInfoComponent, "he-node-aggregated-info", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showSource": { "alias": "showSource"; "required": false; "isSignal": true; }; "showSites": { "alias": "showSites"; "required": false; "isSignal": true; }; "triggers": { "alias": "triggers"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
4928
5083
  }
4929
5084
 
5085
+ declare class NodeAggregatedFormulasComponent {
5086
+ /**
5087
+ * The `termType` of the aggregation's primary product, which selects the product-specific page.
5088
+ * Omit it to show the general rules only.
5089
+ */
5090
+ readonly termType: _angular_core.InputSignal<string>;
5091
+ /**
5092
+ * The `@id` of the aggregation's primary product, which decides whether the plantation rules ran.
5093
+ */
5094
+ readonly termId: _angular_core.InputSignal<string>;
5095
+ /**
5096
+ * The blank node key the formulas are shown for (`products`, `emissions`, ...). Omit it to show
5097
+ * every rule; set it and only the rules that apply to that kind of data item are kept.
5098
+ */
5099
+ readonly nodeKey: _angular_core.InputSignal<string>;
5100
+ /**
5101
+ * The quantities the formulas bind to, for this data item. Supplied by the caller from the
5102
+ * node's `.jlog` entries recorded by the aggregation (`model: "aggregation"`). Leave it empty
5103
+ * and every symbol stays symbolic, which is a valid state: aggregation logs are opt-in
5104
+ * (`LOG_JSON_ENABLED`) and absent for most aggregations.
5105
+ */
5106
+ readonly values: _angular_core.InputSignal<Record<string, unknown>>;
5107
+ /**
5108
+ * Whether the aggregation covers the World rather than one country. A World aggregation combines
5109
+ * country aggregations by their share of world production; a country one never does, so that rule
5110
+ * is not part of how its values were produced.
5111
+ */
5112
+ readonly worldAggregation: _angular_core.InputSignal<boolean>;
5113
+ protected readonly substituted: _angular_core.ModelSignal<boolean>;
5114
+ /**
5115
+ * The pages whose formulas are shown: the general rules, then the product-specific ones.
5116
+ */
5117
+ protected readonly pages: _angular_core.Signal<string[]>;
5118
+ /**
5119
+ * Whether the rule ran for this aggregation at all. Some stages depend on what was aggregated
5120
+ * rather than on the data item shown: the production-share weighting only combines countries into
5121
+ * a World aggregation, and the phase weighting only splits the lifespan of a plantation crop.
5122
+ */
5123
+ private ranForAggregation;
5124
+ /**
5125
+ * Whether the rule applies to the kind of data item shown. With no `nodeKey` every rule is kept,
5126
+ * which is the whole-aggregation view.
5127
+ */
5128
+ private appliesToNodeKey;
5129
+ private applies;
5130
+ protected readonly hasSubstitutions: _angular_core.Signal<boolean>;
5131
+ /**
5132
+ * Each page with its formulas, rendered symbolically or with values substituted, and the
5133
+ * variables documented under each. A variable with nothing to substitute is flagged, so the
5134
+ * reader can tell a value that was not recorded from one that is genuinely absent.
5135
+ */
5136
+ protected readonly sections: _angular_core.Signal<{
5137
+ formulas: IFormula[];
5138
+ heading: string;
5139
+ applies: string;
5140
+ page: string;
5141
+ }[]>;
5142
+ protected readonly renderedSections: _angular_core.Signal<{
5143
+ formulas: {
5144
+ rendered: string;
5145
+ section: string;
5146
+ context: string;
5147
+ variables: {
5148
+ symbol: string;
5149
+ description: string;
5150
+ missing: boolean;
5151
+ }[];
5152
+ }[];
5153
+ heading: string;
5154
+ applies: string;
5155
+ page: string;
5156
+ }[]>;
5157
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodeAggregatedFormulasComponent, never>;
5158
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeAggregatedFormulasComponent, "he-node-aggregated-formulas", never, { "termType": { "alias": "termType"; "required": false; "isSignal": true; }; "termId": { "alias": "termId"; "required": false; "isSignal": true; }; "nodeKey": { "alias": "nodeKey"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; "worldAggregation": { "alias": "worldAggregation"; "required": false; "isSignal": true; }; "substituted": { "alias": "substituted"; "required": false; "isSignal": true; }; }, { "substituted": "substitutedChange"; }, never, never, true, never>;
5159
+ }
5160
+
5161
+ interface IAggregationRow {
5162
+ index: number;
5163
+ value: any;
5164
+ segments: IBlankNodeIdentityGroup['rows'][0]['segments'];
5165
+ scalars: IBlankNodeIdentityGroup['rows'][0]['scalars'];
5166
+ label: string;
5167
+ values: Record<string, unknown>;
5168
+ displayValue: propertyValueType;
5169
+ observations?: number;
5170
+ }
5171
+ interface IAggregationGroup extends Omit<IBlankNodeIdentityGroup, 'rows'> {
5172
+ rows: IAggregationRow[];
5173
+ isOpen: boolean;
5174
+ observations?: string;
5175
+ }
5176
+ declare class NodeAggregationLogsComponent {
5177
+ private readonly nodeLogsModelsService;
5178
+ /**
5179
+ * The aggregated node the data items are read from.
5180
+ */
5181
+ readonly node: _angular_core.InputSignal<IJSONNode>;
5182
+ /**
5183
+ * The blank node key shown, e.g. `products` or `emissions`. It also selects which rules apply
5184
+ * to each row: the economic value share is only rescaled for products, and zero-filling only
5185
+ * applies where terms carry a completeness area.
5186
+ */
5187
+ readonly nodeKey: _angular_core.InputSignal<string>;
5188
+ /**
5189
+ * The `termType` of the aggregation's primary product, which selects the product-specific rules.
5190
+ */
5191
+ readonly termType: _angular_core.InputSignal<string>;
5192
+ /**
5193
+ * The `@id` of the aggregation's primary product, which decides whether the plantation rules ran.
5194
+ */
5195
+ readonly termId: _angular_core.InputSignal<string>;
5196
+ /**
5197
+ * For a grouped sub-node view (e.g. an animal's inputs), the `.jlog` is nested under its parent:
5198
+ * scope to `jlog[<parentKey>][<parentIndex>]`, as the recalculation logs do.
5199
+ */
5200
+ readonly jlogParentKey: _angular_core.InputSignal<string>;
5201
+ readonly jlogParentIndex: _angular_core.InputSignal<number>;
5202
+ protected readonly guideEnabled: boolean;
5203
+ protected readonly modelName = "Aggregation";
5204
+ protected readonly guidePage: _angular_core.Signal<string>;
5205
+ protected readonly guideHref: _angular_core.Signal<string>;
5206
+ private readonly nodeType;
5207
+ protected readonly worldAggregation: _angular_core.Signal<boolean>;
5208
+ /**
5209
+ * The node's `.jlog`, fetched like the recalculation logs fetch theirs: the aggregation records the
5210
+ * quantities its formulas bind to in the same file, under the same `{<field>: {<index>: {logs: []}}}`
5211
+ * shape. It is empty for most aggregations - the logs are opt-in (`LOG_JSON_ENABLED`) - and every
5212
+ * rule then renders symbolically, which is a valid state rather than an error.
5213
+ */
5214
+ private readonly jlogResource;
5215
+ private readonly jlog;
5216
+ private readonly scopedJlog;
5217
+ private readonly openGroups;
5218
+ /**
5219
+ * The aggregated data items, grouped by term exactly as the recalculation logs group them: several
5220
+ * entries for one term (e.g. a measurement at two depths) collapse into one expandable group whose
5221
+ * rows are labelled by what tells them apart.
5222
+ */
5223
+ protected readonly groups: _angular_core.Signal<IAggregationGroup[]>;
5224
+ protected toggleGroup(group: IAggregationGroup): void;
5225
+ protected trackByGroup(_index: number, group: IAggregationGroup): string;
5226
+ protected trackByRow(_index: number, row: IAggregationRow): string;
5227
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodeAggregationLogsComponent, never>;
5228
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeAggregationLogsComponent, "he-node-aggregation-logs", never, { "node": { "alias": "node"; "required": false; "isSignal": true; }; "nodeKey": { "alias": "nodeKey"; "required": false; "isSignal": true; }; "termType": { "alias": "termType"; "required": false; "isSignal": true; }; "termId": { "alias": "termId"; "required": false; "isSignal": true; }; "jlogParentKey": { "alias": "jlogParentKey"; "required": false; "isSignal": true; }; "jlogParentIndex": { "alias": "jlogParentIndex"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
5229
+ }
5230
+
4930
5231
  declare class NodeAggregatedQualityScoreComponent {
4931
5232
  private readonly searchService;
4932
5233
  private readonly nodeService;
@@ -5908,5 +6209,5 @@ declare class TermsUnitsDescriptionComponent {
5908
6209
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TermsUnitsDescriptionComponent, "he-terms-units-description", never, { "term": { "alias": "term"; "required": true; "isSignal": true; }; "iconTemplate": { "alias": "iconTemplate"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5909
6210
  }
5910
6211
 
5911
- export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBoxComponent, CollapsibleBoxStyle, ColorPalette, CompoundDirective, CompoundPipe, ContributionChartComponent, ControlValueAccessor, CycleNodesKeyGroup, CyclesCompletenessComponent, CyclesEmissionsCategoryService, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, EngineModelsVersionInfoComponent, EngineModelsVersionLinkComponent, EngineOrchestratorEditComponent, EngineRequirementsFormComponent, FileSizePipe, FileUploadErrorKeys, FilesDragDropDirective, FilesDropZoneComponent, FilesErrorSummaryComponent, FilesFormComponent, FilesFormEditableComponent, FilesUploadErrorsComponent, FilterAccordionComponent, GUIDE_ENABLED, GetPipe, GlossaryMigrationFormat, GuideOverlayComponent, HE_API_BASE_URL, HE_CALCULATIONS_BASE_URL, HE_MAP_LOADED, HeAuthService, HeCommonService, HeEngineService, HeGlossaryService, HeMendeleyService, HeNodeCsvService, HeNodeService, HeNodeStoreService, HeSchemaService, HeSearchService, HeToastService, HorizontalBarChartComponent, HorizontalButtonsGroupComponent, ImpactAssessmentsGraphComponent, ImpactAssessmentsIndicatorBreakdownChartComponent, ImpactAssessmentsIndicatorsChartComponent, ImpactAssessmentsProductsComponent, IsArrayPipe, IsObjectPipe, IssueConfirmComponent, KeyToLabelPipe, Level, LineChartComponent, LinkKeyValueComponent, LogStatus, LongPressDirective, MAX_RESULTS, MapsDrawingComponent, MapsDrawingConfirmComponent, MaxPipe, MeanPipe, MedianPipe, MendeleySearchResult, MinPipe, MobileShellComponent, NavigationMenuComponent, NoExtPipe, NodeAggregatedComponent, NodeAggregatedInfoComponent, NodeAggregatedQualityScoreComponent, NodeCsvExportConfirmComponent, NodeCsvPreviewComponent, NodeCsvSelectHeadersComponent, NodeIconComponent, NodeJLogModelsComponent, NodeJsonldComponent, NodeJsonldSchemaComponent, NodeKeyState, NodeLinkComponent, NodeLogsFileComponent, NodeLogsModelsComponent, NodeLogsTimeComponent, NodeMissingLookupFactorsComponent, NodeQualityScore, NodeRecommendationsComponent, NodeSelectComponent, NodeValueDetailsComponent, PipelineStagesProgressComponent, PluralizePipe, PopoverComponent, PopoverConfirmComponent, PrecisionPipe, RelatedNodeResult, RemoveMarkdownPipe, RepeatPipe, Repository, ResizedDirective, ResizedEvent, ResponsiveService, SchemaInfoComponent, SchemaVersionLinkComponent, SearchExtendComponent, ShelfDialogComponent, ShellComponent, SiteNodesKeyGroup, SitesManagementChartComponent, SitesMapsComponent, SitesNodesComponent, SkeletonTextComponent, SocialTagsComponent, SortByPipe, SortSelectComponent, SumPipe, TagsInputDirective, Template, TermsPropertyContentComponent, TermsSubClassOfContentComponent, TermsUnitsDescriptionComponent, ThousandSuffixesPipe, ThousandsPipe, TimesPipe, ToastComponent, UncapitalizePipe, addPolygonToFeature, afterBarDrawPlugin, allCountriesQuery, allGroups, allOptions, availableProperties, axisHoverPlugin, backgroundHoverPlugin, baseApiUrl, baseUrl, bottom, buildSummary, bytesSize, calculateCycleDuration, calculateCycleDurationEnabled, calculateCycleStartDate, calculateCycleStartDateEnabled, capitalize, changelogUrl, clustererImage, code, colorToRgba, compoundToHtml, computeKeys, computeTerms, contactUsEmail, contactUsLink, convertToSvg, coordinatesToPoint, copyObject, countGroupVisibleNodes, countriesQuery, createMarker, cropsQuery, d3ellipse, d3wrap, dataPathLabel, dataPathToKey, dataVersionHeader, dataVersionHeaderKey, defaultFeature, defaultLabel, defaultSuggestionType, defaultTicksFont, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadPng, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupChanged, groupDataByCategory, groupJLogByField, groupJLogByTerm, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, ignoreKeys, increaseScaleLimits, initialFilterState, injectResizeEvent$, inputGroupsTermTypes, isAddPropertyEnabled, isChrome, isDateBetween, isEqual, isExternal, isKeyClosedVisible, isKeyHidden, isMaxStage, isMethodModelAllowed, isNonNodeModelKey, isSchemaIri, isScrolledBelow, isState, isTermTypeAllowed, isValidKey, jLogModelCount, keyToDataPath, levels, listColor, listColorContinuous, listColorWithAlpha, loadMapApi, locationQuery, logToCsv, logValueArray, logsKey, lollipopChartPlugin, lookupUrl, mapFilterData, mapsUrl, markerIcon, markerPie, matchAggregatedQuery, matchAggregatedValidatedQuery, matchBoolPrefixQuery, matchCountry, matchExactQuery, matchGlobalRegion, matchId, matchNameNormalized, matchNestedKey, matchPhrasePrefixQuery, matchPhraseQuery, matchPrimaryProductQuery, matchQuery, matchRegex, matchRegion, matchTermType, matchType, maxAreaSize, measurementValue, mergeDataWithHeaders, methodTierOrder, migrationErrorMessage, migrationsUrl, modelCount, modelKeyParams, modelParams, models, multiMatchQuery, nestedProperty, nestingEnabled, nestingTypeEnabled, noValue, nodeAvailableProperties, nodeById, nodeColours, nodeDataState, nodeDataStates, nodeDataVersion, nodeId, nodeIdWithoutDataVersion, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeRequestId, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeTypeIconSchema, nodeUrl, nodeUrlParams, nodeVersion, nodeVersionKey, nodesByState, nodesByType, numberGte, optionsFromGroup, parentKey, parentProperty, parseColor, parseData, parseDataPath, parseLines, parseMessage, parseNewValue, pluralize, pointToCoordinates, polygonBounds, polygonToCoordinates, polygonToMap, polygonsFromFeature, populateWithTrackIdsFilterData, postGuideEvent, primaryProduct, productsQuery, propertyError, propertyId, recursiveProperties, refToSchemaType, refreshPropertyKeys, regionsQuery, registerChart, repeat, reportIssueLink, reportIssueUrl, safeJSONParse, safeJSONStringify, schemaBaseUrl, schemaDataBaseUrl, schemaLink, schemaRequiredProperties, schemaTypeToDefaultValue, scrollToEl, scrollTop, searchFilterData, searchableTypes, siblingProperty, simplifyContributions, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, subValueKeys, suggestMatchQuery, suggestQuery, sumValues, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
5912
- export type { AfterBarDrawSettings, AxisHoverSettings, BarChartDataItem, ButtonGroupItem, ChartExportMetadata, ContributionChartDataItem, ContributionTooltipData, FilterData, FilterElement, FilterFn, FilterGroup, FilterOption, FilterState, HistogramChartDataItem, IBlankNodeLog, IBlankNodeLogSubValue, ICalculationsModel, ICalculationsModelsParams, ICalculationsRequirementsParams, IChartExportFormat, ICloseMessage, IConfigModel, IContributionCategory, ICustomValidationRules, ICycleJSONLDExtended, IEmissionCategory, IErrorProperty, IFeature, IFeatureCollection, IFileUploadError, IFilesDropped, IGeometryCollection, IGlossaryMigration, IGlossaryMigrations, IGroupedKeys, IGroupedNode, IGroupedNodes, IGroupedNodesValue, IGroupedNodesValues, IIdentityScalar, IIdentitySegment, IImpactAssessmentJSONLDExtended, IIssueParams, IJLogBlankNode, IJLogModelColumn, IJLogModelRun, IJLogTermGroup, IJSONData, IJSONNode, ILine, ILog, IMarker, IMessage, IMobileShellMenuButton, INavigationMenuLink, INewProperty, INodeContributions, INodeErrorLog, INodeHeaders, INodeLogs, INodeMissingLookupLog, INodeProperty, INodeRequestParams, INodeTermLog, INodeTermLogs, INonBlankNodeLog, IPolygonMap, IRelatedNode, ISearchParams, ISearchResultExtended, ISearchResults, IShellMenuButton, ISiteJSONLDExtended, IStoredNode, ISummary, ISummaryError, IToast, IValidationError, LollipopPluginSettings, RgbColor, SelectValue, SortOption, SortSelectEvent, SortSelectOrder, blankNodesTypeValue, chartExportFn, chartTooltipContentFn, contributions, feature, horizontalTooltipData, modelKey, nodeContributionsSimplified, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, validationErrorKeyword, validationErrorLevel, validationErrorParam };
6212
+ export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBoxComponent, CollapsibleBoxStyle, ColorPalette, CompoundDirective, CompoundPipe, ContributionChartComponent, ControlValueAccessor, CycleNodesKeyGroup, CyclesCompletenessComponent, CyclesEmissionsCategoryService, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, EngineModelsVersionInfoComponent, EngineModelsVersionLinkComponent, EngineOrchestratorEditComponent, EngineRequirementsFormComponent, FileSizePipe, FileUploadErrorKeys, FilesDragDropDirective, FilesDropZoneComponent, FilesErrorSummaryComponent, FilesFormComponent, FilesFormEditableComponent, FilesUploadErrorsComponent, FilterAccordionComponent, FormulaBlockComponent, GUIDE_ENABLED, GetPipe, GlossaryMigrationFormat, GuideOverlayComponent, HE_API_BASE_URL, HE_CALCULATIONS_BASE_URL, HE_MAP_LOADED, HeAuthService, HeCommonService, HeEngineService, HeGlossaryService, HeMendeleyService, HeNodeCsvService, HeNodeService, HeNodeStoreService, HeSchemaService, HeSearchService, HeToastService, HorizontalBarChartComponent, HorizontalButtonsGroupComponent, ImpactAssessmentsGraphComponent, ImpactAssessmentsIndicatorBreakdownChartComponent, ImpactAssessmentsIndicatorsChartComponent, ImpactAssessmentsProductsComponent, IsArrayPipe, IsObjectPipe, IssueConfirmComponent, KeyToLabelPipe, Level, LineChartComponent, LinkKeyValueComponent, LogStatus, LongPressDirective, MAX_RESULTS, MapsDrawingComponent, MapsDrawingConfirmComponent, MaxPipe, MeanPipe, MedianPipe, MendeleySearchResult, MinPipe, MobileShellComponent, NavigationMenuComponent, NoExtPipe, NodeAggregatedComponent, NodeAggregatedFormulasComponent, NodeAggregatedInfoComponent, NodeAggregatedQualityScoreComponent, NodeAggregationLogsComponent, NodeCsvExportConfirmComponent, NodeCsvPreviewComponent, NodeCsvSelectHeadersComponent, NodeIconComponent, NodeJLogModelsComponent, NodeJsonldComponent, NodeJsonldSchemaComponent, NodeKeyState, NodeLinkComponent, NodeLogsFileComponent, NodeLogsModelsComponent, NodeLogsTimeComponent, NodeMissingLookupFactorsComponent, NodeQualityScore, NodeRecommendationsComponent, NodeSelectComponent, NodeValueDetailsComponent, PipelineStagesProgressComponent, PluralizePipe, PopoverComponent, PopoverConfirmComponent, PrecisionPipe, RelatedNodeResult, RemoveMarkdownPipe, RepeatPipe, Repository, ResizedDirective, ResizedEvent, ResponsiveService, SchemaInfoComponent, SchemaVersionLinkComponent, SearchExtendComponent, ShelfDialogComponent, ShellComponent, SiteNodesKeyGroup, SitesManagementChartComponent, SitesMapsComponent, SitesNodesComponent, SkeletonTextComponent, SocialTagsComponent, SortByPipe, SortSelectComponent, SumPipe, TagsInputDirective, Template, TermsPropertyContentComponent, TermsSubClassOfContentComponent, TermsUnitsDescriptionComponent, ThousandSuffixesPipe, ThousandsPipe, TimesPipe, ToastComponent, UncapitalizePipe, addPolygonToFeature, afterBarDrawPlugin, allCountriesQuery, allGroups, allOptions, availableProperties, axisHoverPlugin, backgroundHoverPlugin, baseApiUrl, baseUrl, bottom, buildSummary, bytesSize, calculateCycleDuration, calculateCycleDurationEnabled, calculateCycleStartDate, calculateCycleStartDateEnabled, capitalize, changelogUrl, clustererImage, code, colorToRgba, compoundToHtml, computeKeys, computeTerms, contactUsEmail, contactUsLink, convertToSvg, coordinatesToPoint, copyObject, countGroupVisibleNodes, countriesQuery, createMarker, cropsQuery, d3ellipse, d3wrap, dataPathLabel, dataPathToKey, dataVersionHeader, dataVersionHeaderKey, defaultFeature, defaultLabel, defaultSuggestionType, defaultTicksFont, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadPng, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupBlankNodesByTermIdentity, groupChanged, groupDataByCategory, groupJLogByField, groupJLogByTerm, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, ignoreKeys, increaseScaleLimits, initialFilterState, injectResizeEvent$, inputGroupsTermTypes, isAddPropertyEnabled, isChrome, isDateBetween, isEqual, isExternal, isKeyClosedVisible, isKeyHidden, isMaxStage, isMethodModelAllowed, isNonNodeModelKey, isSchemaIri, isScrolledBelow, isState, isTermTypeAllowed, isValidKey, jLogModelCount, keyToDataPath, levels, listColor, listColorContinuous, listColorWithAlpha, loadMapApi, locationQuery, logToCsv, logValueArray, logsKey, lollipopChartPlugin, lookupUrl, mapFilterData, mapsUrl, markerIcon, markerPie, matchAggregatedQuery, matchAggregatedValidatedQuery, matchBoolPrefixQuery, matchCountry, matchExactQuery, matchGlobalRegion, matchId, matchNameNormalized, matchNestedKey, matchPhrasePrefixQuery, matchPhraseQuery, matchPrimaryProductQuery, matchQuery, matchRegex, matchRegion, matchTermType, matchType, maxAreaSize, measurementValue, mergeDataWithHeaders, methodTierOrder, migrationErrorMessage, migrationsUrl, modelCount, modelKeyParams, modelParams, models, multiMatchQuery, nestedProperty, nestingEnabled, nestingTypeEnabled, noValue, nodeAvailableProperties, nodeById, nodeColours, nodeDataState, nodeDataStates, nodeDataVersion, nodeId, nodeIdWithoutDataVersion, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeRequestId, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeTypeIconSchema, nodeUrl, nodeUrlParams, nodeVersion, nodeVersionKey, nodesByState, nodesByType, numberGte, optionsFromGroup, parentKey, parentProperty, parseColor, parseData, parseDataPath, parseLines, parseMessage, parseNewValue, pluralize, pointToCoordinates, polygonBounds, polygonToCoordinates, polygonToMap, polygonsFromFeature, populateWithTrackIdsFilterData, postGuideEvent, primaryProduct, productsQuery, propertyError, propertyId, recursiveProperties, refToSchemaType, refreshPropertyKeys, regionsQuery, registerChart, repeat, reportIssueLink, reportIssueUrl, safeJSONParse, safeJSONStringify, schemaBaseUrl, schemaDataBaseUrl, schemaLink, schemaRequiredProperties, schemaTypeToDefaultValue, scrollToEl, scrollTop, searchFilterData, searchableTypes, siblingProperty, simplifyContributions, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, subValueKeys, suggestMatchQuery, suggestQuery, sumValues, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toTextParts, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
6213
+ export type { AfterBarDrawSettings, AxisHoverSettings, BarChartDataItem, ButtonGroupItem, ChartExportMetadata, ContributionChartDataItem, ContributionTooltipData, FilterData, FilterElement, FilterFn, FilterGroup, FilterOption, FilterState, HistogramChartDataItem, IBlankNodeIdentityGroup, IBlankNodeIdentityRow, IBlankNodeLog, IBlankNodeLogSubValue, ICalculationsModel, ICalculationsModelsParams, ICalculationsRequirementsParams, IChartExportFormat, ICloseMessage, IConfigModel, IContributionCategory, ICustomValidationRules, ICycleJSONLDExtended, IEmissionCategory, IErrorProperty, IFeature, IFeatureCollection, IFileUploadError, IFilesDropped, IFormulaTextPart, IFormulaVariable, IGeometryCollection, IGlossaryMigration, IGlossaryMigrations, IGroupedKeys, IGroupedNode, IGroupedNodes, IGroupedNodesValue, IGroupedNodesValues, IIdentityScalar, IIdentitySegment, IImpactAssessmentJSONLDExtended, IIssueParams, IJLogBlankNode, IJLogModelColumn, IJLogModelRun, IJLogTermGroup, IJSONData, IJSONNode, ILine, ILog, IMarker, IMessage, IMobileShellMenuButton, INavigationMenuLink, INewProperty, INodeContributions, INodeErrorLog, INodeHeaders, INodeLogs, INodeMissingLookupLog, INodeProperty, INodeRequestParams, INodeTermLog, INodeTermLogs, INonBlankNodeLog, IPolygonMap, IRelatedNode, IRenderedFormula, ISearchParams, ISearchResultExtended, ISearchResults, IShellMenuButton, ISiteJSONLDExtended, IStoredNode, ISummary, ISummaryError, IToast, IValidationError, LollipopPluginSettings, RgbColor, SelectValue, SortOption, SortSelectEvent, SortSelectOrder, blankNodesTypeValue, chartExportFn, chartTooltipContentFn, contributions, feature, horizontalTooltipData, modelKey, nodeContributionsSimplified, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, validationErrorKeyword, validationErrorLevel, validationErrorParam };