@hestia-earth/ui-components 0.42.17 → 0.42.19
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 +97 -35
- 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 +54 -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,27 @@ 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;
|
|
1271
|
+
/**
|
|
1272
|
+
* The bare `@id` of a node, without any `#<dataVersion>` suffix (the inverse of `nodeVersionKey`).
|
|
1273
|
+
*/
|
|
1274
|
+
declare const nodeIdWithoutDataVersion: (id?: string) => string;
|
|
1275
|
+
/**
|
|
1276
|
+
* Resolve the `dataVersion` of a node, whether it is set as a property or encoded in the
|
|
1277
|
+
* `@id` as `<@id>#<dataVersion>`.
|
|
1278
|
+
*/
|
|
1279
|
+
declare const nodeDataVersion: (node?: {
|
|
1280
|
+
"@id"?: string;
|
|
1281
|
+
dataVersion?: string;
|
|
1282
|
+
}) => string;
|
|
1262
1283
|
declare const repeat: (times?: number) => number[];
|
|
1263
1284
|
declare const copyObject: (data?: any) => any;
|
|
1264
1285
|
declare const isEqual: (a: any, b: any) => boolean;
|
|
@@ -2319,6 +2340,10 @@ declare class CyclesCompletenessComponent {
|
|
|
2319
2340
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
2320
2341
|
protected readonly schemaBaseUrl: string;
|
|
2321
2342
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2343
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2344
|
+
"@id"?: string;
|
|
2345
|
+
dataVersion?: string;
|
|
2346
|
+
}) => string;
|
|
2322
2347
|
protected readonly keyToLabel: (key: string) => string;
|
|
2323
2348
|
protected readonly getCompleteness: (cycle: any) => any;
|
|
2324
2349
|
protected readonly nodeKey = NonBlankNodesKey.completeness;
|
|
@@ -2445,6 +2470,10 @@ declare class CyclesMetadataComponent {
|
|
|
2445
2470
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
2446
2471
|
protected readonly schemaBaseUrl: string;
|
|
2447
2472
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2473
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2474
|
+
"@id"?: string;
|
|
2475
|
+
dataVersion?: string;
|
|
2476
|
+
}) => string;
|
|
2448
2477
|
protected readonly keyToLabel: (key: string) => string;
|
|
2449
2478
|
protected readonly NodeType: typeof NodeType;
|
|
2450
2479
|
protected readonly View: typeof View$3;
|
|
@@ -2503,6 +2532,7 @@ type groupedNodeExtended = groupedNode & {
|
|
|
2503
2532
|
'@id': string;
|
|
2504
2533
|
startDate?: string;
|
|
2505
2534
|
endDate: string;
|
|
2535
|
+
dataVersion?: string;
|
|
2506
2536
|
};
|
|
2507
2537
|
declare class CyclesNodesComponent {
|
|
2508
2538
|
private readonly modalService;
|
|
@@ -2518,6 +2548,10 @@ declare class CyclesNodesComponent {
|
|
|
2518
2548
|
protected readonly schemaBaseUrl: string;
|
|
2519
2549
|
protected readonly countGroupVisibleNodes: <T>(blankNodes: IGroupedKeys<T>[]) => number;
|
|
2520
2550
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2551
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2552
|
+
"@id"?: string;
|
|
2553
|
+
dataVersion?: string;
|
|
2554
|
+
}) => string;
|
|
2521
2555
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
2522
2556
|
protected readonly View: typeof View$2;
|
|
2523
2557
|
protected readonly viewIcon: {
|
|
@@ -2634,6 +2668,7 @@ declare class CyclesNodesComponent {
|
|
|
2634
2668
|
'@id': string;
|
|
2635
2669
|
startDate?: string;
|
|
2636
2670
|
endDate: string;
|
|
2671
|
+
dataVersion?: string;
|
|
2637
2672
|
} | {
|
|
2638
2673
|
'@type': NodeType;
|
|
2639
2674
|
type: NodeType;
|
|
@@ -2660,6 +2695,7 @@ declare class CyclesNodesComponent {
|
|
|
2660
2695
|
id?: string;
|
|
2661
2696
|
name: string;
|
|
2662
2697
|
'@id': string;
|
|
2698
|
+
dataVersion?: string;
|
|
2663
2699
|
}>;
|
|
2664
2700
|
private readonly isOriginal;
|
|
2665
2701
|
private readonly hasRecalculatedNodes;
|
|
@@ -2906,6 +2942,7 @@ declare class EngineModelsStageDeepComponent<T extends NodeType> {
|
|
|
2906
2942
|
protected readonly expandedNode: _angular_core.InputSignal<IJSONLDExtended>;
|
|
2907
2943
|
protected readonly id: _angular_core.Signal<string>;
|
|
2908
2944
|
protected readonly type: _angular_core.Signal<NodeType>;
|
|
2945
|
+
protected readonly dataVersion: _angular_core.Signal<string>;
|
|
2909
2946
|
protected readonly recalculatedAt: _angular_core.Signal<any>;
|
|
2910
2947
|
private readonly relatedNodesResource;
|
|
2911
2948
|
protected readonly nodesLength: _angular_core.Signal<number>;
|
|
@@ -4044,6 +4081,10 @@ declare class ImpactAssessmentsProductsComponent {
|
|
|
4044
4081
|
protected readonly filterTermTypes: _angular_core.InputSignal<TermTermType[]>;
|
|
4045
4082
|
protected readonly enableFilterMethodModel: _angular_core.InputSignal<boolean>;
|
|
4046
4083
|
protected readonly schemaBaseUrl: string;
|
|
4084
|
+
protected readonly nodeVersionKey: (node?: {
|
|
4085
|
+
"@id"?: string;
|
|
4086
|
+
dataVersion?: string;
|
|
4087
|
+
}) => string;
|
|
4047
4088
|
protected readonly countGroupVisibleNodes: <T>(blankNodes: IGroupedKeys<T>[]) => number;
|
|
4048
4089
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
4049
4090
|
protected readonly View: typeof View$1;
|
|
@@ -4486,7 +4527,7 @@ declare const nodeId: (node?: IJSONNode) => string;
|
|
|
4486
4527
|
* @returns The full url.
|
|
4487
4528
|
*/
|
|
4488
4529
|
declare const nodeUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
|
|
4489
|
-
declare const nodeLogsUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
|
|
4530
|
+
declare const nodeLogsUrl: (apiBaseUrl: string, { dataState, dataVersion, ...node }: IJSONNode) => string;
|
|
4490
4531
|
declare const lookupUrl: (filename: string) => string;
|
|
4491
4532
|
interface IJSONNode {
|
|
4492
4533
|
'@type'?: NodeType;
|
|
@@ -4496,6 +4537,7 @@ interface IJSONNode {
|
|
|
4496
4537
|
dataState?: DataState;
|
|
4497
4538
|
aggregated?: boolean;
|
|
4498
4539
|
aggregatedDataValidated?: boolean;
|
|
4540
|
+
dataVersion?: string;
|
|
4499
4541
|
}
|
|
4500
4542
|
interface INodeHeaders {
|
|
4501
4543
|
'last-modified'?: string;
|
|
@@ -4553,8 +4595,8 @@ declare class HeNodeService {
|
|
|
4553
4595
|
get$<T>(node: IJSONNode, params?: {}, onHeaders?: onHeadersCallback): rxjs.Observable<T>;
|
|
4554
4596
|
get<T>(node: IJSONNode, defaultForState?: boolean): Promise<T>;
|
|
4555
4597
|
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>;
|
|
4598
|
+
getRelated$(node: IJSONNode, relatedType: NodeType, limit?: number, offset?: number, relationship?: string, dataVersion?: string): rxjs.Observable<RelatedNodeResult>;
|
|
4599
|
+
getLog$({ dataState, aggregated, dataVersion, ...node }: IJSONNode, format?: 'text' | 'json'): rxjs.Observable<any>;
|
|
4558
4600
|
getContributions$({ dataState, ...impactAssessment }: IJSONNode & Partial<IImpactAssessmentJSONLD>): rxjs.Observable<INodeContributions>;
|
|
4559
4601
|
private getContributionsFromLog$;
|
|
4560
4602
|
getErrorLog$({ dataState, aggregated, ...node }: IJSONNode): rxjs.Observable<INodeErrorLog>;
|
|
@@ -4587,7 +4629,9 @@ declare const nodeTypeDataState: {
|
|
|
4587
4629
|
};
|
|
4588
4630
|
interface INodeRequestParams {
|
|
4589
4631
|
version?: string;
|
|
4632
|
+
dataVersion?: string;
|
|
4590
4633
|
}
|
|
4634
|
+
declare const nodeRequestId: <T extends Pick<JSONLD<NodeType>, "@id">>(node: T, params?: INodeRequestParams) => string;
|
|
4591
4635
|
type dataTransformFunc = <T>(node: T) => T;
|
|
4592
4636
|
declare const mergeDataWithHeaders: <T extends JSONLD<NodeType>>(data: T, headers: HttpHeaders) => T & INodeHeaders;
|
|
4593
4637
|
declare const nodesByType: (nodes: nodes, nodeType: NodeType) => (nodeStates & IStoredNode)[];
|
|
@@ -5583,6 +5627,7 @@ type siteGroupedNode = Infrastructure;
|
|
|
5583
5627
|
type siteGroupedNodeExtended = siteGroupedNode & {
|
|
5584
5628
|
name: string;
|
|
5585
5629
|
'@id': string;
|
|
5630
|
+
dataVersion?: string;
|
|
5586
5631
|
};
|
|
5587
5632
|
declare enum View {
|
|
5588
5633
|
table = "Table",
|
|
@@ -5601,6 +5646,10 @@ declare class SitesNodesComponent {
|
|
|
5601
5646
|
protected readonly BlankNodesKey: typeof BlankNodesKey;
|
|
5602
5647
|
protected readonly siteTooBig: ({ area }: any) => boolean;
|
|
5603
5648
|
protected readonly defaultLabel: (node?: any) => any;
|
|
5649
|
+
protected readonly nodeVersionKey: (node?: {
|
|
5650
|
+
"@id"?: string;
|
|
5651
|
+
dataVersion?: string;
|
|
5652
|
+
}) => string;
|
|
5604
5653
|
protected readonly maxAreaSize = 5000;
|
|
5605
5654
|
protected readonly selectedGroup: _angular_core.WritableSignal<string>;
|
|
5606
5655
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
@@ -5698,6 +5747,7 @@ declare class SitesNodesComponent {
|
|
|
5698
5747
|
type: _hestia_earth_schema.SchemaType.Infrastructure;
|
|
5699
5748
|
id?: string;
|
|
5700
5749
|
'@id': string;
|
|
5750
|
+
dataVersion?: string;
|
|
5701
5751
|
}>;
|
|
5702
5752
|
protected readonly isOriginal: _angular_core.Signal<boolean>;
|
|
5703
5753
|
protected readonly isMeasurement: _angular_core.Signal<boolean>;
|
|
@@ -5764,5 +5814,5 @@ declare class TermsUnitsDescriptionComponent {
|
|
|
5764
5814
|
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
5815
|
}
|
|
5766
5816
|
|
|
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 };
|
|
5817
|
+
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, nodeDataVersion, nodeId, nodeIdWithoutDataVersion, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeRequestId, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeTypeIconSchema, nodeUrl, nodeUrlParams, nodeVersion, nodeVersionKey, nodesByState, nodesByType, numberGte, optionsFromGroup, parentKey, parentProperty, parseColor, parseData, parseDataPath, parseLines, parseMessage, parseNewValue, pluralize, pointToCoordinates, polygonBounds, polygonToCoordinates, polygonToMap, polygonsFromFeature, populateWithTrackIdsFilterData, postGuideEvent, primaryProduct, productsQuery, propertyError, propertyId, recursiveProperties, refToSchemaType, refreshPropertyKeys, regionsQuery, registerChart, repeat, reportIssueLink, reportIssueUrl, safeJSONParse, safeJSONStringify, schemaBaseUrl, schemaDataBaseUrl, schemaLink, schemaRequiredProperties, schemaTypeToDefaultValue, scrollToEl, scrollTop, searchFilterData, searchableTypes, siblingProperty, simplifyContributions, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, subValueKeys, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
5768
5818
|
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 };
|