@hestia-earth/ui-components 0.41.58 → 0.41.60
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
|
@@ -3,7 +3,7 @@ import { Signal, InjectionToken, OnInit, OnDestroy, ElementRef, TemplateRef, Pip
|
|
|
3
3
|
import * as _angular_forms from '@angular/forms';
|
|
4
4
|
import { ControlValueAccessor as ControlValueAccessor$1, FormControl } from '@angular/forms';
|
|
5
5
|
import * as _hestia_earth_schema from '@hestia-earth/schema';
|
|
6
|
-
import { Source, Bibliography, TermTermType, blankNodesType, Term, Indicator, ITermJSONLD, EmissionMethodTier, ICycleJSONLD, IImpactAssessmentJSONLD, ISiteJSONLD, Animal, Transformation, blankNodesKey, NodeType, NonBlankNodesKey, Emission, CycleFunctionalUnit, BlankNodesKey, Practice, Input, Product, SchemaType, SiteSiteType, JSONLD, JSON, ISourceJSONLD, IndicatorMethodTier, sortConfig, Infrastructure, nonBlankNodesType, nonBlankNodesKey, Property, Measurement, Site, IOrganisationJSONLD, Organisation
|
|
6
|
+
import { Source, Bibliography, TermTermType, blankNodesType, Term, Indicator, ITermJSONLD, EmissionMethodTier, ICycleJSONLD, IImpactAssessmentJSONLD, ISiteJSONLD, Animal, Transformation, blankNodesKey, NodeType, NonBlankNodesKey, Emission, CycleFunctionalUnit, BlankNodesKey, Practice, Input, Product, SchemaType, SiteSiteType, JSONLD, JSON, ISourceJSONLD, IndicatorMethodTier, sortConfig, Infrastructure, nonBlankNodesType, nonBlankNodesKey, Property, Measurement, Site, IOrganisationJSONLD, Organisation } from '@hestia-earth/schema';
|
|
7
7
|
import * as chart_js from 'chart.js';
|
|
8
8
|
import { Chart, BarOptions, Plugin, ChartEvent, Color, ChartDataset, Scale, ChartConfiguration, ChartComponentLike, ChartData, ActiveElement } from 'chart.js';
|
|
9
9
|
import * as rxjs from 'rxjs';
|
|
@@ -5280,7 +5280,7 @@ interface ISiteJSONLDExtended extends ISiteJSONLD {
|
|
|
5280
5280
|
};
|
|
5281
5281
|
}
|
|
5282
5282
|
declare const maxAreaSize = 5000;
|
|
5283
|
-
declare const siteTooBig: ({ area }:
|
|
5283
|
+
declare const siteTooBig: ({ area }: any) => boolean;
|
|
5284
5284
|
declare const measurementValue: ({ value, depthLower, depthUpper, nodes }: Partial<IGroupedNode<Measurement>>, termId: string) => any;
|
|
5285
5285
|
declare const siteTypeToIcon: Record<SiteSiteType, svgIconNames>;
|
|
5286
5286
|
declare const siteTypeToColor: Record<SiteSiteType, string>;
|
|
@@ -5409,6 +5409,14 @@ declare class SitesMapsComponent implements OnDestroy {
|
|
|
5409
5409
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SitesMapsComponent, "he-sites-maps", never, { "loadPolygons": { "alias": "loadPolygons"; "required": false; "isSignal": true; }; "sites": { "alias": "sites"; "required": false; "isSignal": true; }; "zoom": { "alias": "zoom"; "required": false; "isSignal": true; }; "showNotice": { "alias": "showNotice"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5410
5410
|
}
|
|
5411
5411
|
|
|
5412
|
+
declare enum SiteNodesKeyGroup {
|
|
5413
|
+
infrastructure = "infrastructure"
|
|
5414
|
+
}
|
|
5415
|
+
type siteGroupedNode = Infrastructure;
|
|
5416
|
+
type siteGroupedNodeExtended = siteGroupedNode & {
|
|
5417
|
+
name: string;
|
|
5418
|
+
'@id': string;
|
|
5419
|
+
};
|
|
5412
5420
|
declare enum View {
|
|
5413
5421
|
table = "Table",
|
|
5414
5422
|
chart = "Chart",
|
|
@@ -5421,11 +5429,13 @@ declare class SitesNodesComponent {
|
|
|
5421
5429
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
5422
5430
|
protected readonly nodeKey: _angular_core.InputSignal<BlankNodesKey>;
|
|
5423
5431
|
protected readonly enableChart: _angular_core.InputSignal<boolean>;
|
|
5432
|
+
protected readonly nodeKeyGroup: _angular_core.InputSignal<SiteNodesKeyGroup>;
|
|
5424
5433
|
protected readonly TermTermType: typeof TermTermType;
|
|
5425
5434
|
protected readonly BlankNodesKey: typeof BlankNodesKey;
|
|
5426
|
-
protected readonly siteTooBig: ({ area }:
|
|
5435
|
+
protected readonly siteTooBig: ({ area }: any) => boolean;
|
|
5427
5436
|
protected readonly defaultLabel: (node?: any) => any;
|
|
5428
5437
|
protected readonly maxAreaSize = 5000;
|
|
5438
|
+
protected readonly selectedGroup: _angular_core.WritableSignal<string>;
|
|
5429
5439
|
protected readonly headerKeys: _angular_core.Signal<string[]>;
|
|
5430
5440
|
protected readonly View: typeof View;
|
|
5431
5441
|
protected readonly viewIcon: {
|
|
@@ -5436,9 +5446,15 @@ declare class SitesNodesComponent {
|
|
|
5436
5446
|
private readonly showView;
|
|
5437
5447
|
protected readonly views: _angular_core.Signal<View[]>;
|
|
5438
5448
|
protected readonly selectedView: _angular_core.WritableSignal<View>;
|
|
5449
|
+
private readonly allOriginalSites;
|
|
5450
|
+
private readonly allCurrentSites;
|
|
5439
5451
|
private readonly originalSites;
|
|
5440
|
-
protected readonly sites: _angular_core.Signal<ISiteJSONLD[]>;
|
|
5452
|
+
protected readonly sites: _angular_core.Signal<ISiteJSONLD[] | siteGroupedNodeExtended[]>;
|
|
5441
5453
|
protected readonly cycles: _angular_core.Signal<ISiteJSONLD[]>;
|
|
5454
|
+
private readonly groupedSiteNodes;
|
|
5455
|
+
protected readonly groupNodeDisplayNames: _angular_core.Signal<Record<string, string>>;
|
|
5456
|
+
protected readonly groupNodeValues: _angular_core.Signal<string[]>;
|
|
5457
|
+
protected readonly isGroupNode: _angular_core.Signal<boolean>;
|
|
5442
5458
|
protected readonly showSelectSite: _angular_core.Signal<boolean>;
|
|
5443
5459
|
private readonly selectedIndex;
|
|
5444
5460
|
private readonly ogirinalSelectedSite;
|
|
@@ -5446,6 +5462,7 @@ declare class SitesNodesComponent {
|
|
|
5446
5462
|
protected readonly selectedOriginalValues: _angular_core.Signal<any>;
|
|
5447
5463
|
protected readonly selectedRecalculatedValues: _angular_core.Signal<any>;
|
|
5448
5464
|
protected readonly selectedNode: _angular_core.Signal<{
|
|
5465
|
+
'@type': NodeType;
|
|
5449
5466
|
dataState: DataState;
|
|
5450
5467
|
description?: string;
|
|
5451
5468
|
organisation?: _hestia_earth_schema.IOrganisationJSONLD;
|
|
@@ -5467,9 +5484,9 @@ declare class SitesNodesComponent {
|
|
|
5467
5484
|
defaultMethodClassification?: _hestia_earth_schema.SiteDefaultMethodClassification;
|
|
5468
5485
|
defaultMethodClassificationDescription?: string;
|
|
5469
5486
|
defaultSource?: _hestia_earth_schema.ISourceJSONLD;
|
|
5470
|
-
measurements?: Measurement[];
|
|
5471
|
-
management?: Management[];
|
|
5472
|
-
infrastructure?:
|
|
5487
|
+
measurements?: _hestia_earth_schema.Measurement[];
|
|
5488
|
+
management?: _hestia_earth_schema.Management[];
|
|
5489
|
+
infrastructure?: Infrastructure[];
|
|
5473
5490
|
dataPrivate?: boolean;
|
|
5474
5491
|
boundaryArea?: number;
|
|
5475
5492
|
ecoregion?: string;
|
|
@@ -5488,9 +5505,31 @@ declare class SitesNodesComponent {
|
|
|
5488
5505
|
createdAt?: Date;
|
|
5489
5506
|
updatedAt?: Date;
|
|
5490
5507
|
'@context': string | Array<string | _hestia_earth_schema.IContext>;
|
|
5491
|
-
'@type': NodeType.Site;
|
|
5492
5508
|
'@id': string;
|
|
5493
5509
|
name: string;
|
|
5510
|
+
} | {
|
|
5511
|
+
'@type': NodeType;
|
|
5512
|
+
dataState: DataState;
|
|
5513
|
+
term?: _hestia_earth_schema.Term;
|
|
5514
|
+
name: string;
|
|
5515
|
+
description?: string;
|
|
5516
|
+
startDate?: string;
|
|
5517
|
+
endDate?: string;
|
|
5518
|
+
defaultLifespan?: number;
|
|
5519
|
+
defaultLifespanHours?: number;
|
|
5520
|
+
mass?: number;
|
|
5521
|
+
area?: number;
|
|
5522
|
+
ownershipStatus?: _hestia_earth_schema.InfrastructureOwnershipStatus;
|
|
5523
|
+
methodClassification?: _hestia_earth_schema.InfrastructureMethodClassification;
|
|
5524
|
+
methodClassificationDescription?: string;
|
|
5525
|
+
source?: _hestia_earth_schema.Source;
|
|
5526
|
+
impactAssessment?: _hestia_earth_schema.ImpactAssessment;
|
|
5527
|
+
inputs?: _hestia_earth_schema.Input[];
|
|
5528
|
+
transport?: _hestia_earth_schema.Transport[];
|
|
5529
|
+
schemaVersion?: string;
|
|
5530
|
+
type: _hestia_earth_schema.SchemaType.Infrastructure;
|
|
5531
|
+
id?: string;
|
|
5532
|
+
'@id': string;
|
|
5494
5533
|
}>;
|
|
5495
5534
|
protected readonly isOriginal: _angular_core.Signal<boolean>;
|
|
5496
5535
|
protected readonly isMeasurement: _angular_core.Signal<boolean>;
|
|
@@ -5504,7 +5543,7 @@ declare class SitesNodesComponent {
|
|
|
5504
5543
|
protected readonly hideZeroValues: _angular_core.WritableSignal<boolean>;
|
|
5505
5544
|
protected readonly hideIdenticalValues: _angular_core.WritableSignal<boolean>;
|
|
5506
5545
|
protected readonly csvFilename: _angular_core.Signal<string>;
|
|
5507
|
-
protected readonly data: _angular_core.Signal<IGroupedKeys<
|
|
5546
|
+
protected readonly data: _angular_core.Signal<IGroupedKeys<any>[]>;
|
|
5508
5547
|
constructor();
|
|
5509
5548
|
protected selectIndex({ target: { value } }: {
|
|
5510
5549
|
target: {
|
|
@@ -5513,7 +5552,7 @@ declare class SitesNodesComponent {
|
|
|
5513
5552
|
}): void;
|
|
5514
5553
|
protected showDownload(): void;
|
|
5515
5554
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SitesNodesComponent, never>;
|
|
5516
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SitesNodesComponent, "he-sites-nodes", never, { "dataState": { "alias": "dataState"; "required": false; "isSignal": true; }; "nodeKey": { "alias": "nodeKey"; "required": false; "isSignal": true; }; "enableChart": { "alias": "enableChart"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5555
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SitesNodesComponent, "he-sites-nodes", never, { "dataState": { "alias": "dataState"; "required": false; "isSignal": true; }; "nodeKey": { "alias": "nodeKey"; "required": false; "isSignal": true; }; "enableChart": { "alias": "enableChart"; "required": false; "isSignal": true; }; "nodeKeyGroup": { "alias": "nodeKeyGroup"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5517
5556
|
}
|
|
5518
5557
|
|
|
5519
5558
|
declare const termProperties: (term: Term | ITermJSONLD) => string[];
|
|
@@ -5557,5 +5596,5 @@ declare class TermsUnitsDescriptionComponent {
|
|
|
5557
5596
|
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>;
|
|
5558
5597
|
}
|
|
5559
5598
|
|
|
5560
|
-
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, 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 };
|
|
5599
|
+
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 };
|
|
5561
5600
|
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 };
|