@hestia-earth/ui-components 0.40.2 → 0.40.4

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.
@@ -120,16 +120,49 @@ interface ChartExportMetadata {
120
120
  declare const convertToSvg: (config: Partial<ChartConfiguration>, metadata?: ChartExportMetadata) => Promise<string>;
121
121
  declare const exportAsSVG: (config: Partial<ChartConfiguration>, metadata: ChartExportMetadata) => Promise<void>;
122
122
  declare const downloadSvg: (svgElement: HTMLElement) => void;
123
+ declare const downloadPng: (svgElement: HTMLElement, { width, height }?: {
124
+ width?: number;
125
+ height?: number;
126
+ }) => Promise<void>;
123
127
 
124
128
  declare const registerChart: (items?: ChartComponentLike[]) => () => void;
125
129
 
130
+ declare class ChartConfigurationDirective {
131
+ private readonly _elementRef;
132
+ private _chart;
133
+ private readonly _observer;
134
+ /**
135
+ * The chart configuration.
136
+ * This is used to initialize the chart.
137
+ *
138
+ * @param configuration The chart configuration
139
+ */
140
+ protected readonly chartConfiguration: _angular_core.InputSignal<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>;
141
+ /**
142
+ * The container element of the chart.
143
+ * This is used to observe the size of the container and resize the chart accordingly. (chart.js update charts only on the window resize event)
144
+ * If not provided, the chart will not be resized.
145
+ *
146
+ * @param container The container element of the chart
147
+ */
148
+ protected readonly chartContainer: _angular_core.InputSignal<HTMLElement>;
149
+ constructor();
150
+ private removeChart;
151
+ get chart(): Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>;
152
+ resize(): void;
153
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartConfigurationDirective, never>;
154
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ChartConfigurationDirective, "[chartConfiguration]", ["chart"], { "chartConfiguration": { "alias": "chartConfiguration"; "required": false; "isSignal": true; }; "chartContainer": { "alias": "chartContainer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
155
+ }
156
+
126
157
  declare class ChartComponent {
127
158
  protected readonly data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>;
128
159
  protected readonly config: _angular_core.InputSignal<Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
129
160
  protected readonly showExportButton: _angular_core.InputSignal<boolean>;
130
161
  readonly exporting: _angular_core.WritableSignal<boolean>;
162
+ protected readonly chartRef: _angular_core.Signal<ChartConfigurationDirective>;
131
163
  protected readonly configuration: _angular_core.Signal<Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
132
164
  exportAsSvg(config?: Partial<ChartExportMetadata>): Promise<void>;
165
+ exportAsPng(): void;
133
166
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartComponent, never>;
134
167
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartComponent, "he-chart", ["chart"], { "data": { "alias": "data"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "showExportButton": { "alias": "showExportButton"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
135
168
  }
@@ -315,15 +348,32 @@ declare class BarChartComponent {
315
348
  };
316
349
  } & Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
317
350
  exportAsSvg(config?: Partial<ChartExportMetadata>): Promise<void>;
351
+ exportAsPng(): void;
318
352
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BarChartComponent, never>;
319
353
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BarChartComponent, "he-bar-chart", ["barChart"], { "title": { "alias": "title"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "datasets": { "alias": "datasets"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "datasetLabel": { "alias": "datasetLabel"; "required": false; "isSignal": true; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "showExportButton": { "alias": "showExportButton"; "required": false; "isSignal": true; }; "showNegativeValues": { "alias": "showNegativeValues"; "required": false; "isSignal": true; }; "maximumValues": { "alias": "maximumValues"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
320
354
  }
321
355
 
356
+ type chartExportFn = (format: string, chart?: ChartComponent) => Promise<void>;
357
+ interface IChartExportFormat {
358
+ extension: string;
359
+ label: string;
360
+ }
361
+ declare const exportFormats: IChartExportFormat[];
322
362
  declare class ChartExportButtonComponent {
363
+ private readonly modalService;
364
+ private readonly modal;
365
+ protected readonly buttonClass: _angular_core.InputSignal<string>;
323
366
  protected readonly chart: _angular_core.InputSignal<ChartComponent>;
324
367
  protected readonly config: _angular_core.InputSignal<ChartExportMetadata>;
368
+ protected readonly exportFormats: _angular_core.InputSignal<IChartExportFormat[]>;
369
+ protected readonly chartExportFn: _angular_core.InputSignal<chartExportFn>;
370
+ protected readonly exportFormat: _angular_core.WritableSignal<string>;
371
+ private defaultDownload;
372
+ protected download(): Promise<void>;
373
+ protected open(): void;
374
+ protected close(): void;
325
375
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartExportButtonComponent, never>;
326
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartExportButtonComponent, "he-chart-export-button", never, { "chart": { "alias": "chart"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
376
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartExportButtonComponent, "he-chart-export-button", never, { "buttonClass": { "alias": "buttonClass"; "required": false; "isSignal": true; }; "chart": { "alias": "chart"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "exportFormats": { "alias": "exportFormats"; "required": false; "isSignal": true; }; "chartExportFn": { "alias": "chartExportFn"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
327
377
  }
328
378
 
329
379
  type chartTooltipContentFn<T> = (data: T) => string;
@@ -501,7 +551,10 @@ type horizontalTooltipData = BarChartDataItem & {
501
551
  declare class HorizontalBarChartComponent extends BarChartComponent {
502
552
  protected readonly tooltipFn: _angular_core.InputSignal<chartTooltipContentFn<BarChartDataItem>>;
503
553
  protected readonly afterBarDrawSettings: _angular_core.InputSignal<AfterBarDrawSettings>;
554
+ protected readonly minHeight: _angular_core.InputSignal<number>;
555
+ protected readonly maxHeight: _angular_core.InputSignal<number>;
504
556
  private readonly tooltip;
557
+ protected readonly height: _angular_core.Signal<number>;
505
558
  protected readonly horizontalConfiguration: _angular_core.Signal<{
506
559
  plugins: (chart_js.Plugin<keyof chart_js.ChartTypeRegistry, node_modules_chart_js_dist_types_basic.AnyObject> | {
507
560
  id: string;
@@ -598,34 +651,7 @@ declare class HorizontalBarChartComponent extends BarChartComponent {
598
651
  platform?: typeof chart_js.BasePlatform;
599
652
  }>;
600
653
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<HorizontalBarChartComponent, never>;
601
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<HorizontalBarChartComponent, "he-horizontal-bar-chart", ["horizontalBarChart"], { "tooltipFn": { "alias": "tooltipFn"; "required": false; "isSignal": true; }; "afterBarDrawSettings": { "alias": "afterBarDrawSettings"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
602
- }
603
-
604
- declare class ChartConfigurationDirective {
605
- private readonly _elementRef;
606
- private _chart;
607
- private readonly _observer;
608
- /**
609
- * The chart configuration.
610
- * This is used to initialize the chart.
611
- *
612
- * @param configuration The chart configuration
613
- */
614
- protected readonly chartConfiguration: _angular_core.InputSignal<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>;
615
- /**
616
- * The container element of the chart.
617
- * This is used to observe the size of the container and resize the chart accordingly. (chart.js update charts only on the window resize event)
618
- * If not provided, the chart will not be resized.
619
- *
620
- * @param container The container element of the chart
621
- */
622
- protected readonly chartContainer: _angular_core.InputSignal<HTMLElement>;
623
- constructor();
624
- private removeChart;
625
- get chart(): Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>;
626
- resize(): void;
627
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartConfigurationDirective, never>;
628
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ChartConfigurationDirective, "[chartConfiguration]", ["chart"], { "chartConfiguration": { "alias": "chartConfiguration"; "required": false; "isSignal": true; }; "chartContainer": { "alias": "chartContainer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
654
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<HorizontalBarChartComponent, "he-horizontal-bar-chart", ["horizontalBarChart"], { "tooltipFn": { "alias": "tooltipFn"; "required": false; "isSignal": true; }; "afterBarDrawSettings": { "alias": "afterBarDrawSettings"; "required": false; "isSignal": true; }; "minHeight": { "alias": "minHeight"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
629
655
  }
630
656
 
631
657
  declare enum ColorPalette {
@@ -1101,7 +1127,7 @@ declare class BlankNodeValueDeltaComponent {
1101
1127
 
1102
1128
  type svgIconSizes = '16' | '20' | '24' | '40' | '48';
1103
1129
  declare const iconSizes: string[];
1104
- type svgIconNames = 'aggregation' | 'api' | 'api-circle' | 'archive' | 'arrow-down' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'autogenerate' | 'autogenerate-circle' | 'aws' | 'ban' | 'bell' | 'bell-with-badge' | 'book' | 'breakdown' | 'bug' | 'buoy' | 'calculation-toolkit' | 'calculator' | 'caret-down' | 'caret-left' | 'caret-right' | 'caret-up' | 'certificate' | 'chart' | 'checkmark' | 'checkmark-circle' | 'checkmark-circle-filled' | 'checkmark-circle-filled-with-shadow' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle' | 'citation' | 'citation-square' | 'clock' | 'cloud' | 'collapse' | 'collapse-panel' | 'commit' | 'community' | 'community-edition' | 'compare' | 'copy' | 'corner-drag' | 'csv-file' | 'cycle' | 'dashboard' | 'data-format' | 'database-wheat' | 'dot-circle' | 'dot-filled' | 'download' | 'drag' | 'edit' | 'edit-withfield' | 'embed' | 'exclamation' | 'exclamation-triangle' | 'exclamation-triangle-filled' | 'export' | 'external-link' | 'feedback' | 'fence' | 'film' | 'filter-funnel' | 'filter-slider' | 'flash' | 'folder' | 'folder-open' | 'foodprocessor' | 'globe-continents' | 'globe-lines' | 'glossary' | 'greenhouse' | 'guide' | 'guide-overlay' | 'help' | 'help-circle' | 'history' | 'home' | 'husk' | 'image' | 'incognito' | 'indexed' | 'info' | 'info-circle' | 'lake' | 'link' | 'list-indented' | 'livestock' | 'loading' | 'loading-bar' | 'loading-circle-filled' | 'loading-circle-filled-withshadow' | 'log' | 'mail' | 'map' | 'menu' | 'messages' | 'messages-with-badge' | 'metrics' | 'migration' | 'minus' | 'model-docs' | 'news' | 'node' | 'notepad' | 'ocean' | 'organisation' | 'overflow-menu' | 'pin' | 'plus' | 'pond' | 'private-eye' | 'private-eye-crossed' | 'private-lock' | 'profile-checkmark' | 'profile-circle' | 'profile-gear' | 'progress' | 'python' | 'refresh' | 'rename' | 'retailer' | 'review' | 'river' | 'save' | 'schema' | 'search' | 'search-with-plus' | 'settings' | 'share' | 'share-socials' | 'shrub' | 'sign-out' | 'slack' | 'socials-gitlab' | 'socials-google' | 'socials-linkedin' | 'socials-linkedin-circle' | 'socials-orcid' | 'socials-orcid-circle' | 'sort-ascending' | 'sort-caret-down-filled' | 'sort-caret-stacked-filled-stacked' | 'sort-caret-up-filled' | 'source' | 'star' | 'table' | 'tag-filled' | 'target' | 'term' | 'textform-list' | 'tool' | 'trash' | 'tree' | 'turn-phone' | 'unit' | 'upload' | 'video' | 'xmark' | 'xmark-circle' | 'xmark-circle-filled' | 'xmark-circle-filled-with-shadow' | 'zip';
1130
+ type svgIconNames = 'aggregation' | 'api' | 'api-circle' | 'archive' | 'arrow-down' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'autogenerate' | 'autogenerate-circle' | 'aws' | 'ban' | 'bell' | 'bell-with-badge' | 'book' | 'breakdown' | 'bug' | 'buoy' | 'calculation-toolkit' | 'calculator' | 'caret-down' | 'caret-left' | 'caret-right' | 'caret-up' | 'certificate' | 'chart' | 'checkmark' | 'checkmark-circle' | 'checkmark-circle-filled' | 'checkmark-circle-filled-with-shadow' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle' | 'citation' | 'citation-square' | 'clock' | 'cloud' | 'collapse' | 'collapse-panel' | 'commit' | 'community' | 'community-edition' | 'compare' | 'copy' | 'corner-drag' | 'csv-file' | 'cycle' | 'dashboard' | 'data-format' | 'database-wheat' | 'dot-circle' | 'dot-filled' | 'download' | 'drag' | 'edit' | 'edit-withfield' | 'embed' | 'exclamation' | 'exclamation-triangle' | 'exclamation-triangle-filled' | 'export' | 'external-link' | 'feedback' | 'fence' | 'film' | 'filter-funnel' | 'filter-slider' | 'flash' | 'folder' | 'folder-open' | 'foodprocessor' | 'globe-continents' | 'globe-lines' | 'glossary' | 'greenhouse' | 'guide' | 'guide-overlay' | 'help' | 'help-circle' | 'history' | 'home' | 'husk' | 'image' | 'incognito' | 'indexed' | 'info' | 'info-circle' | 'lake' | 'link' | 'list-indented' | 'livestock' | 'loading' | 'loading-bar' | 'loading-circle-filled' | 'loading-circle-filled-withshadow' | 'log' | 'mail' | 'map' | 'menu' | 'messages' | 'messages-with-badge' | 'metrics' | 'migration' | 'minus' | 'model-docs' | 'news' | 'node' | 'notepad' | 'ocean' | 'organisation' | 'overflow-menu' | 'pin' | 'plus' | 'pond' | 'private-eye' | 'private-eye-crossed' | 'private-lock' | 'profile-checkmark' | 'profile-circle' | 'profile-gear' | 'progress' | 'python' | 'refresh' | 'rename' | 'retailer' | 'review' | 'river' | 'save' | 'schema' | 'search' | 'search-with-minus' | 'search-with-plus' | 'settings' | 'share' | 'share-socials' | 'shrub' | 'sign-out' | 'slack' | 'socials-gitlab' | 'socials-google' | 'socials-linkedin' | 'socials-linkedin-circle' | 'socials-orcid' | 'socials-orcid-circle' | 'sort-ascending' | 'sort-caret-down-filled' | 'sort-caret-stacked-filled-stacked' | 'sort-caret-up-filled' | 'source' | 'star' | 'table' | 'tag-filled' | 'target' | 'term' | 'textform-list' | 'tool' | 'trash' | 'tree' | 'turn-phone' | 'unit' | 'upload' | 'video' | 'xmark' | 'xmark-circle' | 'xmark-circle-filled' | 'xmark-circle-filled-with-shadow' | 'zip';
1105
1131
  declare const icons: svgIconNames[];
1106
1132
 
1107
1133
  declare class ClipboardComponent {
@@ -1543,6 +1569,7 @@ declare class SearchExtendComponent {
1543
1569
  protected readonly disabled: _angular_core.InputSignal<boolean>;
1544
1570
  protected readonly placeholder: _angular_core.InputSignal<string>;
1545
1571
  protected readonly class: _angular_core.InputSignal<string>;
1572
+ protected readonly collapsedClass: _angular_core.InputSignal<string>;
1546
1573
  protected readonly searchText: _angular_core.OutputEmitterRef<any>;
1547
1574
  protected readonly extended: _angular_core.WritableSignal<boolean>;
1548
1575
  private extend;
@@ -1550,7 +1577,7 @@ declare class SearchExtendComponent {
1550
1577
  protected clear(): void;
1551
1578
  protected submit(): void;
1552
1579
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchExtendComponent, never>;
1553
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchExtendComponent, "he-search-extend", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "searchText": "searchText"; }, never, never, true, never>;
1580
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchExtendComponent, "he-search-extend", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; "collapsedClass": { "alias": "collapsedClass"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "searchText": "searchText"; }, never, never, true, never>;
1554
1581
  }
1555
1582
 
1556
1583
  declare class SkeletonTextComponent {
@@ -3543,13 +3570,7 @@ interface IChartInputLog {
3543
3570
  units: string;
3544
3571
  weightedValue: number;
3545
3572
  value: number;
3546
- operations: {
3547
- id: string;
3548
- weightedValue: number;
3549
- label: string;
3550
- units: string;
3551
- value: number;
3552
- }[];
3573
+ operations: IChartInputLog[];
3553
3574
  }
3554
3575
  interface IChartData {
3555
3576
  indicator: string;
@@ -3733,7 +3754,6 @@ interface ILog$1 {
3733
3754
  subLogs?: ILog$1[];
3734
3755
  }
3735
3756
  declare class ImpactAssessmentsIndicatorBreakdownChartComponent {
3736
- private readonly domSanitizer;
3737
3757
  private readonly searchService;
3738
3758
  private readonly nodeService;
3739
3759
  private readonly responsiveService;
@@ -3768,7 +3788,6 @@ declare class ImpactAssessmentsIndicatorBreakdownChartComponent {
3768
3788
  inputsValue?: number;
3769
3789
  subLogs?: ILog$1[];
3770
3790
  }[]>;
3771
- protected readonly csvContent: _angular_core.Signal<_angular_platform_browser.SafeResourceUrl>;
3772
3791
  private readonly id;
3773
3792
  protected readonly downloadFilename: _angular_core.Signal<string>;
3774
3793
  protected readonly displayValue: _angular_core.WritableSignal<boolean>;
@@ -3778,6 +3797,9 @@ declare class ImpactAssessmentsIndicatorBreakdownChartComponent {
3778
3797
  index: number;
3779
3798
  }>;
3780
3799
  protected readonly afterBarDrawSettings: _angular_core.Signal<AfterBarDrawSettings>;
3800
+ protected readonly exportFormats: IChartExportFormat[];
3801
+ private readonly csvContent;
3802
+ protected readonly chartExportFn: chartExportFn;
3781
3803
  constructor();
3782
3804
  protected trackByLog({ blankNodeTermId, modelId, impactTermId }: ILog$1): string;
3783
3805
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ImpactAssessmentsIndicatorBreakdownChartComponent, never>;
@@ -4813,8 +4835,7 @@ declare class SitesManagementChartComponent {
4813
4835
  x: number;
4814
4836
  y: any;
4815
4837
  }[];
4816
- backgroundColor: any;
4817
- borderColor: any;
4838
+ backgroundColor: (context: any) => any;
4818
4839
  barPercentage: number;
4819
4840
  barThickness: "flex";
4820
4841
  order: number;
@@ -5047,5 +5068,5 @@ declare class TermsUnitsDescriptionComponent {
5047
5068
  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>;
5048
5069
  }
5049
5070
 
5050
- export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBoxComponent, ColorPalette, CompoundDirective, CompoundPipe, ControlValueAccessor, CycleNodesKeyGroup, CyclesCompletenessComponent, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, EngineModelsVersionLinkComponent, EngineOrchestratorEditComponent, EngineRequirementsFormComponent, FileSizePipe, FileUploadErrorKeys, FilesErrorSummaryComponent, FilesFormComponent, FilesFormEditableComponent, FilesUploadErrorsComponent, FilterAccordionComponent, GUIDE_ENABLED, GetPipe, GlossaryMigrationFormat, GuideOverlayComponent, HESvgIconComponent, 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, MendeleySearchResult, MobileShellComponent, NavigationMenuComponent, NoExtPipe, NodeAggregatedComponent, NodeAggregatedInfoComponent, NodeAggregatedQualityScoreComponent, NodeCsvExportConfirmComponent, NodeCsvPreviewComponent, NodeCsvSelectHeadersComponent, NodeIconComponent, NodeJsonldComponent, NodeJsonldSchemaComponent, NodeKeyState, NodeLinkComponent, NodeLogsFileComponent, NodeLogsModelsComponent, NodeLogsTimeComponent, NodeMissingLookupFactorsComponent, NodeQualityScore, NodeRecommendationsComponent, NodeSelectComponent, NodeValueDetailsComponent, PluralizePipe, PopoverComponent, PopoverConfirmComponent, PrecisionPipe, RelatedNodeResult, RemoveMarkdownPipe, RepeatPipe, Repository, ResizedDirective, ResizedEvent, ResponsiveService, SchemaInfoComponent, SchemaVersionLinkComponent, SearchExtendComponent, ShelfDialogComponent, ShellComponent, SitesManagementChartComponent, SitesMapsComponent, SitesNodesComponent, SkeletonTextComponent, SocialTagsComponent, SortByPipe, SortSelectComponent, TagsInputDirective, Template, TermsPropertyContentComponent, TermsSubClassOfContentComponent, TermsUnitsDescriptionComponent, ThousandSuffixesPipe, ThousandsPipe, TimesPipe, ToastComponent, UncapitalizePipe, addPolygonToFeature, afterBarDrawPlugin, allCountriesQuery, allGroups, allOptions, arrayValue, availableProperties, backgroundHoverPlugin, baseApiUrl, baseUrl, bottom, buildSummary, bytesSize, calculateCycleDuration, calculateCycleDurationEnabled, calculateCycleStartDate, calculateCycleStartDateEnabled, capitalize, changelogUrl, clustererImage, code, colorToRgba, compoundToHtml, computeKeys, computeTerms, contactUsEmail, contactUsLink, convertToSvg, coordinatesToPoint, copyObject, countriesQuery, createMarker, cropsQuery, d3ellipse, d3wrap, dataPathLabel, dataPathToKey, defaultFeature, defaultLabel, defaultSuggestionType, defaultSvgIconSize, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorHasError, errorHasWarning, errorText, evaluateSuccess, exportAsSVG, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode, filterError, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupChanged, groupLogsByModel, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, guidePageId, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys, initialFilterState, injectResizeEvent$, inputGroupsTermTypes, isAddPropertyEnabled, isChrome, isDateBetween, isEqual, isExternal, isGroupVisible, isKeyClosedVisible, isKeyHidden, isMaxStage, isMethodModelAllowed, isMigrationError, isMissingOneOfError, isMissingPropertyError, isNonNodeModelKey, isSchemaIri, isScrolledBelow, isState, isTermTypeAllowed, isValidKey, keyToDataPath, levels, listColor, listColorContinuous, listColorWithAlpha, loadMapApi, loadSvgSprite, 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, missingNodeErrors, modelCount, modelKeyParams, modelParams, models, multiMatchQuery, nestedProperty, nestingEnabled, nestingTypeEnabled, nodeAvailableProperties, nodeById, nodeColours, nodeDataState, nodeId, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeUrl, nodeUrlParams, nodeVersion, 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, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueTypeToDefault, waitFor, wildcardQuery };
5051
- export type { AfterBarDrawSettings, BarChartDataItem, ButtonGroupItem, ChartExportMetadata, FilterData, FilterElement, FilterFn, FilterGroup, FilterOption, FilterState, HistogramChartDataItem, IBlankNodeLog, IBlankNodeLogSubValue, ICalculationsModel, ICalculationsModelsParams, ICalculationsRequirementsParams, ICloseMessage, IConfigModel, ICustomValidationRules, ICycleJSONLDExtended, IErrorProperty, IFeature, IFeatureCollection, IFileUploadError, IGeometryCollection, IGlossaryMigration, IGlossaryMigrations, IGroupedKeys, IGroupedNode, IGroupedNodes, IGroupedNodesValue, IGroupedNodesValues, IImpactAssessmentJSONLDExtended, IJSONData, IJSONNode, ILine, ILog, IMarker, IMessage, IMobileShellMenuButton, INavigationMenuLink, INewProperty, INodeErrorLog, INodeHeaders, INodeLogs, INodeMissingLookupLog, INodeProperty, INodeRequestParams, INodeTermLog, INodeTermLogs, INonBlankNodeLog, IPolygonMap, IRelatedNode, ISearchParams, ISearchResultExtended, ISearchResults, IShellMenuButton, ISiteJSONLDExtended, IStoredNode, ISummary, ISummaryError, IToast, IValidationError, IValidationErrorWithIndex, LollipopPluginSettings, RgbColor, SelectValue, SortOption, SortSelectEvent, SortSelectOrder, blankNodesTypeValue, chartTooltipContentFn, feature, horizontalTooltipData, modelKey, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, svgIconNames, svgIconSizes, validationErrorKeyword, validationErrorLevel, validationErrorParam };
5071
+ export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBoxComponent, ColorPalette, CompoundDirective, CompoundPipe, ControlValueAccessor, CycleNodesKeyGroup, CyclesCompletenessComponent, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, EngineModelsVersionLinkComponent, EngineOrchestratorEditComponent, EngineRequirementsFormComponent, FileSizePipe, FileUploadErrorKeys, FilesErrorSummaryComponent, FilesFormComponent, FilesFormEditableComponent, FilesUploadErrorsComponent, FilterAccordionComponent, GUIDE_ENABLED, GetPipe, GlossaryMigrationFormat, GuideOverlayComponent, HESvgIconComponent, 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, MendeleySearchResult, MobileShellComponent, NavigationMenuComponent, NoExtPipe, NodeAggregatedComponent, NodeAggregatedInfoComponent, NodeAggregatedQualityScoreComponent, NodeCsvExportConfirmComponent, NodeCsvPreviewComponent, NodeCsvSelectHeadersComponent, NodeIconComponent, NodeJsonldComponent, NodeJsonldSchemaComponent, NodeKeyState, NodeLinkComponent, NodeLogsFileComponent, NodeLogsModelsComponent, NodeLogsTimeComponent, NodeMissingLookupFactorsComponent, NodeQualityScore, NodeRecommendationsComponent, NodeSelectComponent, NodeValueDetailsComponent, PluralizePipe, PopoverComponent, PopoverConfirmComponent, PrecisionPipe, RelatedNodeResult, RemoveMarkdownPipe, RepeatPipe, Repository, ResizedDirective, ResizedEvent, ResponsiveService, SchemaInfoComponent, SchemaVersionLinkComponent, SearchExtendComponent, ShelfDialogComponent, ShellComponent, SitesManagementChartComponent, SitesMapsComponent, SitesNodesComponent, SkeletonTextComponent, SocialTagsComponent, SortByPipe, SortSelectComponent, TagsInputDirective, Template, TermsPropertyContentComponent, TermsSubClassOfContentComponent, TermsUnitsDescriptionComponent, ThousandSuffixesPipe, ThousandsPipe, TimesPipe, ToastComponent, UncapitalizePipe, addPolygonToFeature, afterBarDrawPlugin, allCountriesQuery, allGroups, allOptions, arrayValue, availableProperties, backgroundHoverPlugin, baseApiUrl, baseUrl, bottom, buildSummary, bytesSize, calculateCycleDuration, calculateCycleDurationEnabled, calculateCycleStartDate, calculateCycleStartDateEnabled, capitalize, changelogUrl, clustererImage, code, colorToRgba, compoundToHtml, computeKeys, computeTerms, contactUsEmail, contactUsLink, convertToSvg, coordinatesToPoint, copyObject, countriesQuery, createMarker, cropsQuery, d3ellipse, d3wrap, dataPathLabel, dataPathToKey, defaultFeature, defaultLabel, defaultSuggestionType, defaultSvgIconSize, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadPng, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorHasError, errorHasWarning, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode, filterError, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupChanged, groupLogsByModel, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, guidePageId, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys, initialFilterState, injectResizeEvent$, inputGroupsTermTypes, isAddPropertyEnabled, isChrome, isDateBetween, isEqual, isExternal, isGroupVisible, isKeyClosedVisible, isKeyHidden, isMaxStage, isMethodModelAllowed, isMigrationError, isMissingOneOfError, isMissingPropertyError, isNonNodeModelKey, isSchemaIri, isScrolledBelow, isState, isTermTypeAllowed, isValidKey, keyToDataPath, levels, listColor, listColorContinuous, listColorWithAlpha, loadMapApi, loadSvgSprite, 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, missingNodeErrors, modelCount, modelKeyParams, modelParams, models, multiMatchQuery, nestedProperty, nestingEnabled, nestingTypeEnabled, nodeAvailableProperties, nodeById, nodeColours, nodeDataState, nodeId, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeUrl, nodeUrlParams, nodeVersion, 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, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueTypeToDefault, waitFor, wildcardQuery };
5072
+ export type { AfterBarDrawSettings, BarChartDataItem, ButtonGroupItem, ChartExportMetadata, FilterData, FilterElement, FilterFn, FilterGroup, FilterOption, FilterState, HistogramChartDataItem, IBlankNodeLog, IBlankNodeLogSubValue, ICalculationsModel, ICalculationsModelsParams, ICalculationsRequirementsParams, IChartExportFormat, ICloseMessage, IConfigModel, ICustomValidationRules, ICycleJSONLDExtended, IErrorProperty, IFeature, IFeatureCollection, IFileUploadError, IGeometryCollection, IGlossaryMigration, IGlossaryMigrations, IGroupedKeys, IGroupedNode, IGroupedNodes, IGroupedNodesValue, IGroupedNodesValues, IImpactAssessmentJSONLDExtended, IJSONData, IJSONNode, ILine, ILog, IMarker, IMessage, IMobileShellMenuButton, INavigationMenuLink, INewProperty, INodeErrorLog, INodeHeaders, INodeLogs, INodeMissingLookupLog, INodeProperty, INodeRequestParams, INodeTermLog, INodeTermLogs, INonBlankNodeLog, IPolygonMap, IRelatedNode, ISearchParams, ISearchResultExtended, ISearchResults, IShellMenuButton, ISiteJSONLDExtended, IStoredNode, ISummary, ISummaryError, IToast, IValidationError, IValidationErrorWithIndex, LollipopPluginSettings, RgbColor, SelectValue, SortOption, SortSelectEvent, SortSelectOrder, blankNodesTypeValue, chartExportFn, chartTooltipContentFn, feature, horizontalTooltipData, modelKey, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, svgIconNames, svgIconSizes, validationErrorKeyword, validationErrorLevel, validationErrorParam };