@hestia-earth/ui-components 0.41.33 → 0.41.35
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
|
@@ -426,6 +426,111 @@ declare class ChartTooltipComponent<T> {
|
|
|
426
426
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartTooltipComponent<any>, "he-chart-tooltip", ["chartTooltip"], { "tooltipFn": { "alias": "tooltipFn"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
+
interface ContributionChartDataItem {
|
|
430
|
+
label: string;
|
|
431
|
+
values: number[];
|
|
432
|
+
color?: string;
|
|
433
|
+
backgroundColor?: string;
|
|
434
|
+
borderColor?: string;
|
|
435
|
+
includedItems?: ContributionChartDataItem[];
|
|
436
|
+
}
|
|
437
|
+
declare class ContributionChartComponent {
|
|
438
|
+
/**
|
|
439
|
+
* Contribution data.
|
|
440
|
+
*/
|
|
441
|
+
readonly data: _angular_core.InputSignal<ContributionChartDataItem[]>;
|
|
442
|
+
/**
|
|
443
|
+
* X-axis labels for each stack.
|
|
444
|
+
*/
|
|
445
|
+
readonly labels: _angular_core.InputSignal<string[]>;
|
|
446
|
+
/**
|
|
447
|
+
* Label to display below the chart (X-axis title).
|
|
448
|
+
*/
|
|
449
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
450
|
+
readonly config: _angular_core.InputSignal<Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
|
|
451
|
+
protected readonly chart: _angular_core.Signal<ChartComponent>;
|
|
452
|
+
readonly exporting: _angular_core.Signal<boolean>;
|
|
453
|
+
private readonly defaultConfig;
|
|
454
|
+
protected readonly dataConfig: _angular_core.Signal<{
|
|
455
|
+
datasets: {
|
|
456
|
+
label: string;
|
|
457
|
+
data: number[];
|
|
458
|
+
backgroundColor: string;
|
|
459
|
+
borderColor: string;
|
|
460
|
+
borderWidth: number;
|
|
461
|
+
type: "bar";
|
|
462
|
+
includedItems: ContributionChartDataItem[];
|
|
463
|
+
}[];
|
|
464
|
+
labels: string[];
|
|
465
|
+
}>;
|
|
466
|
+
protected readonly configuration: _angular_core.Signal<Readonly<{
|
|
467
|
+
type: "bar";
|
|
468
|
+
options: {
|
|
469
|
+
responsive: true;
|
|
470
|
+
plugins: {
|
|
471
|
+
tooltip: {
|
|
472
|
+
enabled: true;
|
|
473
|
+
callbacks: {
|
|
474
|
+
label: (this: chart_js.TooltipModel<keyof chart_js.ChartTypeRegistry>, { dataset, raw, dataIndex }: chart_js.TooltipItem<keyof chart_js.ChartTypeRegistry>) => string[];
|
|
475
|
+
};
|
|
476
|
+
};
|
|
477
|
+
legend: {
|
|
478
|
+
display: false;
|
|
479
|
+
};
|
|
480
|
+
};
|
|
481
|
+
scales: {
|
|
482
|
+
x: {
|
|
483
|
+
stacked: true;
|
|
484
|
+
display: true;
|
|
485
|
+
grid: {
|
|
486
|
+
display: false;
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
y: {
|
|
490
|
+
stacked: true;
|
|
491
|
+
display: true;
|
|
492
|
+
position: "left";
|
|
493
|
+
beginAtZero: true;
|
|
494
|
+
grid: {
|
|
495
|
+
display: true;
|
|
496
|
+
};
|
|
497
|
+
};
|
|
498
|
+
};
|
|
499
|
+
};
|
|
500
|
+
}> & {
|
|
501
|
+
options: {
|
|
502
|
+
scales: {
|
|
503
|
+
x: {
|
|
504
|
+
title: {
|
|
505
|
+
display: boolean;
|
|
506
|
+
text: string;
|
|
507
|
+
};
|
|
508
|
+
ticks: {
|
|
509
|
+
font: {
|
|
510
|
+
family: string;
|
|
511
|
+
size: number;
|
|
512
|
+
};
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
y: {
|
|
516
|
+
ticks: {
|
|
517
|
+
font: {
|
|
518
|
+
family: string;
|
|
519
|
+
size: number;
|
|
520
|
+
weight: number;
|
|
521
|
+
};
|
|
522
|
+
color: string;
|
|
523
|
+
};
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
} & Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
|
|
528
|
+
exportAsSvg(config?: Partial<ChartExportMetadata>): Promise<void>;
|
|
529
|
+
exportAsPng(): void;
|
|
530
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContributionChartComponent, never>;
|
|
531
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContributionChartComponent, "he-contribution-chart", ["contributionChart"], { "data": { "alias": "data"; "required": false; "isSignal": true; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
532
|
+
}
|
|
533
|
+
|
|
429
534
|
interface HistogramChartDataItem {
|
|
430
535
|
label: string;
|
|
431
536
|
values: number[];
|
|
@@ -554,7 +659,7 @@ declare class DistributionChartComponent {
|
|
|
554
659
|
};
|
|
555
660
|
} & Partial<ChartConfiguration<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint)[], unknown>>>;
|
|
556
661
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DistributionChartComponent, never>;
|
|
557
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DistributionChartComponent, "he-distribution-chart",
|
|
662
|
+
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>;
|
|
558
663
|
}
|
|
559
664
|
|
|
560
665
|
declare class LineChartComponent {
|
|
@@ -2334,6 +2439,8 @@ declare class CyclesNodesComponent {
|
|
|
2334
2439
|
sd?: number;
|
|
2335
2440
|
min?: number;
|
|
2336
2441
|
max?: number;
|
|
2442
|
+
percentile10th?: number;
|
|
2443
|
+
percentile90th?: number;
|
|
2337
2444
|
statsDefinition?: _hestia_earth_schema.AnimalStatsDefinition;
|
|
2338
2445
|
observations?: number;
|
|
2339
2446
|
price?: number;
|
|
@@ -3897,10 +4004,16 @@ interface ILog$1 {
|
|
|
3897
4004
|
declare class ImpactAssessmentsIndicatorBreakdownChartComponent {
|
|
3898
4005
|
private readonly searchService;
|
|
3899
4006
|
private readonly nodeService;
|
|
4007
|
+
private readonly emissionCategoryService;
|
|
3900
4008
|
private readonly responsiveService;
|
|
3901
4009
|
protected readonly impactAssessment: _angular_core.InputSignal<IImpactAssessmentJSONLD>;
|
|
3902
4010
|
protected readonly indicators: _angular_core.InputSignal<Indicator[]>;
|
|
3903
4011
|
protected readonly maximumValues: _angular_core.Signal<20 | 10>;
|
|
4012
|
+
protected readonly categories: {
|
|
4013
|
+
key: string;
|
|
4014
|
+
label: string;
|
|
4015
|
+
}[];
|
|
4016
|
+
protected readonly selectedCategory: _angular_core.WritableSignal<string>;
|
|
3904
4017
|
protected readonly logsResource: _angular_core.ResourceRef<unknown>;
|
|
3905
4018
|
private readonly logs;
|
|
3906
4019
|
private readonly nonZeroLogs;
|
|
@@ -3933,7 +4046,12 @@ declare class ImpactAssessmentsIndicatorBreakdownChartComponent {
|
|
|
3933
4046
|
protected readonly downloadFilename: _angular_core.Signal<string>;
|
|
3934
4047
|
protected readonly displayValue: _angular_core.WritableSignal<boolean>;
|
|
3935
4048
|
protected readonly total: _angular_core.Signal<number>;
|
|
3936
|
-
protected readonly
|
|
4049
|
+
protected readonly groupedValues: _angular_core.Signal<Record<string, ILog$1[]>>;
|
|
4050
|
+
protected readonly chartData: _angular_core.Signal<{
|
|
4051
|
+
label: string;
|
|
4052
|
+
count: number;
|
|
4053
|
+
backgroundColor: string;
|
|
4054
|
+
}[]>;
|
|
3937
4055
|
protected readonly chartTooltipFn: chartTooltipContentFn<BarChartDataItem & {
|
|
3938
4056
|
index: number;
|
|
3939
4057
|
}>;
|
|
@@ -3949,20 +4067,45 @@ declare class ImpactAssessmentsIndicatorBreakdownChartComponent {
|
|
|
3949
4067
|
|
|
3950
4068
|
declare class ImpactAssessmentsIndicatorsChartComponent {
|
|
3951
4069
|
private readonly nodeStoreService;
|
|
4070
|
+
private readonly nodeService;
|
|
4071
|
+
private readonly emissionCategoryService;
|
|
4072
|
+
private readonly barChart;
|
|
4073
|
+
private readonly contributionChart;
|
|
4074
|
+
protected readonly chart: _angular_core.Signal<ContributionChartComponent | HorizontalBarChartComponent>;
|
|
3952
4075
|
protected readonly key: _angular_core.InputSignal<modelKey>;
|
|
3953
4076
|
protected readonly filterTermTypes: _angular_core.InputSignal<TermTermType[]>;
|
|
4077
|
+
protected readonly categories: {
|
|
4078
|
+
key: string;
|
|
4079
|
+
label: string;
|
|
4080
|
+
}[];
|
|
4081
|
+
protected readonly selectedCategory: _angular_core.WritableSignal<string>;
|
|
3954
4082
|
private readonly impactAssessments;
|
|
4083
|
+
private readonly contributionsResource;
|
|
4084
|
+
private readonly contributionsPerImpactAssessment;
|
|
4085
|
+
private readonly contributionKey;
|
|
4086
|
+
private readonly contributionTerms;
|
|
4087
|
+
protected readonly enableContributions: _angular_core.Signal<boolean>;
|
|
3955
4088
|
private readonly indicatorPerImpactAssessment;
|
|
3956
4089
|
protected readonly terms: _angular_core.Signal<Term[]>;
|
|
3957
|
-
protected readonly
|
|
3958
|
-
|
|
3959
|
-
protected readonly
|
|
4090
|
+
protected readonly selectedTermId: _angular_core.WritableSignal<string>;
|
|
4091
|
+
protected readonly selectedTerm: _angular_core.Signal<Term>;
|
|
4092
|
+
protected readonly selectedMethodId: _angular_core.WritableSignal<string>;
|
|
4093
|
+
protected readonly termToMethods: _angular_core.Signal<Record<string, Term[]>>;
|
|
4094
|
+
protected readonly methods: _angular_core.Signal<Term[]>;
|
|
4095
|
+
protected readonly selectedMethod: _angular_core.Signal<Term>;
|
|
4096
|
+
private readonly groupedValues;
|
|
4097
|
+
private readonly contributionData;
|
|
4098
|
+
protected readonly chartData: _angular_core.Signal<{
|
|
4099
|
+
label: string;
|
|
4100
|
+
values: number[];
|
|
4101
|
+
color: string;
|
|
4102
|
+
}[] | {
|
|
4103
|
+
label: string;
|
|
4104
|
+
count: number;
|
|
4105
|
+
color: string;
|
|
4106
|
+
}[]>;
|
|
4107
|
+
protected readonly chartLabels: _angular_core.Signal<string[]>;
|
|
3960
4108
|
constructor();
|
|
3961
|
-
protected selectTerm({ target: { value } }: {
|
|
3962
|
-
target: {
|
|
3963
|
-
value: any;
|
|
3964
|
-
};
|
|
3965
|
-
}): void;
|
|
3966
4109
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ImpactAssessmentsIndicatorsChartComponent, never>;
|
|
3967
4110
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ImpactAssessmentsIndicatorsChartComponent, "he-impact-assessments-indicators-chart", never, { "key": { "alias": "key"; "required": false; "isSignal": true; }; "filterTermTypes": { "alias": "filterTermTypes"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3968
4111
|
}
|
|
@@ -4211,6 +4354,17 @@ interface INodeErrorLog {
|
|
|
4211
4354
|
stack?: string;
|
|
4212
4355
|
}
|
|
4213
4356
|
type onHeadersCallback = (headers: HttpHeaders) => any;
|
|
4357
|
+
type contributions = Record<string, Record<string, number>>;
|
|
4358
|
+
interface INodeContributions {
|
|
4359
|
+
/**
|
|
4360
|
+
* Contributions of each `emissionsResourceUse` to the `impacts`.
|
|
4361
|
+
*/
|
|
4362
|
+
emissionsResourceUse: Record<string, contributions>;
|
|
4363
|
+
/**
|
|
4364
|
+
* Contributions of each `impacts` to the `endpoints`.
|
|
4365
|
+
*/
|
|
4366
|
+
impacts: Record<string, contributions>;
|
|
4367
|
+
}
|
|
4214
4368
|
declare class HeNodeService {
|
|
4215
4369
|
protected http: HttpClient;
|
|
4216
4370
|
protected commonService: HeCommonService;
|
|
@@ -4222,7 +4376,8 @@ declare class HeNodeService {
|
|
|
4222
4376
|
get<T>(node: IJSONNode, defaultForState?: boolean): Promise<T>;
|
|
4223
4377
|
head$(node: IJSONNode, dataVersion?: string): rxjs.Observable<INodeHeaders>;
|
|
4224
4378
|
getRelated$(node: IJSONNode, relatedType: NodeType, limit?: number, offset?: number, relationship?: string): rxjs.Observable<RelatedNodeResult>;
|
|
4225
|
-
getLog$({ dataState, aggregated, ...node }: IJSONNode): rxjs.Observable<
|
|
4379
|
+
getLog$({ dataState, aggregated, ...node }: IJSONNode, format?: 'text' | 'json'): rxjs.Observable<any>;
|
|
4380
|
+
getContributions$(node: IJSONNode): rxjs.Observable<INodeContributions>;
|
|
4226
4381
|
getErrorLog$({ dataState, aggregated, ...node }: IJSONNode): rxjs.Observable<INodeErrorLog>;
|
|
4227
4382
|
getMissingLookupsLog$({ dataState, ...node }: IJSONNode): rxjs.Observable<INodeMissingLookupLog[]>;
|
|
4228
4383
|
triggerPipeline({ dataState, ...node }: IJSONNode): Promise<Object>;
|
|
@@ -4557,7 +4712,7 @@ declare class NodeLogsFileComponent {
|
|
|
4557
4712
|
protected readonly node: _angular_core.InputSignal<JSONLD<NodeType>>;
|
|
4558
4713
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
4559
4714
|
private readonly nodeLogResource;
|
|
4560
|
-
protected readonly nodeLog: _angular_core.Signal<
|
|
4715
|
+
protected readonly nodeLog: _angular_core.Signal<any>;
|
|
4561
4716
|
protected readonly loading: _angular_core.Signal<boolean>;
|
|
4562
4717
|
private readonly allLogs;
|
|
4563
4718
|
protected readonly Level: typeof Level;
|
|
@@ -4672,7 +4827,7 @@ declare class NodeLogsTimeComponent {
|
|
|
4672
4827
|
private readonly nodeService;
|
|
4673
4828
|
protected readonly node: _angular_core.InputSignal<JSONLD<NodeType>>;
|
|
4674
4829
|
protected readonly showMemoryUsage: _angular_core.InputSignal<boolean>;
|
|
4675
|
-
protected readonly nodeLogsResource: _angular_core.ResourceRef<
|
|
4830
|
+
protected readonly nodeLogsResource: _angular_core.ResourceRef<any>;
|
|
4676
4831
|
protected readonly logs: _angular_core.Signal<{
|
|
4677
4832
|
time: number;
|
|
4678
4833
|
model_model: string;
|
|
@@ -5211,5 +5366,5 @@ declare class TermsUnitsDescriptionComponent {
|
|
|
5211
5366
|
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>;
|
|
5212
5367
|
}
|
|
5213
5368
|
|
|
5214
|
-
export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBoxComponent, CollapsibleBoxStyle, ColorPalette, CompoundDirective, CompoundPipe, ControlValueAccessor, CycleNodesKeyGroup, CyclesCompletenessComponent, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, EngineModelsVersionInfoComponent, 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, PipelineStagesProgressComponent, 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, 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, defaultSvgIconSize, defaultTicksFont, 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, 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, nodeDataStates, 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, parseLogMessage, 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, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
5215
|
-
export type { AfterBarDrawSettings, AxisHoverSettings, 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, IIssueParams, 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 };
|
|
5369
|
+
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, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, EngineModelsVersionInfoComponent, 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, PipelineStagesProgressComponent, 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, 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, defaultSvgIconSize, defaultTicksFont, 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, 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, nodeDataStates, 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, parseLogMessage, 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, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
5370
|
+
export type { AfterBarDrawSettings, AxisHoverSettings, BarChartDataItem, ButtonGroupItem, ChartExportMetadata, ContributionChartDataItem, 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, IIssueParams, 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, IValidationErrorWithIndex, LollipopPluginSettings, RgbColor, SelectValue, SortOption, SortSelectEvent, SortSelectOrder, blankNodesTypeValue, chartExportFn, chartTooltipContentFn, contributions, feature, horizontalTooltipData, modelKey, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, svgIconNames, svgIconSizes, validationErrorKeyword, validationErrorLevel, validationErrorParam };
|