@hestia-earth/ui-components 0.43.11 → 0.43.13

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.11",
3
+ "version": "0.43.13",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -57,7 +57,7 @@ declare const urlConfig: (baseUrl?: string) => IUrlConfig;
57
57
  * primary entry point). They are kept structurally compatible on purpose.
58
58
  */
59
59
  type validationErrorLevel = 'error' | 'warning';
60
- type validationErrorParam = 'missingProperty' | 'type' | 'term' | 'termType' | 'termIds' | 'model' | 'product' | 'range' | 'node' | 'allowedValues' | 'allowedValue' | 'additionalProperty' | 'expected' | 'default' | 'current' | 'percentage' | 'keys' | 'threshold' | 'outliers' | 'country' | 'min' | 'max' | 'defaultSource' | 'source' | 'group' | 'message' | 'distance' | 'siteType' | 'products' | 'units' | 'duplicatedIndexes' | 'invalidCoordinates' | 'ids' | 'limit' | 'delta';
60
+ type validationErrorParam = 'missingProperty' | 'type' | 'term' | 'termType' | 'termIds' | 'model' | 'product' | 'range' | 'node' | 'allowedValues' | 'allowedValue' | 'additionalProperty' | 'expected' | 'default' | 'current' | 'percentage' | 'keys' | 'threshold' | 'outliers' | 'country' | 'min' | 'max' | 'mu' | 'sd' | 'defaultSource' | 'source' | 'group' | 'message' | 'distance' | 'siteType' | 'products' | 'units' | 'duplicatedIndexes' | 'invalidCoordinates' | 'ids' | 'limit' | 'delta';
61
61
  type validationErrorKeyword = 'required' | 'type' | 'if' | 'then' | 'not';
62
62
  interface ICustomValidationRules {
63
63
  const?: any;
@@ -10,6 +10,8 @@ import * as rxjs from 'rxjs';
10
10
  import { Observable, ReplaySubject } from 'rxjs';
11
11
  import { PlacementArray } from '@ng-bootstrap/ng-bootstrap';
12
12
  import * as node_modules_chart_js_dist_types_basic from 'node_modules/chart.js/dist/types/basic';
13
+ import * as chartjs_plugin_annotation from 'chartjs-plugin-annotation';
14
+ import { AnnotationOptions } from 'chartjs-plugin-annotation';
13
15
  import * as node_modules_chart_js_dist_types_utils from 'node_modules/chart.js/dist/types/utils';
14
16
  import { Selection } from 'd3-selection';
15
17
  import { HttpClient, HttpHeaders } from '@angular/common/http';
@@ -34,7 +36,6 @@ import * as _angular_cdk_overlay from '@angular/cdk/overlay';
34
36
  import { ConnectedPosition } from '@angular/cdk/overlay';
35
37
  import { ResizeEvent } from 'angular-resizable-element';
36
38
  import { IFormula } from '@hestia-earth/aggregation-engine';
37
- import * as chartjs_plugin_annotation from 'chartjs-plugin-annotation';
38
39
  export * from '@hestia-earth/ui-components/katex';
39
40
 
40
41
  declare class HeAuthService {
@@ -661,42 +662,46 @@ declare class DistributionChartComponent {
661
662
  */
662
663
  protected readonly maxPercentile: _angular_core.InputSignal<number>;
663
664
  protected readonly config: _angular_core.InputSignal<Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
665
+ /**
666
+ * Parametric mode: the mean of the distribution. Set `mu` and `sd` to plot the normal curve
667
+ * instead of binning `distribution` into a histogram — used where only the parameters are known
668
+ * and there are no samples to bin.
669
+ */
670
+ protected readonly mu: _angular_core.InputSignal<number>;
671
+ /**
672
+ * Parametric mode: the standard deviation of the distribution. See `mu`.
673
+ */
674
+ protected readonly sd: _angular_core.InputSignal<number>;
675
+ /**
676
+ * Parametric mode: lower bound of the confidence interval to shade.
677
+ */
678
+ protected readonly intervalMin: _angular_core.InputSignal<number>;
679
+ /**
680
+ * Parametric mode: upper bound of the confidence interval to shade.
681
+ */
682
+ protected readonly intervalMax: _angular_core.InputSignal<number>;
683
+ /**
684
+ * Parametric mode: floor for the drawn range, for a quantity that cannot go below it — pass `0`
685
+ * for a physical amount. Left unset the curve is drawn symmetrically about `mu`.
686
+ */
687
+ protected readonly minX: _angular_core.InputSignal<number>;
688
+ /**
689
+ * `sd` must be strictly positive: a zero or negative deviation makes the PDF a division by zero.
690
+ */
691
+ private readonly parametric;
692
+ private readonly curve;
664
693
  private readonly maxPercentileValue;
665
694
  private readonly groupedData;
666
695
  private readonly singlePoint;
667
696
  private readonly defaultConfig;
668
- protected readonly dataConfig: _angular_core.Signal<{
669
- datasets: ({
670
- label: string;
671
- data: any[];
672
- backgroundColor: string;
673
- borderColor: string;
674
- borderWidth: number;
675
- type: "bar";
676
- fill?: undefined;
677
- pointRadius?: undefined;
678
- } | {
679
- label: string;
680
- data: any[];
681
- backgroundColor: string;
682
- borderColor: string;
683
- borderWidth: number;
684
- fill: false;
685
- pointRadius: number;
686
- type: "line";
687
- } | {
688
- label: string;
689
- data: number[];
690
- fill: false;
691
- borderColor: string;
692
- backgroundColor: string;
693
- pointRadius: number;
694
- showLine: false;
695
- type: "line";
696
- tension: number;
697
- })[];
698
- labels: any[];
699
- }>;
697
+ /**
698
+ * The x axis is `linear` here, not the category axis the histogram uses: the curve is `{x, y}`
699
+ * points, and the annotations position the interval and the marker at real x values.
700
+ */
701
+ private readonly parametricConfig;
702
+ private readonly histogramData;
703
+ private readonly parametricData;
704
+ protected readonly dataConfig: _angular_core.Signal<ChartData<"line" | "bar", (number | [number, number] | chart_js.Point)[], unknown>>;
700
705
  protected readonly configuration: _angular_core.Signal<Readonly<{
701
706
  type: "line";
702
707
  options: {
@@ -725,7 +730,7 @@ declare class DistributionChartComponent {
725
730
  };
726
731
  };
727
732
  };
728
- }> & {
733
+ }> & (({
729
734
  options: {
730
735
  scales: {
731
736
  x: {
@@ -758,9 +763,47 @@ declare class DistributionChartComponent {
758
763
  };
759
764
  };
760
765
  };
761
- } & Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
766
+ } | {
767
+ options: {
768
+ plugins: {
769
+ annotation: {
770
+ annotations: Record<string, AnnotationOptions>;
771
+ };
772
+ };
773
+ scales: {
774
+ x: {
775
+ type: "linear";
776
+ display: true;
777
+ ticks: {
778
+ font: {
779
+ family: string;
780
+ size: number;
781
+ weight: number;
782
+ };
783
+ color: string;
784
+ callback: (this: chart_js.Scale, value: string | number) => string;
785
+ };
786
+ title: {
787
+ display: true;
788
+ text: string;
789
+ };
790
+ };
791
+ y: {
792
+ ticks: {
793
+ display: false;
794
+ };
795
+ grid: {
796
+ display: false;
797
+ };
798
+ title: {
799
+ display: false;
800
+ };
801
+ };
802
+ };
803
+ };
804
+ }) & Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>)>;
762
805
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DistributionChartComponent, never>;
763
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DistributionChartComponent, "he-distribution-chart", ["distributionChart"], { "distribution": { "alias": "distribution"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "nbBins": { "alias": "nbBins"; "required": false; "isSignal": true; }; "maxPercentile": { "alias": "maxPercentile"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
806
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DistributionChartComponent, "he-distribution-chart", ["distributionChart"], { "distribution": { "alias": "distribution"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "nbBins": { "alias": "nbBins"; "required": false; "isSignal": true; }; "maxPercentile": { "alias": "maxPercentile"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "mu": { "alias": "mu"; "required": false; "isSignal": true; }; "sd": { "alias": "sd"; "required": false; "isSignal": true; }; "intervalMin": { "alias": "intervalMin"; "required": false; "isSignal": true; }; "intervalMax": { "alias": "intervalMax"; "required": false; "isSignal": true; }; "minX": { "alias": "minX"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
764
807
  }
765
808
 
766
809
  declare class LineChartComponent {
@@ -3086,7 +3129,7 @@ declare const formatCustomErrorMessage: typeof formatter$1.formatCustomErrorMess
3086
3129
  declare const formatError: typeof formatter$1.formatError;
3087
3130
 
3088
3131
  type validationErrorLevel = 'error' | 'warning';
3089
- type validationErrorParam = 'missingProperty' | 'type' | 'term' | 'termType' | 'termIds' | 'model' | 'product' | 'range' | 'node' | 'allowedValues' | 'allowedValue' | 'additionalProperty' | 'expected' | 'default' | 'current' | 'percentage' | 'keys' | 'threshold' | 'outliers' | 'country' | 'min' | 'max' | 'defaultSource' | 'source' | 'group' | 'message' | 'distance' | 'siteType' | 'products' | 'units' | 'duplicatedIndexes' | 'invalidCoordinates' | 'ids' | 'limit' | 'delta';
3132
+ type validationErrorParam = 'missingProperty' | 'type' | 'term' | 'termType' | 'termIds' | 'model' | 'product' | 'range' | 'node' | 'allowedValues' | 'allowedValue' | 'additionalProperty' | 'expected' | 'default' | 'current' | 'percentage' | 'keys' | 'threshold' | 'outliers' | 'country' | 'min' | 'max' | 'mu' | 'sd' | 'defaultSource' | 'source' | 'group' | 'message' | 'distance' | 'siteType' | 'products' | 'units' | 'duplicatedIndexes' | 'invalidCoordinates' | 'ids' | 'limit' | 'delta';
3090
3133
  type validationErrorKeyword = 'required' | 'type' | 'if' | 'then' | 'not';
3091
3134
  interface ICustomValidationRules {
3092
3135
  const?: any;
@@ -3718,6 +3761,30 @@ interface IFormulaTextPart {
3718
3761
  */
3719
3762
  declare const toTextParts: (value?: string) => IFormulaTextPart[];
3720
3763
 
3764
+ /**
3765
+ * A titled block that can be folded away, with room for a control beside its heading.
3766
+ *
3767
+ * Presentation only: it holds no opinion on what it contains, so several of them stacked read as
3768
+ * one document a reader can collapse section by section.
3769
+ */
3770
+ declare class CollapsibleBlockComponent {
3771
+ /**
3772
+ * The label above the content.
3773
+ */
3774
+ readonly heading: _angular_core.InputSignal<string>;
3775
+ /**
3776
+ * Whether the block can be folded away. Turn it off and it renders as a plain titled block.
3777
+ */
3778
+ readonly collapsible: _angular_core.InputSignal<boolean>;
3779
+ /**
3780
+ * Whether the content is shown. Two-way, so the caller can fold a block from outside.
3781
+ */
3782
+ readonly open: _angular_core.ModelSignal<boolean>;
3783
+ protected toggle(): void;
3784
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CollapsibleBlockComponent, never>;
3785
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CollapsibleBlockComponent, "he-collapsible-block", never, { "heading": { "alias": "heading"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, never, ["[blockActions]", "*"], true, never>;
3786
+ }
3787
+
3721
3788
  /**
3722
3789
  * Displays a set of formulas with the variables documented under them, and a switch between the
3723
3790
  * symbolic and the substituted view.
@@ -3754,10 +3821,19 @@ declare class FormulaBlockComponent {
3754
3821
  * several blocks: they share one state, so repeating the switch only repeats the same control.
3755
3822
  */
3756
3823
  readonly showToggle: _angular_core.InputSignal<boolean>;
3824
+ /**
3825
+ * Whether the block can be folded away, so a reader can put aside the part they are not reading.
3826
+ */
3827
+ readonly collapsible: _angular_core.InputSignal<boolean>;
3828
+ /**
3829
+ * Whether the block is unfolded. Two-way, so the caller can fold it from outside.
3830
+ */
3831
+ readonly open: _angular_core.ModelSignal<boolean>;
3757
3832
  /**
3758
3833
  * Whether the substituted view is shown. Two-way, so the caller can render accordingly.
3759
3834
  */
3760
3835
  readonly substituted: _angular_core.ModelSignal<boolean>;
3836
+ protected readonly blockHeading: _angular_core.Signal<string>;
3761
3837
  protected readonly toggleId: string;
3762
3838
  /**
3763
3839
  * The formulas with their documentation text split into plain runs and inline math, and the
@@ -3779,7 +3855,7 @@ declare class FormulaBlockComponent {
3779
3855
  }[]>;
3780
3856
  protected toggle(): void;
3781
3857
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormulaBlockComponent, never>;
3782
- 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>;
3858
+ 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; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "substituted": { "alias": "substituted"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "substituted": "substitutedChange"; }, never, never, true, never>;
3783
3859
  }
3784
3860
 
3785
3861
  declare const GUIDE_ENABLED: InjectionToken<boolean>;
@@ -5088,6 +5164,20 @@ declare class NodeAggregatedInfoComponent {
5088
5164
  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>;
5089
5165
  }
5090
5166
 
5167
+ /**
5168
+ * What a rule computes: the aggregated value, or one of the weights the values are combined by.
5169
+ */
5170
+ type IFormulaGroup = 'value' | 'weights';
5171
+ /**
5172
+ * One column of the contributors table, named by the symbol the formula reads it with, so the
5173
+ * table and the formula above it use the same names.
5174
+ */
5175
+ interface IContributorColumn {
5176
+ symbol: string;
5177
+ description?: string;
5178
+ column: string;
5179
+ }
5180
+
5091
5181
  declare class NodeAggregatedFormulasComponent {
5092
5182
  /**
5093
5183
  * The `termType` of the aggregation's primary product, which selects the product-specific page.
@@ -5141,16 +5231,32 @@ declare class NodeAggregatedFormulasComponent {
5141
5231
  private applies;
5142
5232
  protected readonly hasSubstitutions: _angular_core.Signal<boolean>;
5143
5233
  /**
5144
- * Each page with its formulas, rendered symbolically or with values substituted, and the
5145
- * variables documented under each. A variable with nothing to substitute is flagged, so the
5146
- * reader can tell a value that was not recorded from one that is genuinely absent.
5234
+ * The rules that produced this value, grouped by what each one computes.
5147
5235
  */
5148
5236
  protected readonly sections: _angular_core.Signal<{
5149
- formulas: IFormula[];
5237
+ id: IFormulaGroup;
5150
5238
  heading: string;
5151
- applies: string;
5152
- page: string;
5239
+ formulas: IFormula[];
5153
5240
  }[]>;
5241
+ /**
5242
+ * The values this one was combined from, as the aggregation recorded them: one row per Cycle or
5243
+ * sub-aggregation, under the symbols the formulas above read them with. Absent where the
5244
+ * contributors were too many to record, which is every aggregation built straight from source
5245
+ * Cycles - their number is shown instead.
5246
+ */
5247
+ protected readonly contributors: _angular_core.Signal<{
5248
+ rows: {
5249
+ node: {
5250
+ '@type': NodeType;
5251
+ '@id': string;
5252
+ };
5253
+ id: string;
5254
+ label: string;
5255
+ values: (string | undefined)[];
5256
+ }[];
5257
+ columns: IContributorColumn[];
5258
+ count?: number;
5259
+ }>;
5154
5260
  protected readonly renderedSections: _angular_core.Signal<{
5155
5261
  formulas: {
5156
5262
  rendered: string;
@@ -5163,9 +5269,8 @@ declare class NodeAggregatedFormulasComponent {
5163
5269
  note: string;
5164
5270
  }[];
5165
5271
  }[];
5272
+ id: IFormulaGroup;
5166
5273
  heading: string;
5167
- applies: string;
5168
- page: string;
5169
5274
  }[]>;
5170
5275
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodeAggregatedFormulasComponent, never>;
5171
5276
  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; }; "subAggregation": { "alias": "subAggregation"; "required": false; "isSignal": true; }; "substituted": { "alias": "substituted"; "required": false; "isSignal": true; }; }, { "substituted": "substitutedChange"; }, never, never, true, never>;
@@ -6164,6 +6269,7 @@ declare class SitesNodesComponent {
6164
6269
  source?: _hestia_earth_schema.Source;
6165
6270
  impactAssessment?: _hestia_earth_schema.ImpactAssessment;
6166
6271
  inputs?: _hestia_earth_schema.Input[];
6272
+ inputsCompleteness?: boolean;
6167
6273
  transport?: _hestia_earth_schema.Transport[];
6168
6274
  functionalArea?: number;
6169
6275
  schemaVersion?: string;
@@ -6237,5 +6343,5 @@ declare class TermsUnitsDescriptionComponent {
6237
6343
  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>;
6238
6344
  }
6239
6345
 
6240
- 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 };
6346
+ export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBlockComponent, 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 };
6241
6347
  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 };