@hestia-earth/ui-components 0.42.17 → 0.42.18
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/fesm2022/hestia-earth-ui-components-file-errors.mjs +8 -3
- package/fesm2022/hestia-earth-ui-components-file-errors.mjs.map +1 -1
- package/fesm2022/hestia-earth-ui-components.mjs +64 -29
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/file-errors/README.md +6 -4
- package/package.json +1 -1
- package/types/hestia-earth-ui-components.d.ts +40 -4
package/file-errors/README.md
CHANGED
|
@@ -46,7 +46,7 @@ Each item is an `IFormattedError`:
|
|
|
46
46
|
```ts
|
|
47
47
|
interface IFormattedError {
|
|
48
48
|
level: 'error' | 'warning';
|
|
49
|
-
message: string;
|
|
49
|
+
message: string; // plain text; code spans as `backticks`, links as [text](url), lists as bullets
|
|
50
50
|
location?: string; // human-readable path, e.g. "Cycle › Practice"
|
|
51
51
|
dataPath?: string;
|
|
52
52
|
keyword?: string;
|
|
@@ -84,10 +84,12 @@ time, or reach the individual functions), use `createErrorFormatter`:
|
|
|
84
84
|
```ts
|
|
85
85
|
import { createErrorFormatter, textRenderer, defaultUrlConfig } from '@hestia-earth/ui-components/file-errors';
|
|
86
86
|
|
|
87
|
-
const { formatError, formatErrors, formatCustomErrorMessage, parseDataPath, dataPathLabel } =
|
|
88
|
-
|
|
87
|
+
const { formatError, formatErrors, formatCustomErrorMessage, parseDataPath, dataPathLabel } = createErrorFormatter({
|
|
88
|
+
renderer: textRenderer,
|
|
89
|
+
urls: defaultUrlConfig
|
|
90
|
+
});
|
|
89
91
|
|
|
90
|
-
formatError(errors[0]);
|
|
92
|
+
formatError(errors[0]); // single IValidationError -> { level, message, ...error }
|
|
91
93
|
formatCustomErrorMessage(errors[0].message, errors[0]); // just the message string
|
|
92
94
|
```
|
|
93
95
|
|
package/package.json
CHANGED
|
@@ -1259,6 +1259,15 @@ declare const safeJSONParse: <T>(value: string, defaultValue?: any) => any;
|
|
|
1259
1259
|
declare const safeJSONStringify: (value: string) => string;
|
|
1260
1260
|
declare const ellipsis: (text?: string, maxlength?: number) => string;
|
|
1261
1261
|
declare const defaultLabel: (node?: any) => any;
|
|
1262
|
+
/**
|
|
1263
|
+
* Stable `@for` track key for a node that uniquely identifies it across data versions.
|
|
1264
|
+
* Two nodes with the same `@id` but a different `dataVersion` (e.g. current vs a compared version)
|
|
1265
|
+
* produce distinct keys, so lists reconcile instead of colliding or being re-created.
|
|
1266
|
+
*/
|
|
1267
|
+
declare const nodeVersionKey: (node?: {
|
|
1268
|
+
"@id"?: string;
|
|
1269
|
+
dataVersion?: string;
|
|
1270
|
+
}) => string;
|
|
1262
1271
|
declare const repeat: (times?: number) => number[];
|
|
1263
1272
|
declare const copyObject: (data?: any) => any;
|
|
1264
1273
|
declare const isEqual: (a: any, b: any) => boolean;
|
|
@@ -2319,6 +2328,10 @@ declare class CyclesCompletenessComponent {
|
|
|
2319
2328
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
2320
2329
|
protected readonly schemaBaseUrl: string;
|
|
2321
2330
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2331
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2332
|
+
"@id"?: string;
|
|
2333
|
+
dataVersion?: string;
|
|
2334
|
+
}) => string;
|
|
2322
2335
|
protected readonly keyToLabel: (key: string) => string;
|
|
2323
2336
|
protected readonly getCompleteness: (cycle: any) => any;
|
|
2324
2337
|
protected readonly nodeKey = NonBlankNodesKey.completeness;
|
|
@@ -2445,6 +2458,10 @@ declare class CyclesMetadataComponent {
|
|
|
2445
2458
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
2446
2459
|
protected readonly schemaBaseUrl: string;
|
|
2447
2460
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2461
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2462
|
+
"@id"?: string;
|
|
2463
|
+
dataVersion?: string;
|
|
2464
|
+
}) => string;
|
|
2448
2465
|
protected readonly keyToLabel: (key: string) => string;
|
|
2449
2466
|
protected readonly NodeType: typeof NodeType;
|
|
2450
2467
|
protected readonly View: typeof View$3;
|
|
@@ -2503,6 +2520,7 @@ type groupedNodeExtended = groupedNode & {
|
|
|
2503
2520
|
'@id': string;
|
|
2504
2521
|
startDate?: string;
|
|
2505
2522
|
endDate: string;
|
|
2523
|
+
dataVersion?: string;
|
|
2506
2524
|
};
|
|
2507
2525
|
declare class CyclesNodesComponent {
|
|
2508
2526
|
private readonly modalService;
|
|
@@ -2518,6 +2536,10 @@ declare class CyclesNodesComponent {
|
|
|
2518
2536
|
protected readonly schemaBaseUrl: string;
|
|
2519
2537
|
protected readonly countGroupVisibleNodes: <T>(blankNodes: IGroupedKeys<T>[]) => number;
|
|
2520
2538
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2539
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2540
|
+
"@id"?: string;
|
|
2541
|
+
dataVersion?: string;
|
|
2542
|
+
}) => string;
|
|
2521
2543
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
2522
2544
|
protected readonly View: typeof View$2;
|
|
2523
2545
|
protected readonly viewIcon: {
|
|
@@ -2634,6 +2656,7 @@ declare class CyclesNodesComponent {
|
|
|
2634
2656
|
'@id': string;
|
|
2635
2657
|
startDate?: string;
|
|
2636
2658
|
endDate: string;
|
|
2659
|
+
dataVersion?: string;
|
|
2637
2660
|
} | {
|
|
2638
2661
|
'@type': NodeType;
|
|
2639
2662
|
type: NodeType;
|
|
@@ -2660,6 +2683,7 @@ declare class CyclesNodesComponent {
|
|
|
2660
2683
|
id?: string;
|
|
2661
2684
|
name: string;
|
|
2662
2685
|
'@id': string;
|
|
2686
|
+
dataVersion?: string;
|
|
2663
2687
|
}>;
|
|
2664
2688
|
private readonly isOriginal;
|
|
2665
2689
|
private readonly hasRecalculatedNodes;
|
|
@@ -4044,6 +4068,10 @@ declare class ImpactAssessmentsProductsComponent {
|
|
|
4044
4068
|
protected readonly filterTermTypes: _angular_core.InputSignal<TermTermType[]>;
|
|
4045
4069
|
protected readonly enableFilterMethodModel: _angular_core.InputSignal<boolean>;
|
|
4046
4070
|
protected readonly schemaBaseUrl: string;
|
|
4071
|
+
protected readonly nodeVersionKey: (node?: {
|
|
4072
|
+
"@id"?: string;
|
|
4073
|
+
dataVersion?: string;
|
|
4074
|
+
}) => string;
|
|
4047
4075
|
protected readonly countGroupVisibleNodes: <T>(blankNodes: IGroupedKeys<T>[]) => number;
|
|
4048
4076
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
4049
4077
|
protected readonly View: typeof View$1;
|
|
@@ -4486,7 +4514,7 @@ declare const nodeId: (node?: IJSONNode) => string;
|
|
|
4486
4514
|
* @returns The full url.
|
|
4487
4515
|
*/
|
|
4488
4516
|
declare const nodeUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
|
|
4489
|
-
declare const nodeLogsUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
|
|
4517
|
+
declare const nodeLogsUrl: (apiBaseUrl: string, { dataState, dataVersion, ...node }: IJSONNode) => string;
|
|
4490
4518
|
declare const lookupUrl: (filename: string) => string;
|
|
4491
4519
|
interface IJSONNode {
|
|
4492
4520
|
'@type'?: NodeType;
|
|
@@ -4496,6 +4524,7 @@ interface IJSONNode {
|
|
|
4496
4524
|
dataState?: DataState;
|
|
4497
4525
|
aggregated?: boolean;
|
|
4498
4526
|
aggregatedDataValidated?: boolean;
|
|
4527
|
+
dataVersion?: string;
|
|
4499
4528
|
}
|
|
4500
4529
|
interface INodeHeaders {
|
|
4501
4530
|
'last-modified'?: string;
|
|
@@ -4553,8 +4582,8 @@ declare class HeNodeService {
|
|
|
4553
4582
|
get$<T>(node: IJSONNode, params?: {}, onHeaders?: onHeadersCallback): rxjs.Observable<T>;
|
|
4554
4583
|
get<T>(node: IJSONNode, defaultForState?: boolean): Promise<T>;
|
|
4555
4584
|
head$(node: IJSONNode, dataVersion?: string): rxjs.Observable<INodeHeaders>;
|
|
4556
|
-
getRelated$(node: IJSONNode, relatedType: NodeType, limit?: number, offset?: number, relationship?: string): rxjs.Observable<RelatedNodeResult>;
|
|
4557
|
-
getLog$({ dataState, aggregated, ...node }: IJSONNode, format?: 'text' | 'json'): rxjs.Observable<any>;
|
|
4585
|
+
getRelated$(node: IJSONNode, relatedType: NodeType, limit?: number, offset?: number, relationship?: string, dataVersion?: string): rxjs.Observable<RelatedNodeResult>;
|
|
4586
|
+
getLog$({ dataState, aggregated, dataVersion, ...node }: IJSONNode, format?: 'text' | 'json'): rxjs.Observable<any>;
|
|
4558
4587
|
getContributions$({ dataState, ...impactAssessment }: IJSONNode & Partial<IImpactAssessmentJSONLD>): rxjs.Observable<INodeContributions>;
|
|
4559
4588
|
private getContributionsFromLog$;
|
|
4560
4589
|
getErrorLog$({ dataState, aggregated, ...node }: IJSONNode): rxjs.Observable<INodeErrorLog>;
|
|
@@ -4587,6 +4616,7 @@ declare const nodeTypeDataState: {
|
|
|
4587
4616
|
};
|
|
4588
4617
|
interface INodeRequestParams {
|
|
4589
4618
|
version?: string;
|
|
4619
|
+
dataVersion?: string;
|
|
4590
4620
|
}
|
|
4591
4621
|
type dataTransformFunc = <T>(node: T) => T;
|
|
4592
4622
|
declare const mergeDataWithHeaders: <T extends JSONLD<NodeType>>(data: T, headers: HttpHeaders) => T & INodeHeaders;
|
|
@@ -5583,6 +5613,7 @@ type siteGroupedNode = Infrastructure;
|
|
|
5583
5613
|
type siteGroupedNodeExtended = siteGroupedNode & {
|
|
5584
5614
|
name: string;
|
|
5585
5615
|
'@id': string;
|
|
5616
|
+
dataVersion?: string;
|
|
5586
5617
|
};
|
|
5587
5618
|
declare enum View {
|
|
5588
5619
|
table = "Table",
|
|
@@ -5601,6 +5632,10 @@ declare class SitesNodesComponent {
|
|
|
5601
5632
|
protected readonly BlankNodesKey: typeof BlankNodesKey;
|
|
5602
5633
|
protected readonly siteTooBig: ({ area }: any) => boolean;
|
|
5603
5634
|
protected readonly defaultLabel: (node?: any) => any;
|
|
5635
|
+
protected readonly nodeVersionKey: (node?: {
|
|
5636
|
+
"@id"?: string;
|
|
5637
|
+
dataVersion?: string;
|
|
5638
|
+
}) => string;
|
|
5604
5639
|
protected readonly maxAreaSize = 5000;
|
|
5605
5640
|
protected readonly selectedGroup: _angular_core.WritableSignal<string>;
|
|
5606
5641
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
@@ -5698,6 +5733,7 @@ declare class SitesNodesComponent {
|
|
|
5698
5733
|
type: _hestia_earth_schema.SchemaType.Infrastructure;
|
|
5699
5734
|
id?: string;
|
|
5700
5735
|
'@id': string;
|
|
5736
|
+
dataVersion?: string;
|
|
5701
5737
|
}>;
|
|
5702
5738
|
protected readonly isOriginal: _angular_core.Signal<boolean>;
|
|
5703
5739
|
protected readonly isMeasurement: _angular_core.Signal<boolean>;
|
|
@@ -5764,5 +5800,5 @@ declare class TermsUnitsDescriptionComponent {
|
|
|
5764
5800
|
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>;
|
|
5765
5801
|
}
|
|
5766
5802
|
|
|
5767
|
-
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, KatexDirective, 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, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupChanged, groupJLogByField, groupJLogByTerm, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys, increaseScaleLimits, initialFilterState, injectResizeEvent$, inputGroupsTermTypes, isAddPropertyEnabled, isChrome, isDateBetween, isEqual, isExternal, isKeyClosedVisible, isKeyHidden, isMaxStage, isMethodModelAllowed, isNonNodeModelKey, isSchemaIri, isScrolledBelow, isState, isTermTypeAllowed, isValidKey, jLogModelCount, keyToDataPath, levels, listColor, listColorContinuous, listColorWithAlpha, loadMapApi, 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, 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 };
|
|
5803
|
+
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, KatexDirective, 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, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupChanged, groupJLogByField, groupJLogByTerm, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys, increaseScaleLimits, initialFilterState, injectResizeEvent$, inputGroupsTermTypes, isAddPropertyEnabled, isChrome, isDateBetween, isEqual, isExternal, isKeyClosedVisible, isKeyHidden, isMaxStage, isMethodModelAllowed, isNonNodeModelKey, isSchemaIri, isScrolledBelow, isState, isTermTypeAllowed, isValidKey, jLogModelCount, keyToDataPath, levels, listColor, listColorContinuous, listColorWithAlpha, loadMapApi, 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, 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, nodeVersionKey, nodesByState, nodesByType, numberGte, optionsFromGroup, parentKey, parentProperty, parseColor, parseData, parseDataPath, parseLines, parseMessage, parseNewValue, pluralize, pointToCoordinates, polygonBounds, polygonToCoordinates, polygonToMap, polygonsFromFeature, populateWithTrackIdsFilterData, postGuideEvent, primaryProduct, productsQuery, propertyError, propertyId, recursiveProperties, refToSchemaType, refreshPropertyKeys, regionsQuery, registerChart, repeat, reportIssueLink, reportIssueUrl, safeJSONParse, safeJSONStringify, schemaBaseUrl, schemaDataBaseUrl, schemaLink, schemaRequiredProperties, schemaTypeToDefaultValue, scrollToEl, scrollTop, searchFilterData, searchableTypes, siblingProperty, simplifyContributions, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, subValueKeys, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
5768
5804
|
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, IIdentityScalar, IIdentitySegment, IImpactAssessmentJSONLDExtended, IIssueParams, IJLogBlankNode, IJLogModelColumn, IJLogModelRun, IJLogTermGroup, IJSONData, IJSONNode, ILine, ILog, IMarker, IMessage, IMobileShellMenuButton, INavigationMenuLink, INewProperty, INodeContributions, INodeErrorLog, INodeHeaders, INodeLogs, INodeMissingLookupLog, INodeProperty, INodeRequestParams, INodeTermLog, INodeTermLogs, INonBlankNodeLog, IPolygonMap, IRelatedNode, ISearchParams, ISearchResultExtended, ISearchResults, IShellMenuButton, ISiteJSONLDExtended, IStoredNode, ISummary, ISummaryError, IToast, IValidationError, LollipopPluginSettings, RgbColor, SelectValue, SortOption, SortSelectEvent, SortSelectOrder, blankNodesTypeValue, chartExportFn, chartTooltipContentFn, contributions, feature, horizontalTooltipData, modelKey, nodeContributionsSimplified, nodes, nonBlankNodesTypeValue, searchResult, searchableType, sortOrders, suggestionType, svgIconNames, svgIconSizes, validationErrorKeyword, validationErrorLevel, validationErrorParam };
|