@hestia-earth/ui-components 0.42.16 → 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 +323 -56
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/file-errors/README.md +6 -4
- package/package.json +2 -1
- package/styles.scss +1 -0
- package/types/hestia-earth-ui-components.d.ts +53 -5
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/ui-components",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.18",
|
|
4
4
|
"description": "HESTIA reusable components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"date-fns": "^4.1.0",
|
|
43
43
|
"javascript-color-gradient": "^2.4.4",
|
|
44
44
|
"json-2-csv": "^5.4.0",
|
|
45
|
+
"katex": "^0.16.25",
|
|
45
46
|
"lodash.castarray": "^4.4.0",
|
|
46
47
|
"lodash.get": "^4.4.2",
|
|
47
48
|
"lodash.isequal": "^4.5.0",
|
package/styles.scss
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;
|
|
@@ -2054,6 +2063,19 @@ declare class IsObjectPipe implements PipeTransform {
|
|
|
2054
2063
|
static ɵpipe: _angular_core.ɵɵPipeDeclaration<IsObjectPipe, "isObject", true>;
|
|
2055
2064
|
}
|
|
2056
2065
|
|
|
2066
|
+
/**
|
|
2067
|
+
* Renders a KaTeX source string (without the `$$` delimiters) into the host element.
|
|
2068
|
+
* `\htmlData` is trusted so annotated formulas can carry `data-key` / `data-value`.
|
|
2069
|
+
*/
|
|
2070
|
+
declare class KatexDirective {
|
|
2071
|
+
private readonly elementRef;
|
|
2072
|
+
protected readonly heKatex: _angular_core.InputSignal<string>;
|
|
2073
|
+
protected readonly heKatexInline: _angular_core.InputSignal<boolean>;
|
|
2074
|
+
constructor();
|
|
2075
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KatexDirective, never>;
|
|
2076
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KatexDirective, "[heKatex]", never, { "heKatex": { "alias": "heKatex"; "required": true; "isSignal": true; }; "heKatexInline": { "alias": "heKatexInline"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2057
2079
|
declare class KeyToLabelPipe implements PipeTransform {
|
|
2058
2080
|
transform(value?: string): string;
|
|
2059
2081
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KeyToLabelPipe, never>;
|
|
@@ -2306,6 +2328,10 @@ declare class CyclesCompletenessComponent {
|
|
|
2306
2328
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
2307
2329
|
protected readonly schemaBaseUrl: string;
|
|
2308
2330
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2331
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2332
|
+
"@id"?: string;
|
|
2333
|
+
dataVersion?: string;
|
|
2334
|
+
}) => string;
|
|
2309
2335
|
protected readonly keyToLabel: (key: string) => string;
|
|
2310
2336
|
protected readonly getCompleteness: (cycle: any) => any;
|
|
2311
2337
|
protected readonly nodeKey = NonBlankNodesKey.completeness;
|
|
@@ -2432,6 +2458,10 @@ declare class CyclesMetadataComponent {
|
|
|
2432
2458
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
2433
2459
|
protected readonly schemaBaseUrl: string;
|
|
2434
2460
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2461
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2462
|
+
"@id"?: string;
|
|
2463
|
+
dataVersion?: string;
|
|
2464
|
+
}) => string;
|
|
2435
2465
|
protected readonly keyToLabel: (key: string) => string;
|
|
2436
2466
|
protected readonly NodeType: typeof NodeType;
|
|
2437
2467
|
protected readonly View: typeof View$3;
|
|
@@ -2490,6 +2520,7 @@ type groupedNodeExtended = groupedNode & {
|
|
|
2490
2520
|
'@id': string;
|
|
2491
2521
|
startDate?: string;
|
|
2492
2522
|
endDate: string;
|
|
2523
|
+
dataVersion?: string;
|
|
2493
2524
|
};
|
|
2494
2525
|
declare class CyclesNodesComponent {
|
|
2495
2526
|
private readonly modalService;
|
|
@@ -2505,6 +2536,10 @@ declare class CyclesNodesComponent {
|
|
|
2505
2536
|
protected readonly schemaBaseUrl: string;
|
|
2506
2537
|
protected readonly countGroupVisibleNodes: <T>(blankNodes: IGroupedKeys<T>[]) => number;
|
|
2507
2538
|
protected readonly defaultLabel: (node?: any) => any;
|
|
2539
|
+
protected readonly nodeVersionKey: (node?: {
|
|
2540
|
+
"@id"?: string;
|
|
2541
|
+
dataVersion?: string;
|
|
2542
|
+
}) => string;
|
|
2508
2543
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
2509
2544
|
protected readonly View: typeof View$2;
|
|
2510
2545
|
protected readonly viewIcon: {
|
|
@@ -2621,6 +2656,7 @@ declare class CyclesNodesComponent {
|
|
|
2621
2656
|
'@id': string;
|
|
2622
2657
|
startDate?: string;
|
|
2623
2658
|
endDate: string;
|
|
2659
|
+
dataVersion?: string;
|
|
2624
2660
|
} | {
|
|
2625
2661
|
'@type': NodeType;
|
|
2626
2662
|
type: NodeType;
|
|
@@ -2647,6 +2683,7 @@ declare class CyclesNodesComponent {
|
|
|
2647
2683
|
id?: string;
|
|
2648
2684
|
name: string;
|
|
2649
2685
|
'@id': string;
|
|
2686
|
+
dataVersion?: string;
|
|
2650
2687
|
}>;
|
|
2651
2688
|
private readonly isOriginal;
|
|
2652
2689
|
private readonly hasRecalculatedNodes;
|
|
@@ -4031,6 +4068,10 @@ declare class ImpactAssessmentsProductsComponent {
|
|
|
4031
4068
|
protected readonly filterTermTypes: _angular_core.InputSignal<TermTermType[]>;
|
|
4032
4069
|
protected readonly enableFilterMethodModel: _angular_core.InputSignal<boolean>;
|
|
4033
4070
|
protected readonly schemaBaseUrl: string;
|
|
4071
|
+
protected readonly nodeVersionKey: (node?: {
|
|
4072
|
+
"@id"?: string;
|
|
4073
|
+
dataVersion?: string;
|
|
4074
|
+
}) => string;
|
|
4034
4075
|
protected readonly countGroupVisibleNodes: <T>(blankNodes: IGroupedKeys<T>[]) => number;
|
|
4035
4076
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
4036
4077
|
protected readonly View: typeof View$1;
|
|
@@ -4473,7 +4514,7 @@ declare const nodeId: (node?: IJSONNode) => string;
|
|
|
4473
4514
|
* @returns The full url.
|
|
4474
4515
|
*/
|
|
4475
4516
|
declare const nodeUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
|
|
4476
|
-
declare const nodeLogsUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
|
|
4517
|
+
declare const nodeLogsUrl: (apiBaseUrl: string, { dataState, dataVersion, ...node }: IJSONNode) => string;
|
|
4477
4518
|
declare const lookupUrl: (filename: string) => string;
|
|
4478
4519
|
interface IJSONNode {
|
|
4479
4520
|
'@type'?: NodeType;
|
|
@@ -4483,6 +4524,7 @@ interface IJSONNode {
|
|
|
4483
4524
|
dataState?: DataState;
|
|
4484
4525
|
aggregated?: boolean;
|
|
4485
4526
|
aggregatedDataValidated?: boolean;
|
|
4527
|
+
dataVersion?: string;
|
|
4486
4528
|
}
|
|
4487
4529
|
interface INodeHeaders {
|
|
4488
4530
|
'last-modified'?: string;
|
|
@@ -4540,8 +4582,8 @@ declare class HeNodeService {
|
|
|
4540
4582
|
get$<T>(node: IJSONNode, params?: {}, onHeaders?: onHeadersCallback): rxjs.Observable<T>;
|
|
4541
4583
|
get<T>(node: IJSONNode, defaultForState?: boolean): Promise<T>;
|
|
4542
4584
|
head$(node: IJSONNode, dataVersion?: string): rxjs.Observable<INodeHeaders>;
|
|
4543
|
-
getRelated$(node: IJSONNode, relatedType: NodeType, limit?: number, offset?: number, relationship?: string): rxjs.Observable<RelatedNodeResult>;
|
|
4544
|
-
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>;
|
|
4545
4587
|
getContributions$({ dataState, ...impactAssessment }: IJSONNode & Partial<IImpactAssessmentJSONLD>): rxjs.Observable<INodeContributions>;
|
|
4546
4588
|
private getContributionsFromLog$;
|
|
4547
4589
|
getErrorLog$({ dataState, aggregated, ...node }: IJSONNode): rxjs.Observable<INodeErrorLog>;
|
|
@@ -4574,6 +4616,7 @@ declare const nodeTypeDataState: {
|
|
|
4574
4616
|
};
|
|
4575
4617
|
interface INodeRequestParams {
|
|
4576
4618
|
version?: string;
|
|
4619
|
+
dataVersion?: string;
|
|
4577
4620
|
}
|
|
4578
4621
|
type dataTransformFunc = <T>(node: T) => T;
|
|
4579
4622
|
declare const mergeDataWithHeaders: <T extends JSONLD<NodeType>>(data: T, headers: HttpHeaders) => T & INodeHeaders;
|
|
@@ -5008,7 +5051,6 @@ declare class NodeJLogModelsComponent {
|
|
|
5008
5051
|
protected readonly term: _angular_core.WritableSignal<ITermJSONLD>;
|
|
5009
5052
|
protected readonly nodeType: _angular_core.Signal<NodeType>;
|
|
5010
5053
|
protected readonly hasContributions: _angular_core.Signal<boolean>;
|
|
5011
|
-
protected readonly showContributionsLogs: _angular_core.WritableSignal<boolean>;
|
|
5012
5054
|
protected readonly isBlankNodes: _angular_core.Signal<boolean>;
|
|
5013
5055
|
private readonly failedTermIds;
|
|
5014
5056
|
private readonly failedTermsResource;
|
|
@@ -5571,6 +5613,7 @@ type siteGroupedNode = Infrastructure;
|
|
|
5571
5613
|
type siteGroupedNodeExtended = siteGroupedNode & {
|
|
5572
5614
|
name: string;
|
|
5573
5615
|
'@id': string;
|
|
5616
|
+
dataVersion?: string;
|
|
5574
5617
|
};
|
|
5575
5618
|
declare enum View {
|
|
5576
5619
|
table = "Table",
|
|
@@ -5589,6 +5632,10 @@ declare class SitesNodesComponent {
|
|
|
5589
5632
|
protected readonly BlankNodesKey: typeof BlankNodesKey;
|
|
5590
5633
|
protected readonly siteTooBig: ({ area }: any) => boolean;
|
|
5591
5634
|
protected readonly defaultLabel: (node?: any) => any;
|
|
5635
|
+
protected readonly nodeVersionKey: (node?: {
|
|
5636
|
+
"@id"?: string;
|
|
5637
|
+
dataVersion?: string;
|
|
5638
|
+
}) => string;
|
|
5592
5639
|
protected readonly maxAreaSize = 5000;
|
|
5593
5640
|
protected readonly selectedGroup: _angular_core.WritableSignal<string>;
|
|
5594
5641
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
@@ -5686,6 +5733,7 @@ declare class SitesNodesComponent {
|
|
|
5686
5733
|
type: _hestia_earth_schema.SchemaType.Infrastructure;
|
|
5687
5734
|
id?: string;
|
|
5688
5735
|
'@id': string;
|
|
5736
|
+
dataVersion?: string;
|
|
5689
5737
|
}>;
|
|
5690
5738
|
protected readonly isOriginal: _angular_core.Signal<boolean>;
|
|
5691
5739
|
protected readonly isMeasurement: _angular_core.Signal<boolean>;
|
|
@@ -5752,5 +5800,5 @@ declare class TermsUnitsDescriptionComponent {
|
|
|
5752
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>;
|
|
5753
5801
|
}
|
|
5754
5802
|
|
|
5755
|
-
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, 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 };
|
|
5756
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 };
|