@hestia-earth/ui-components 0.42.5 → 0.42.6
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
|
@@ -2653,6 +2653,7 @@ declare class CyclesNodesComponent {
|
|
|
2653
2653
|
protected readonly isNodeKeyAllowed: _angular_core.Signal<boolean>;
|
|
2654
2654
|
private readonly groupedNodes;
|
|
2655
2655
|
private readonly groupNodeKey;
|
|
2656
|
+
protected readonly jlogParentIndex: _angular_core.Signal<number>;
|
|
2656
2657
|
protected readonly groupNodeValues: _angular_core.Signal<string[]>;
|
|
2657
2658
|
protected readonly isGroupNode: _angular_core.Signal<boolean>;
|
|
2658
2659
|
protected readonly isEmission: _angular_core.Signal<boolean>;
|
|
@@ -4662,6 +4663,88 @@ declare const nodeSecondaryColours: {
|
|
|
4662
4663
|
Source: string;
|
|
4663
4664
|
};
|
|
4664
4665
|
|
|
4666
|
+
/**
|
|
4667
|
+
* A single `.jlog` `logs[]` entry, mapped to the same shape as the legacy `IConfigModel` so the
|
|
4668
|
+
* existing per-model status/logs components can be reused without changes.
|
|
4669
|
+
*/
|
|
4670
|
+
interface IJLogModelRun extends IConfigModel {
|
|
4671
|
+
methodId: string;
|
|
4672
|
+
status: LogStatus;
|
|
4673
|
+
logs: INodeTermLog;
|
|
4674
|
+
showLogs: boolean;
|
|
4675
|
+
model?: IModel;
|
|
4676
|
+
modelKey?: string;
|
|
4677
|
+
}
|
|
4678
|
+
type IJLogModelColumn = IJLogModelRun | IJLogModelRun[];
|
|
4679
|
+
interface IIdentitySegment {
|
|
4680
|
+
field: string;
|
|
4681
|
+
terms: ITermJSONLD[];
|
|
4682
|
+
}
|
|
4683
|
+
interface IJLogBlankNode {
|
|
4684
|
+
index: number;
|
|
4685
|
+
term?: ITermJSONLD;
|
|
4686
|
+
termId: string;
|
|
4687
|
+
key?: string;
|
|
4688
|
+
type?: SchemaType;
|
|
4689
|
+
identity: Record<string, any>;
|
|
4690
|
+
identityLabel: string;
|
|
4691
|
+
identitySegments: IIdentitySegment[];
|
|
4692
|
+
originalValue: propertyValueType;
|
|
4693
|
+
recalculatedValue: propertyValueType;
|
|
4694
|
+
isOriginal: boolean;
|
|
4695
|
+
isRecalculated: boolean;
|
|
4696
|
+
isRequired: boolean;
|
|
4697
|
+
isFailed: boolean;
|
|
4698
|
+
original: blankNodesTypeValue[];
|
|
4699
|
+
recalculated: blankNodesTypeValue[];
|
|
4700
|
+
models: IJLogModelRun[];
|
|
4701
|
+
modelColumns?: IJLogModelColumn[];
|
|
4702
|
+
subRows: IJLogBlankNode[];
|
|
4703
|
+
canOpen: boolean;
|
|
4704
|
+
isOpen: boolean;
|
|
4705
|
+
}
|
|
4706
|
+
interface IJLogTermGroup {
|
|
4707
|
+
term?: ITermJSONLD;
|
|
4708
|
+
termId: string;
|
|
4709
|
+
key?: string;
|
|
4710
|
+
type?: SchemaType;
|
|
4711
|
+
rows: IJLogBlankNode[];
|
|
4712
|
+
originalValue: propertyValueType;
|
|
4713
|
+
recalculatedValue: propertyValueType;
|
|
4714
|
+
canOpen: boolean;
|
|
4715
|
+
isOpen: boolean;
|
|
4716
|
+
}
|
|
4717
|
+
/**
|
|
4718
|
+
* Group the `.jlog` logs for one node key into rows, one per term, keeping every blank node distinct.
|
|
4719
|
+
*
|
|
4720
|
+
* @param jlog The full parsed `.jlog`.
|
|
4721
|
+
* @param nodeKey The node field being shown (e.g. `inputs`, `measurements`).
|
|
4722
|
+
* @param recalculatedValues The recalculated blank nodes for that key (index-aligned with the `.jlog`).
|
|
4723
|
+
* @param originalValues The original blank nodes for that key (matched by uniqueness for the delta).
|
|
4724
|
+
* @param nodeType The node type.
|
|
4725
|
+
* @param getTerm Resolve a term by `@id` (used for `<key>-failed` entries that have no blank node).
|
|
4726
|
+
* @param config The orchestrator config, used to list models that could run for a term.
|
|
4727
|
+
*/
|
|
4728
|
+
declare const groupJLogByTerm: (jlog: Record<string, any>, nodeKey: string, recalculatedValues?: blankNodesTypeValue[], originalValues?: blankNodesTypeValue[], nodeType?: NodeType, getTerm?: (id: string) => ITermJSONLD, config?: IOrchestratorConfig) => IJLogTermGroup[];
|
|
4729
|
+
/**
|
|
4730
|
+
* Group the `.jlog` logs for a metadata or completeness node (a `key -> value` map, not blank nodes).
|
|
4731
|
+
*
|
|
4732
|
+
* Each key is one row: the model logs come from the field's own `.jlog` entry (e.g. `startDate`), or
|
|
4733
|
+
* from the shared node-key entry for completeness (`completeness`). Values come from the `key -> value`
|
|
4734
|
+
* original/recalculated maps.
|
|
4735
|
+
*
|
|
4736
|
+
* @param jlog The full parsed `.jlog`.
|
|
4737
|
+
* @param nodeKey The node field being shown (`completeness`, or empty for cycle metadata).
|
|
4738
|
+
* @param originalValues The original `key -> value` map.
|
|
4739
|
+
* @param recalculatedValues The recalculated `key -> value` map.
|
|
4740
|
+
* @param nodeType The node type.
|
|
4741
|
+
*/
|
|
4742
|
+
declare const groupJLogByField: (jlog: Record<string, any>, nodeKey: string, originalValues: nonBlankNodesTypeValue, recalculatedValues: nonBlankNodesTypeValue, nodeType?: NodeType) => IJLogTermGroup[];
|
|
4743
|
+
/**
|
|
4744
|
+
* The maximum number of model columns across all rows, to size the "Model N" columns.
|
|
4745
|
+
*/
|
|
4746
|
+
declare const jLogModelCount: (groups: IJLogTermGroup[]) => number;
|
|
4747
|
+
|
|
4665
4748
|
/**
|
|
4666
4749
|
* Get the most recent version of the models used to recalculate the node.
|
|
4667
4750
|
*
|
|
@@ -4890,6 +4973,79 @@ declare class NodeLinkComponent {
|
|
|
4890
4973
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeLinkComponent, "he-node-link", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; "dataState": { "alias": "dataState"; "required": false; "isSignal": true; }; "showExternalLink": { "alias": "showExternalLink"; "required": false; "isSignal": true; }; "linkClass": { "alias": "linkClass"; "required": false; "isSignal": true; }; }, {}, never, ["*", "*"], true, never>;
|
|
4891
4974
|
}
|
|
4892
4975
|
|
|
4976
|
+
declare class NodeJLogModelsComponent {
|
|
4977
|
+
private readonly searchService;
|
|
4978
|
+
private readonly engineService;
|
|
4979
|
+
protected readonly guideEnabled: boolean;
|
|
4980
|
+
protected readonly node: _angular_core.InputSignal<IJSONNode>;
|
|
4981
|
+
protected readonly nodeKey: _angular_core.InputSignal<string>;
|
|
4982
|
+
protected readonly originalValues: _angular_core.InputSignal<blankNodesTypeValue[]>;
|
|
4983
|
+
protected readonly recalculatedValues: _angular_core.InputSignal<blankNodesTypeValue[]>;
|
|
4984
|
+
protected readonly filterTermTypes: _angular_core.InputSignal<TermTermType[]>;
|
|
4985
|
+
protected readonly filterTermTypesLabel: _angular_core.InputSignal<string>;
|
|
4986
|
+
protected readonly cycle: _angular_core.InputSignal<ICycleJSONLD>;
|
|
4987
|
+
protected readonly jlog: _angular_core.InputSignal<Record<string, any>>;
|
|
4988
|
+
protected readonly jlogParentKey: _angular_core.InputSignal<string>;
|
|
4989
|
+
protected readonly jlogParentIndex: _angular_core.InputSignal<number>;
|
|
4990
|
+
protected readonly scopedJlog: _angular_core.Signal<any>;
|
|
4991
|
+
protected readonly schemaBaseUrl: string;
|
|
4992
|
+
protected readonly isExternal: boolean;
|
|
4993
|
+
protected readonly LogStatus: typeof LogStatus;
|
|
4994
|
+
protected readonly logIcon: {
|
|
4995
|
+
successful?: svgIconNames;
|
|
4996
|
+
failed?: svgIconNames;
|
|
4997
|
+
"not run (model higher up hierarchy run instead)"?: svgIconNames;
|
|
4998
|
+
"not run (user provided data retained)"?: svgIconNames;
|
|
4999
|
+
"not relevant"?: svgIconNames;
|
|
5000
|
+
};
|
|
5001
|
+
protected readonly logColor: {
|
|
5002
|
+
successful?: string;
|
|
5003
|
+
failed?: string;
|
|
5004
|
+
"not run (model higher up hierarchy run instead)"?: string;
|
|
5005
|
+
"not run (user provided data retained)"?: string;
|
|
5006
|
+
"not relevant"?: string;
|
|
5007
|
+
};
|
|
5008
|
+
protected readonly isInSystemBoundary: (id: string) => boolean;
|
|
5009
|
+
protected readonly typeaheadFocus: (e: Event) => void;
|
|
5010
|
+
protected readonly isNumber: (value: any) => value is number;
|
|
5011
|
+
protected readonly isEmptyValue: (value: any) => boolean;
|
|
5012
|
+
protected readonly onlyRequired: _angular_core.WritableSignal<boolean>;
|
|
5013
|
+
protected readonly term: _angular_core.WritableSignal<ITermJSONLD>;
|
|
5014
|
+
protected readonly nodeType: _angular_core.Signal<NodeType>;
|
|
5015
|
+
protected readonly isBlankNodes: _angular_core.Signal<boolean>;
|
|
5016
|
+
private readonly failedTermIds;
|
|
5017
|
+
private readonly failedTermsResource;
|
|
5018
|
+
private readonly failedTerms;
|
|
5019
|
+
private readonly configResource;
|
|
5020
|
+
private readonly config;
|
|
5021
|
+
private readonly allGroups;
|
|
5022
|
+
protected readonly groups: _angular_core.Signal<IJLogTermGroup[]>;
|
|
5023
|
+
protected readonly hasLogs: _angular_core.Signal<boolean>;
|
|
5024
|
+
protected readonly methodModelsCount: _angular_core.Signal<number>;
|
|
5025
|
+
protected readonly filteredType: _angular_core.Signal<string>;
|
|
5026
|
+
protected readonly allTerms: _angular_core.Signal<ITermJSONLD[]>;
|
|
5027
|
+
protected readonly enableFilterByTerm: _angular_core.Signal<boolean>;
|
|
5028
|
+
protected readonly termFormatter: ({ name }: ITermJSONLD) => string;
|
|
5029
|
+
protected readonly suggestTerm: (text$: Observable<string>) => Observable<ITermJSONLD[]>;
|
|
5030
|
+
private readonly methodsById;
|
|
5031
|
+
private searchTerms;
|
|
5032
|
+
protected methodName({ methodId, modelKey }: IJLogModelRun): string;
|
|
5033
|
+
protected modelMethodTier(model: IJLogModelRun): any;
|
|
5034
|
+
protected readonly isArray: (arg: any) => arg is any[];
|
|
5035
|
+
protected modelColumns(row: IJLogBlankNode): IJLogModelColumn[];
|
|
5036
|
+
private readonly succeeded;
|
|
5037
|
+
protected subRowsAllSucceeded(row: IJLogBlankNode): boolean;
|
|
5038
|
+
protected groupAllSucceeded(group: IJLogTermGroup): boolean;
|
|
5039
|
+
private rowSucceeded;
|
|
5040
|
+
protected toggleGroup(group: IJLogTermGroup): void;
|
|
5041
|
+
protected toggleRow(row: IJLogBlankNode): void;
|
|
5042
|
+
protected trackByGroup(_index: number, group: IJLogTermGroup): string;
|
|
5043
|
+
protected trackByRow(_index: number, row: IJLogBlankNode): string;
|
|
5044
|
+
protected trackByModel(_index: number, model: IJLogModelRun): string;
|
|
5045
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodeJLogModelsComponent, never>;
|
|
5046
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeJLogModelsComponent, "he-node-jlog-models", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; "nodeKey": { "alias": "nodeKey"; "required": false; "isSignal": true; }; "originalValues": { "alias": "originalValues"; "required": false; "isSignal": true; }; "recalculatedValues": { "alias": "recalculatedValues"; "required": false; "isSignal": true; }; "filterTermTypes": { "alias": "filterTermTypes"; "required": false; "isSignal": true; }; "filterTermTypesLabel": { "alias": "filterTermTypesLabel"; "required": false; "isSignal": true; }; "cycle": { "alias": "cycle"; "required": false; "isSignal": true; }; "jlog": { "alias": "jlog"; "required": false; "isSignal": true; }; "jlogParentKey": { "alias": "jlogParentKey"; "required": false; "isSignal": true; }; "jlogParentIndex": { "alias": "jlogParentIndex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5047
|
+
}
|
|
5048
|
+
|
|
4893
5049
|
declare class NodeLogsFileComponent {
|
|
4894
5050
|
private readonly domSanitizer;
|
|
4895
5051
|
private readonly nodeService;
|
|
@@ -4928,6 +5084,8 @@ declare class NodeLogsModelsComponent {
|
|
|
4928
5084
|
protected readonly logsKey: _angular_core.InputSignal<string>;
|
|
4929
5085
|
protected readonly noDataMessage: _angular_core.InputSignal<string>;
|
|
4930
5086
|
protected readonly cycle: _angular_core.InputSignal<ICycleJSONLD>;
|
|
5087
|
+
protected readonly jlogParentKey: _angular_core.InputSignal<string>;
|
|
5088
|
+
protected readonly jlogParentIndex: _angular_core.InputSignal<number>;
|
|
4931
5089
|
protected readonly isEmpty: (value: any, minKeys?: number) => boolean;
|
|
4932
5090
|
protected readonly schemaBaseUrl: string;
|
|
4933
5091
|
protected readonly isExternal: boolean;
|
|
@@ -4960,6 +5118,10 @@ declare class NodeLogsModelsComponent {
|
|
|
4960
5118
|
protected readonly hasContributions: _angular_core.Signal<boolean>;
|
|
4961
5119
|
protected readonly logsUrl: _angular_core.Signal<string>;
|
|
4962
5120
|
protected readonly nodeType: _angular_core.Signal<NodeType>;
|
|
5121
|
+
private readonly jlogResource;
|
|
5122
|
+
protected readonly jlog: _angular_core.Signal<Record<string, any>>;
|
|
5123
|
+
protected readonly loadingJLog: _angular_core.Signal<boolean>;
|
|
5124
|
+
protected readonly useJLog: _angular_core.Signal<boolean>;
|
|
4963
5125
|
private readonly logsResource;
|
|
4964
5126
|
private readonly allLogs;
|
|
4965
5127
|
protected readonly hasLogs: _angular_core.Signal<boolean>;
|
|
@@ -4997,7 +5159,7 @@ declare class NodeLogsModelsComponent {
|
|
|
4997
5159
|
protected subValuesKey({ subValues }: IBlankNodeLog, defaultValue: string): string;
|
|
4998
5160
|
protected hasCompleteSuccess({ subValues }: IBlankNodeLog): boolean;
|
|
4999
5161
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodeLogsModelsComponent, never>;
|
|
5000
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeLogsModelsComponent, "he-node-logs-models", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; "nodeKey": { "alias": "nodeKey"; "required": false; "isSignal": true; }; "originalValues": { "alias": "originalValues"; "required": false; "isSignal": true; }; "recalculatedValues": { "alias": "recalculatedValues"; "required": false; "isSignal": true; }; "terms": { "alias": "terms"; "required": false; "isSignal": true; }; "filterTermTypes": { "alias": "filterTermTypes"; "required": false; "isSignal": true; }; "filterTermTypesLabel": { "alias": "filterTermTypesLabel"; "required": false; "isSignal": true; }; "logsKey": { "alias": "logsKey"; "required": false; "isSignal": true; }; "noDataMessage": { "alias": "noDataMessage"; "required": false; "isSignal": true; }; "cycle": { "alias": "cycle"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5162
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeLogsModelsComponent, "he-node-logs-models", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; "nodeKey": { "alias": "nodeKey"; "required": false; "isSignal": true; }; "originalValues": { "alias": "originalValues"; "required": false; "isSignal": true; }; "recalculatedValues": { "alias": "recalculatedValues"; "required": false; "isSignal": true; }; "terms": { "alias": "terms"; "required": false; "isSignal": true; }; "filterTermTypes": { "alias": "filterTermTypes"; "required": false; "isSignal": true; }; "filterTermTypesLabel": { "alias": "filterTermTypesLabel"; "required": false; "isSignal": true; }; "logsKey": { "alias": "logsKey"; "required": false; "isSignal": true; }; "noDataMessage": { "alias": "noDataMessage"; "required": false; "isSignal": true; }; "cycle": { "alias": "cycle"; "required": false; "isSignal": true; }; "jlogParentKey": { "alias": "jlogParentKey"; "required": false; "isSignal": true; }; "jlogParentIndex": { "alias": "jlogParentIndex"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5001
5163
|
}
|
|
5002
5164
|
|
|
5003
5165
|
interface ITimeLog {
|
|
@@ -5597,5 +5759,5 @@ declare class TermsUnitsDescriptionComponent {
|
|
|
5597
5759
|
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>;
|
|
5598
5760
|
}
|
|
5599
5761
|
|
|
5600
|
-
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, 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, MaxPipe, MeanPipe, MedianPipe, MendeleySearchResult, MinPipe, 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, 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, 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, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, guidePageId, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys, increaseScaleLimits, 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, noValue, nodeAvailableProperties, nodeById, nodeColours, nodeDataState, nodeDataStates, nodeId, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeTypeIconSchema, 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, simplifyContributions, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, subValueKeys, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
5601
|
-
export type { AfterBarDrawSettings, AxisHoverSettings, BarChartDataItem, ButtonGroupItem, ChartExportMetadata, ContributionChartDataItem, ContributionTooltipData, FilterData, FilterElement, FilterFn, FilterGroup, FilterOption, FilterState, HistogramChartDataItem, IBlankNodeLog, IBlankNodeLogSubValue, ICalculationsModel, ICalculationsModelsParams, ICalculationsRequirementsParams, IChartExportFormat, ICloseMessage, IConfigModel, ICustomValidationRules, ICycleJSONLDExtended, IEmissionCategory, 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, nodeContributionsSimplified, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, svgIconNames, svgIconSizes, validationErrorKeyword, validationErrorLevel, validationErrorParam };
|
|
5762
|
+
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, 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, MaxPipe, MeanPipe, MedianPipe, MendeleySearchResult, MinPipe, MobileShellComponent, NavigationMenuComponent, NoExtPipe, NodeAggregatedComponent, NodeAggregatedInfoComponent, NodeAggregatedQualityScoreComponent, NodeCsvExportConfirmComponent, NodeCsvPreviewComponent, NodeCsvSelectHeadersComponent, NodeIconComponent, NodeJLogModelsComponent, NodeJsonldComponent, NodeJsonldSchemaComponent, NodeKeyState, NodeLinkComponent, NodeLogsFileComponent, NodeLogsModelsComponent, NodeLogsTimeComponent, NodeMissingLookupFactorsComponent, NodeQualityScore, NodeRecommendationsComponent, NodeSelectComponent, NodeValueDetailsComponent, PipelineStagesProgressComponent, PluralizePipe, PopoverComponent, PopoverConfirmComponent, PrecisionPipe, RelatedNodeResult, RemoveMarkdownPipe, RepeatPipe, Repository, ResizedDirective, ResizedEvent, ResponsiveService, SchemaInfoComponent, SchemaVersionLinkComponent, SearchExtendComponent, ShelfDialogComponent, ShellComponent, SiteNodesKeyGroup, SitesManagementChartComponent, SitesMapsComponent, SitesNodesComponent, SkeletonTextComponent, SocialTagsComponent, SortByPipe, SortSelectComponent, SumPipe, TagsInputDirective, Template, TermsPropertyContentComponent, TermsSubClassOfContentComponent, TermsUnitsDescriptionComponent, ThousandSuffixesPipe, ThousandsPipe, TimesPipe, ToastComponent, UncapitalizePipe, addPolygonToFeature, afterBarDrawPlugin, allCountriesQuery, allGroups, allOptions, availableProperties, axisHoverPlugin, backgroundHoverPlugin, baseApiUrl, baseUrl, bottom, buildSummary, bytesSize, calculateCycleDuration, calculateCycleDurationEnabled, calculateCycleStartDate, calculateCycleStartDateEnabled, capitalize, changelogUrl, clustererImage, code, colorToRgba, compoundToHtml, computeKeys, computeTerms, contactUsEmail, contactUsLink, convertToSvg, coordinatesToPoint, copyObject, countGroupVisibleNodes, countriesQuery, createMarker, cropsQuery, d3ellipse, d3wrap, dataPathLabel, dataPathToKey, dataVersionHeader, dataVersionHeaderKey, defaultFeature, defaultLabel, defaultSuggestionType, 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, groupJLogByField, groupJLogByTerm, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, guidePageId, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys, increaseScaleLimits, initialFilterState, injectResizeEvent$, inputGroupsTermTypes, isAddPropertyEnabled, isChrome, isDateBetween, isEqual, isExternal, isKeyClosedVisible, isKeyHidden, isMaxStage, isMethodModelAllowed, isMigrationError, isMissingOneOfError, isMissingPropertyError, isNonNodeModelKey, isSchemaIri, isScrolledBelow, isState, isTermTypeAllowed, isValidKey, jLogModelCount, 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, noValue, nodeAvailableProperties, nodeById, nodeColours, nodeDataState, nodeDataStates, nodeId, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeTypeIconSchema, 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, simplifyContributions, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, subValueKeys, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
5763
|
+
export type { AfterBarDrawSettings, AxisHoverSettings, BarChartDataItem, ButtonGroupItem, ChartExportMetadata, ContributionChartDataItem, ContributionTooltipData, FilterData, FilterElement, FilterFn, FilterGroup, FilterOption, FilterState, HistogramChartDataItem, IBlankNodeLog, IBlankNodeLogSubValue, ICalculationsModel, ICalculationsModelsParams, ICalculationsRequirementsParams, IChartExportFormat, ICloseMessage, IConfigModel, ICustomValidationRules, ICycleJSONLDExtended, IEmissionCategory, IErrorProperty, IFeature, IFeatureCollection, IFileUploadError, IGeometryCollection, IGlossaryMigration, IGlossaryMigrations, IGroupedKeys, IGroupedNode, IGroupedNodes, IGroupedNodesValue, IGroupedNodesValues, IIdentitySegment, IImpactAssessmentJSONLDExtended, IIssueParams, IJLogBlankNode, IJLogModelColumn, IJLogModelRun, IJLogTermGroup, IJSONData, IJSONNode, ILine, ILog, IMarker, IMessage, IMobileShellMenuButton, INavigationMenuLink, INewProperty, INodeContributions, INodeErrorLog, INodeHeaders, INodeLogs, INodeMissingLookupLog, INodeProperty, INodeRequestParams, INodeTermLog, INodeTermLogs, INonBlankNodeLog, IPolygonMap, IRelatedNode, ISearchParams, ISearchResultExtended, ISearchResults, IShellMenuButton, ISiteJSONLDExtended, IStoredNode, ISummary, ISummaryError, IToast, IValidationError, IValidationErrorWithIndex, LollipopPluginSettings, RgbColor, SelectValue, SortOption, SortSelectEvent, SortSelectOrder, blankNodesTypeValue, chartExportFn, chartTooltipContentFn, contributions, feature, horizontalTooltipData, modelKey, nodeContributionsSimplified, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, svgIconNames, svgIconSizes, validationErrorKeyword, validationErrorLevel, validationErrorParam };
|