@hestia-earth/ui-components 0.43.4 → 0.43.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/hestia-earth-ui-components-file-errors.mjs +4 -1
- package/fesm2022/hestia-earth-ui-components-file-errors.mjs.map +1 -1
- package/fesm2022/hestia-earth-ui-components.mjs +130 -1
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/hestia-earth-ui-components.d.ts +70 -4
|
@@ -13430,6 +13430,135 @@ const calculateCycleStartDate = (properties, property) => {
|
|
|
13430
13430
|
return format(subDays(parseISO(endDate.value), cycleDuration.value), 'yyyy-MM-dd', { locale: enGB });
|
|
13431
13431
|
};
|
|
13432
13432
|
|
|
13433
|
+
/** Defaults matching the HESTIA upload cards; override per host for a different surface. */
|
|
13434
|
+
const defaultIdleBackground = '#f5fcff';
|
|
13435
|
+
const defaultDragBackground = '#f5f7f9';
|
|
13436
|
+
/**
|
|
13437
|
+
* Turns its host into a file drop zone: tints the host while a drag is over it, then emits the
|
|
13438
|
+
* dropped files filtered by `accept`.
|
|
13439
|
+
*
|
|
13440
|
+
* Dropping only — a host that also wants click-to-browse keeps its own
|
|
13441
|
+
* `<input type="file" hidden>`, which is how every current caller is built.
|
|
13442
|
+
*/
|
|
13443
|
+
class FilesDragDropDirective {
|
|
13444
|
+
constructor() {
|
|
13445
|
+
this.element = inject(ElementRef);
|
|
13446
|
+
/**
|
|
13447
|
+
* Comma-separated list of accepted extensions (e.g. `.csv,.json`), matching the native input
|
|
13448
|
+
* `accept` attribute. When set, dropped files not matching one of these extensions are dropped
|
|
13449
|
+
* silently — the native `accept` restricts the file picker only, never a drag and drop.
|
|
13450
|
+
*/
|
|
13451
|
+
this.accept = input('', ...(ngDevMode ? [{ debugName: "accept" }] : []));
|
|
13452
|
+
this.idleBackground = input(defaultIdleBackground, ...(ngDevMode ? [{ debugName: "idleBackground" }] : []));
|
|
13453
|
+
this.dragBackground = input(defaultDragBackground, ...(ngDevMode ? [{ debugName: "dragBackground" }] : []));
|
|
13454
|
+
this.fileDropped = output();
|
|
13455
|
+
this.dragging = signal(false, ...(ngDevMode ? [{ debugName: "dragging" }] : []));
|
|
13456
|
+
this.dragOpacity = 0.8;
|
|
13457
|
+
}
|
|
13458
|
+
onDragOver(event) {
|
|
13459
|
+
this.stop(event);
|
|
13460
|
+
this.dragging.set(true);
|
|
13461
|
+
}
|
|
13462
|
+
/**
|
|
13463
|
+
* `dragleave` also fires when the cursor crosses into one of the host's own children, which on
|
|
13464
|
+
* its own would flicker the tint off mid-drag. `relatedTarget` is the element being entered, so
|
|
13465
|
+
* only clear once it is outside the host — `null` included, meaning the drag left the window.
|
|
13466
|
+
*/
|
|
13467
|
+
onDragLeave(event) {
|
|
13468
|
+
this.stop(event);
|
|
13469
|
+
if (!this.element.nativeElement.contains(event.relatedTarget)) {
|
|
13470
|
+
this.dragging.set(false);
|
|
13471
|
+
}
|
|
13472
|
+
}
|
|
13473
|
+
onDrop(event) {
|
|
13474
|
+
this.stop(event);
|
|
13475
|
+
this.dragging.set(false);
|
|
13476
|
+
const files = this.accepted(Array.from(event.dataTransfer?.files ?? []));
|
|
13477
|
+
if (files.length) {
|
|
13478
|
+
this.fileDropped.emit({ files });
|
|
13479
|
+
}
|
|
13480
|
+
}
|
|
13481
|
+
/** A drop zone must swallow the event, or the browser navigates to the dropped file. */
|
|
13482
|
+
stop(event) {
|
|
13483
|
+
event.preventDefault();
|
|
13484
|
+
event.stopPropagation();
|
|
13485
|
+
}
|
|
13486
|
+
accepted(files) {
|
|
13487
|
+
const extensions = this.accept()
|
|
13488
|
+
.split(',')
|
|
13489
|
+
.map(extension => extension.trim().toLowerCase())
|
|
13490
|
+
.filter(Boolean);
|
|
13491
|
+
return extensions.length
|
|
13492
|
+
? files.filter(file => extensions.some(extension => file.name.toLowerCase().endsWith(extension)))
|
|
13493
|
+
: files;
|
|
13494
|
+
}
|
|
13495
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: FilesDragDropDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
13496
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.0.6", type: FilesDragDropDirective, isStandalone: true, selector: "[heFilesDragDrop]", inputs: { accept: { classPropertyName: "accept", publicName: "accept", isSignal: true, isRequired: false, transformFunction: null }, idleBackground: { classPropertyName: "idleBackground", publicName: "idleBackground", isSignal: true, isRequired: false, transformFunction: null }, dragBackground: { classPropertyName: "dragBackground", publicName: "dragBackground", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { fileDropped: "fileDropped" }, host: { listeners: { "dragover": "onDragOver($event)", "dragleave": "onDragLeave($event)", "drop": "onDrop($event)" }, properties: { "style.background-color": "dragging() ? dragBackground() : idleBackground()", "style.opacity": "dragging() ? dragOpacity : 1" } }, ngImport: i0 }); }
|
|
13497
|
+
}
|
|
13498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: FilesDragDropDirective, decorators: [{
|
|
13499
|
+
type: Directive,
|
|
13500
|
+
args: [{
|
|
13501
|
+
selector: '[heFilesDragDrop]',
|
|
13502
|
+
host: {
|
|
13503
|
+
'[style.background-color]': 'dragging() ? dragBackground() : idleBackground()',
|
|
13504
|
+
'[style.opacity]': 'dragging() ? dragOpacity : 1',
|
|
13505
|
+
'(dragover)': 'onDragOver($event)',
|
|
13506
|
+
'(dragleave)': 'onDragLeave($event)',
|
|
13507
|
+
'(drop)': 'onDrop($event)'
|
|
13508
|
+
}
|
|
13509
|
+
}]
|
|
13510
|
+
}], propDecorators: { accept: [{ type: i0.Input, args: [{ isSignal: true, alias: "accept", required: false }] }], idleBackground: [{ type: i0.Input, args: [{ isSignal: true, alias: "idleBackground", required: false }] }], dragBackground: [{ type: i0.Input, args: [{ isSignal: true, alias: "dragBackground", required: false }] }], fileDropped: [{ type: i0.Output, args: ["fileDropped"] }] } });
|
|
13511
|
+
|
|
13512
|
+
/**
|
|
13513
|
+
* The standard file drop zone: a dashed area that takes a file by drag and drop or by click, and
|
|
13514
|
+
* emits whichever files were chosen either way.
|
|
13515
|
+
*
|
|
13516
|
+
* It pairs the look with the behaviour on purpose. `FilesDragDropDirective` only tints the host and
|
|
13517
|
+
* reports a drop, so every caller was left to rebuild the same dashed box, cloud icon, "Browse
|
|
13518
|
+
* files" label and hidden `<input type="file">` around it — which is how the apps ended up with five
|
|
13519
|
+
* near-identical copies that had already drifted apart visually.
|
|
13520
|
+
*/
|
|
13521
|
+
class FilesDropZoneComponent {
|
|
13522
|
+
constructor() {
|
|
13523
|
+
/** Text before "Browse files" — e.g. `Drop your study here`, or `Drop your files here` when multiple. */
|
|
13524
|
+
this.label = input('Drop your file here', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
13525
|
+
/** Comma-separated extensions (e.g. `.csv,.json`), applied to both the picker and the drop. */
|
|
13526
|
+
this.accept = input('', ...(ngDevMode ? [{ debugName: "accept" }] : []));
|
|
13527
|
+
this.multiple = input(false, ...(ngDevMode ? [{ debugName: "multiple" }] : []));
|
|
13528
|
+
/** Greys the zone out and ignores both a click and a drop, for an upload already in progress. */
|
|
13529
|
+
this.disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
13530
|
+
/** Shown under the label when set, for callers that name the selected file inside the zone. */
|
|
13531
|
+
this.filename = input('', ...(ngDevMode ? [{ debugName: "filename" }] : []));
|
|
13532
|
+
this.filesSelected = output();
|
|
13533
|
+
this.fileInput = viewChild.required('fileInput');
|
|
13534
|
+
}
|
|
13535
|
+
onClick() {
|
|
13536
|
+
if (!this.disabled()) {
|
|
13537
|
+
this.fileInput().nativeElement.click();
|
|
13538
|
+
}
|
|
13539
|
+
}
|
|
13540
|
+
onDropped({ files }) {
|
|
13541
|
+
if (!this.disabled()) {
|
|
13542
|
+
this.filesSelected.emit(files);
|
|
13543
|
+
}
|
|
13544
|
+
}
|
|
13545
|
+
onPicked() {
|
|
13546
|
+
const input = this.fileInput().nativeElement;
|
|
13547
|
+
const files = Array.from(input.files ?? []);
|
|
13548
|
+
// Clear it, or picking the same file twice in a row fires no `change` event the second time.
|
|
13549
|
+
input.value = null;
|
|
13550
|
+
if (files.length) {
|
|
13551
|
+
this.filesSelected.emit(files);
|
|
13552
|
+
}
|
|
13553
|
+
}
|
|
13554
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: FilesDropZoneComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13555
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.6", type: FilesDropZoneComponent, isStandalone: true, selector: "he-files-drop-zone", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, accept: { classPropertyName: "accept", publicName: "accept", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, filename: { classPropertyName: "filename", publicName: "filename", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { filesSelected: "filesSelected" }, viewQueries: [{ propertyName: "fileInput", first: true, predicate: ["fileInput"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n class=\"w-100 | drop-zone\"\n [class.drop-zone--disabled]=\"disabled()\"\n heFilesDragDrop\n [accept]=\"accept()\"\n (click)=\"onClick()\"\n (fileDropped)=\"onDropped($event)\">\n <input\n hidden\n type=\"file\"\n #fileInput\n [multiple]=\"multiple()\"\n [accept]=\"accept()\"\n [disabled]=\"disabled()\"\n (change)=\"onPicked()\" />\n <div class=\"is-flex is-flex-direction-column is-align-items-center is-justify-content-center h-100\">\n <div class=\"is-flex is-align-items-center is-size-6\">\n <he-svg-icon name=\"cloud\" size=\"40\" />\n <p class=\"ml-2\">{{ label() }} or</p>\n <span class=\"ml-2 has-text-weight-bold is-clickable\">Browse files</span>\n </div>\n @if (filename()) {\n <p class=\"is-size-7 has-text-weight-bold\">{{ filename() }}</p>\n }\n </div>\n</div>\n", styles: [".drop-zone{min-height:72px;padding:.5rem;border-radius:6px;background-color:#fff!important;color:#4a4a4a;border:2px dashed #249da5}.drop-zone:hover{cursor:pointer;background-color:#d7f5f5!important}.drop-zone--disabled{background-color:#f5f5f5!important;color:#b5b5b5;border:2px dashed #b5b5b5}.drop-zone--disabled:hover{cursor:not-allowed;background-color:#f5f5f5!important}\n"], dependencies: [{ kind: "directive", type: FilesDragDropDirective, selector: "[heFilesDragDrop]", inputs: ["accept", "idleBackground", "dragBackground"], outputs: ["fileDropped"] }, { kind: "component", type: HESvgIconComponent, selector: "he-svg-icon", inputs: ["name", "size", "animation"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
13556
|
+
}
|
|
13557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: FilesDropZoneComponent, decorators: [{
|
|
13558
|
+
type: Component$1,
|
|
13559
|
+
args: [{ selector: 'he-files-drop-zone', imports: [FilesDragDropDirective, HESvgIconComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"w-100 | drop-zone\"\n [class.drop-zone--disabled]=\"disabled()\"\n heFilesDragDrop\n [accept]=\"accept()\"\n (click)=\"onClick()\"\n (fileDropped)=\"onDropped($event)\">\n <input\n hidden\n type=\"file\"\n #fileInput\n [multiple]=\"multiple()\"\n [accept]=\"accept()\"\n [disabled]=\"disabled()\"\n (change)=\"onPicked()\" />\n <div class=\"is-flex is-flex-direction-column is-align-items-center is-justify-content-center h-100\">\n <div class=\"is-flex is-align-items-center is-size-6\">\n <he-svg-icon name=\"cloud\" size=\"40\" />\n <p class=\"ml-2\">{{ label() }} or</p>\n <span class=\"ml-2 has-text-weight-bold is-clickable\">Browse files</span>\n </div>\n @if (filename()) {\n <p class=\"is-size-7 has-text-weight-bold\">{{ filename() }}</p>\n }\n </div>\n</div>\n", styles: [".drop-zone{min-height:72px;padding:.5rem;border-radius:6px;background-color:#fff!important;color:#4a4a4a;border:2px dashed #249da5}.drop-zone:hover{cursor:pointer;background-color:#d7f5f5!important}.drop-zone--disabled{background-color:#f5f5f5!important;color:#b5b5b5;border:2px dashed #b5b5b5}.drop-zone--disabled:hover{cursor:not-allowed;background-color:#f5f5f5!important}\n"] }]
|
|
13560
|
+
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], accept: [{ type: i0.Input, args: [{ isSignal: true, alias: "accept", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], filename: [{ type: i0.Input, args: [{ isSignal: true, alias: "filename", required: false }] }], filesSelected: [{ type: i0.Output, args: ["filesSelected"] }], fileInput: [{ type: i0.ViewChild, args: ['fileInput', { isSignal: true }] }] } });
|
|
13561
|
+
|
|
13433
13562
|
const siteLocation = ({ latitude, longitude }) => latitude && longitude
|
|
13434
13563
|
? {
|
|
13435
13564
|
lat: latitude,
|
|
@@ -16547,5 +16676,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
16547
16676
|
* Generated bundle index. Do not edit.
|
|
16548
16677
|
*/
|
|
16549
16678
|
|
|
16550
|
-
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, 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, defaultTicksFont, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadPng, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode$1 as filterBlankNode, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupChanged, groupDataByCategory, groupJLogByField, groupJLogByTerm, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, ignoreKeys$2 as 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, locationQuery, logToCsv$2 as 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$1 as 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, sumValues, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
16679
|
+
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, FilesDragDropDirective, FilesDropZoneComponent, FilesErrorSummaryComponent, FilesFormComponent, FilesFormEditableComponent, FilesUploadErrorsComponent, FilterAccordionComponent, GUIDE_ENABLED, GetPipe, GlossaryMigrationFormat, GuideOverlayComponent, 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, defaultTicksFont, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadPng, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode$1 as filterBlankNode, filterParams, findConfigModels, findMatchingModel, findModels, findNodeModel, findOrchestratorModel, findProperty, findPropertyById, flatFilterData, flatFilterNode, formatCustomErrorMessage, formatDate, formatError, formatPropertyError, formatter, getColor, getDatesBetween, gitBranch, gitHome, gitlabRawUrl, glossaryBaseUrl, glossaryLink, groupChanged, groupDataByCategory, groupJLogByField, groupJLogByTerm, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, ignoreKeys$2 as 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, locationQuery, logToCsv$2 as 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$1 as 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, sumValues, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
16551
16680
|
//# sourceMappingURL=hestia-earth-ui-components.mjs.map
|