@hestia-earth/ui-components 0.40.25 → 0.41.0
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.
|
@@ -3275,21 +3275,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
3275
3275
|
args: ['window:copy', ['$event']]
|
|
3276
3276
|
}] } });
|
|
3277
3277
|
|
|
3278
|
+
var CollapsibleBoxStyle;
|
|
3279
|
+
(function (CollapsibleBoxStyle) {
|
|
3280
|
+
CollapsibleBoxStyle["primary"] = "primary";
|
|
3281
|
+
CollapsibleBoxStyle["secondary"] = "secondary";
|
|
3282
|
+
CollapsibleBoxStyle["secondary-accent"] = "secondary-accent";
|
|
3283
|
+
})(CollapsibleBoxStyle || (CollapsibleBoxStyle = {}));
|
|
3278
3284
|
class CollapsibleBoxComponent {
|
|
3279
3285
|
constructor() {
|
|
3280
|
-
this.hostClass = 'box';
|
|
3281
3286
|
this.open = model(true, ...(ngDevMode ? [{ debugName: "open" }] : []));
|
|
3287
|
+
this.hasShadow = input(true, ...(ngDevMode ? [{ debugName: "hasShadow" }] : []));
|
|
3288
|
+
this.style = input(CollapsibleBoxStyle.primary, ...(ngDevMode ? [{ debugName: "style" }] : []));
|
|
3282
3289
|
}
|
|
3283
3290
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CollapsibleBoxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3284
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.6", type: CollapsibleBoxComponent, isStandalone: true, selector: "he-collapsible-box", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }
|
|
3291
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.6", type: CollapsibleBoxComponent, isStandalone: true, selector: "he-collapsible-box", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, hasShadow: { classPropertyName: "hasShadow", publicName: "hasShadow", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { open: "openChange" }, ngImport: i0, template: "<div\n class=\"is-flex is-flex-direction-column is-px-widescreen-4 | is-{{ style() }}\"\n [class.box]=\"hasShadow()\"\n [class.is-p-3]=\"hasShadow()\"\n [class.is-gap-24]=\"hasShadow()\">\n <div\n class=\"is-flex is-align-items-center is-justify-content-space-between is-gap-8 is-py-2 | collapsible-box--header\"\n [class.is-px-2]=\"!hasShadow()\">\n <ng-content select=\"[box-title]\" />\n\n <a class=\"has-text-secondary\" [class.is-px-3]=\"hasShadow()\" (click)=\"open.set(!open())\">\n <he-svg-icon [name]=\"open() ? 'chevron-up' : 'chevron-down'\" />\n </a>\n </div>\n\n @if (open()) {\n <div class=\"is-p-2 | collapsible-box--content\">\n <ng-content select=\"[box-content]\" />\n </div>\n }\n</div>\n", styles: [":host .is-primary .collapsible-box--header{border-bottom:1px solid #ffc000}:host .is-secondary .collapsible-box--header{border-bottom:1px solid #193957}:host .is-secondary-accent .collapsible-box--header{border-bottom:1px solid #dbe3ea}:host .is-secondary-accent:not(.box) .collapsible-box--header{border-radius:6px 6px 0 0;border:1px solid #dbe3ea}:host .is-secondary-accent:not(.box) .collapsible-box--content{border-radius:0 0 6px 6px;border:1px solid #dbe3ea;border-top:0}\n"], dependencies: [{ kind: "component", type: HESvgIconComponent, selector: "he-svg-icon", inputs: ["name", "size", "animation"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3285
3292
|
}
|
|
3286
3293
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: CollapsibleBoxComponent, decorators: [{
|
|
3287
3294
|
type: Component$1,
|
|
3288
|
-
args: [{ selector: 'he-collapsible-box', imports: [HESvgIconComponent], template: "<div
|
|
3289
|
-
}], propDecorators: {
|
|
3290
|
-
type: HostBinding,
|
|
3291
|
-
args: ['class']
|
|
3292
|
-
}], open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }, { type: i0.Output, args: ["openChange"] }] } });
|
|
3295
|
+
args: [{ selector: 'he-collapsible-box', imports: [HESvgIconComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"is-flex is-flex-direction-column is-px-widescreen-4 | is-{{ style() }}\"\n [class.box]=\"hasShadow()\"\n [class.is-p-3]=\"hasShadow()\"\n [class.is-gap-24]=\"hasShadow()\">\n <div\n class=\"is-flex is-align-items-center is-justify-content-space-between is-gap-8 is-py-2 | collapsible-box--header\"\n [class.is-px-2]=\"!hasShadow()\">\n <ng-content select=\"[box-title]\" />\n\n <a class=\"has-text-secondary\" [class.is-px-3]=\"hasShadow()\" (click)=\"open.set(!open())\">\n <he-svg-icon [name]=\"open() ? 'chevron-up' : 'chevron-down'\" />\n </a>\n </div>\n\n @if (open()) {\n <div class=\"is-p-2 | collapsible-box--content\">\n <ng-content select=\"[box-content]\" />\n </div>\n }\n</div>\n", styles: [":host .is-primary .collapsible-box--header{border-bottom:1px solid #ffc000}:host .is-secondary .collapsible-box--header{border-bottom:1px solid #193957}:host .is-secondary-accent .collapsible-box--header{border-bottom:1px solid #dbe3ea}:host .is-secondary-accent:not(.box) .collapsible-box--header{border-radius:6px 6px 0 0;border:1px solid #dbe3ea}:host .is-secondary-accent:not(.box) .collapsible-box--content{border-radius:0 0 6px 6px;border:1px solid #dbe3ea;border-top:0}\n"] }]
|
|
3296
|
+
}], propDecorators: { open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }, { type: i0.Output, args: ["openChange"] }], hasShadow: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasShadow", required: false }] }], style: [{ type: i0.Input, args: [{ isSignal: true, alias: "style", required: false }] }] } });
|
|
3293
3297
|
|
|
3294
3298
|
class DataTableComponent {
|
|
3295
3299
|
constructor() {
|
|
@@ -7193,7 +7197,6 @@ const logStatus = (data, logs, model, hasPreviousSuccess = false) => {
|
|
|
7193
7197
|
? LogStatus.dataProvided
|
|
7194
7198
|
: LogStatus.error;
|
|
7195
7199
|
};
|
|
7196
|
-
const removeConfigModelByStatus = (...statuses) => (model) => !statuses.includes(model?.status);
|
|
7197
7200
|
const keepConfigModelByStatus = (...statuses) => (model) => statuses.includes(model?.status);
|
|
7198
7201
|
const filterConfigModels = (models, filterFunc) => (Array.isArray(models) ? models : [models])
|
|
7199
7202
|
.filter(v => Array.isArray(v) || filterFunc(v))
|
|
@@ -7218,9 +7221,9 @@ const reduceValues = (values, termId) => {
|
|
|
7218
7221
|
};
|
|
7219
7222
|
const isRunOrchestrator = (log) => !('shouldRunOrchestrator' in log) || log.shouldRunOrchestrator;
|
|
7220
7223
|
const hasLog = (log, withOrchestrator = true) => !!log && ('shouldRun' in log || 'runRequired' in log || (withOrchestrator && 'shouldRunOrchestrator' in log));
|
|
7221
|
-
const isRecalculated
|
|
7224
|
+
const isRecalculated = (key) => (value) => [...(value.added || []), ...(value.updated || [])].includes(key);
|
|
7222
7225
|
const hasRecalculatedKeys = (value) => [...(value.added || []), ...(value.updated || [])].length > 0;
|
|
7223
|
-
const hasRecalculatedValue = (values, key = 'value') => values.some(isRecalculated
|
|
7226
|
+
const hasRecalculatedValue = (values, key = 'value') => values.some(isRecalculated(key));
|
|
7224
7227
|
const filterDeleted = (blankNodes) => (blankNodes || []).filter(value => !value.deleted);
|
|
7225
7228
|
const filterTransformation = (blankNodes) => (blankNodes || []).filter(value => !value.transformation);
|
|
7226
7229
|
const groupSubvalues = (subValues, termsGrouping) => Object.keys(termsGrouping).length
|
|
@@ -7264,7 +7267,6 @@ const blankNodeValueByKey = {
|
|
|
7264
7267
|
};
|
|
7265
7268
|
const blankNodeValue = (blankNodes, key, id, animalId) => blankNodeValueByKey[key in blankNodeValueByKey ? key : 'default'](blankNodes, key, id, animalId);
|
|
7266
7269
|
const subValueLogKey = ({ key, id }) => subValueKeys.includes(key) ? key : id || key || null;
|
|
7267
|
-
const inputValue = ({ value, coefficient } = {}) => [value, coefficient].every(isNumber) ? +value * +coefficient : undefined;
|
|
7268
7270
|
const logSubValue = (logs, key, prop, showUnits = false) => {
|
|
7269
7271
|
const log = logs[key]?.[prop];
|
|
7270
7272
|
return log
|
|
@@ -7461,7 +7463,6 @@ const isModelForInputProduct = (type, key) => [
|
|
|
7461
7463
|
!key.includes('/input/') || type === SchemaType.Input,
|
|
7462
7464
|
!key.includes('/product/') || type === SchemaType.Product
|
|
7463
7465
|
].every(Boolean);
|
|
7464
|
-
const isBackgroundInput = (log) => log.methodTier === EmissionMethodTier.background && !!log.input && log.shouldRun;
|
|
7465
7466
|
const isModelLog = (logs, type) => (key) => {
|
|
7466
7467
|
const log = logs[key];
|
|
7467
7468
|
// @note: 'shouldRunOrchestrator` and `runRequired` ignored
|
|
@@ -7718,7 +7719,7 @@ const groupdLogsByKey = (node, nodeKey, logs, originalValue, recalculatedValue)
|
|
|
7718
7719
|
originalValue: original,
|
|
7719
7720
|
recalculatedValue: recalculated,
|
|
7720
7721
|
isOriginal: !isUndefined(original),
|
|
7721
|
-
isRecalculated: isRecalculated
|
|
7722
|
+
isRecalculated: isRecalculated(key)(recalculatedValue),
|
|
7722
7723
|
hasData,
|
|
7723
7724
|
isRequired,
|
|
7724
7725
|
logs: keyLogs,
|
|
@@ -7747,7 +7748,7 @@ const groupsLogsByFields = (node, logs, originalValue, recalculatedValue) => {
|
|
|
7747
7748
|
originalValue: original,
|
|
7748
7749
|
recalculatedValue: recalculated,
|
|
7749
7750
|
isOriginal: !isUndefined(original),
|
|
7750
|
-
isRecalculated: isRecalculated
|
|
7751
|
+
isRecalculated: isRecalculated(key)(node),
|
|
7751
7752
|
hasData,
|
|
7752
7753
|
isRequired,
|
|
7753
7754
|
logs: keyLogs,
|
|
@@ -10030,9 +10031,6 @@ const isSchemaType = (value) => [
|
|
|
10030
10031
|
].some(Boolean);
|
|
10031
10032
|
const isGapFilled = ({ runStrategy, mergeStrategy, mergeArgs }) => ['add_blank_node_if_missing', 'add_key_if_missing'].includes(runStrategy) &&
|
|
10032
10033
|
(mergeStrategy !== 'list' || !mergeArgs?.replaceThreshold);
|
|
10033
|
-
const isRecalculated = ({ runStrategy, mergeStrategy, mergeArgs }) => ['add_blank_node_if_missing', 'add_key_if_missing'].includes(runStrategy) &&
|
|
10034
|
-
mergeStrategy === 'list' &&
|
|
10035
|
-
mergeArgs?.replaceThreshold;
|
|
10036
10034
|
const filterGapFilled = (configs, onlyGapFilled) => configs
|
|
10037
10035
|
.map(model => (Array.isArray(model) && onlyGapFilled ? model.filter(isGapFilled) : model))
|
|
10038
10036
|
.filter(model => !onlyGapFilled || Array.isArray(model) || isGapFilled(model));
|
|
@@ -10787,7 +10785,7 @@ const customErrorMessage = {
|
|
|
10787
10785
|
.join('\n'),
|
|
10788
10786
|
'must contain water inputs': () => `If ${schemaLink('Completeness#water', 'completeness.water')}=${code(true)} for irrigated Cycles, you must provide ${glossaryTypeLink(TermTermType.water)} inputs.
|
|
10789
10787
|
Otherwise, set ${schemaLink('Completeness#water', 'completeness.water')}=${code(false)}.`,
|
|
10790
|
-
'management date must be before cycle start date': (
|
|
10788
|
+
'management date must be before cycle start date': () => `The Site Management's dates must not overlap with any of the Cycles' dates.
|
|
10791
10789
|
The Site Management must only be used to record historical information about years preceding your first Cycle.
|
|
10792
10790
|
If you are trying to specify land management or practices that take place during the period covered by your Cycles, please do so directly in the Cycles, using the Product or Practice nodes.
|
|
10793
10791
|
Please refer to our Guide section on special case uploads for more information: ${guideLink('guide-file-upload-special-cases', 'special upload case')}.
|
|
@@ -11659,7 +11657,8 @@ class FilesFormComponent {
|
|
|
11659
11657
|
* Some errors can be matches with keys that are not present in the node. We need to show them at the top.
|
|
11660
11658
|
*/
|
|
11661
11659
|
this.unmatchedErrors = computed(() => this.errors()
|
|
11662
|
-
.filter(error =>
|
|
11660
|
+
.filter(error => error.dataPath?.length > 0 &&
|
|
11661
|
+
!(error.dataPath.replace(/\[/g, '.').split('.').filter(Boolean)?.[0] in this.node()))
|
|
11663
11662
|
.map(error => ({
|
|
11664
11663
|
id: propertyId(),
|
|
11665
11664
|
schema: this.schema(),
|
|
@@ -12952,7 +12951,7 @@ class HierarchyChartComponent {
|
|
|
12952
12951
|
label: 'Data'
|
|
12953
12952
|
}
|
|
12954
12953
|
];
|
|
12955
|
-
this.chartExportFn = async (format
|
|
12954
|
+
this.chartExportFn = async (format) => {
|
|
12956
12955
|
return {
|
|
12957
12956
|
png: () => this.downloadPng(),
|
|
12958
12957
|
svg: () => this.downloadSvg(),
|
|
@@ -14386,5 +14385,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
14386
14385
|
* Generated bundle index. Do not edit.
|
|
14387
14386
|
*/
|
|
14388
14387
|
|
|
14389
|
-
export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBoxComponent, ColorPalette, CompoundDirective, CompoundPipe, ControlValueAccessor, CycleNodesKeyGroup, CyclesCompletenessComponent, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, 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, MendeleySearchResult, MobileShellComponent, NavigationMenuComponent, NoExtPipe, NodeAggregatedComponent, NodeAggregatedInfoComponent, NodeAggregatedQualityScoreComponent, NodeCsvExportConfirmComponent, NodeCsvPreviewComponent, NodeCsvSelectHeadersComponent, NodeIconComponent, NodeJsonldComponent, NodeJsonldSchemaComponent, NodeKeyState, NodeLinkComponent, NodeLogsFileComponent, NodeLogsModelsComponent, NodeLogsTimeComponent, NodeMissingLookupFactorsComponent, NodeQualityScore, NodeRecommendationsComponent, NodeSelectComponent, NodeValueDetailsComponent, PluralizePipe, PopoverComponent, PopoverConfirmComponent, PrecisionPipe, RelatedNodeResult, RemoveMarkdownPipe, RepeatPipe, Repository, ResizedDirective, ResizedEvent, ResponsiveService, SchemaInfoComponent, SchemaVersionLinkComponent, SearchExtendComponent, ShelfDialogComponent, ShellComponent, SitesManagementChartComponent, SitesMapsComponent, SitesNodesComponent, SkeletonTextComponent, SocialTagsComponent, SortByPipe, SortSelectComponent, TagsInputDirective, Template, TermsPropertyContentComponent, TermsSubClassOfContentComponent, TermsUnitsDescriptionComponent, ThousandSuffixesPipe, ThousandsPipe, TimesPipe, ToastComponent, UncapitalizePipe, addPolygonToFeature, afterBarDrawPlugin, allCountriesQuery, allGroups, allOptions, arrayValue, availableProperties, 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, defaultFeature, defaultLabel, defaultSuggestionType, defaultSvgIconSize, defaultTicksFont, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadPng, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorHasError, errorHasWarning, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode$1 as 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, groupLogsByModel, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, guidePageId, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys$2 as ignoreKeys, 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$1 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, missingNodeErrors, modelCount, modelKeyParams, modelParams, models, multiMatchQuery, nestedProperty, nestingEnabled, nestingTypeEnabled, nodeAvailableProperties, nodeById, nodeColours$1 as nodeColours, nodeDataState, nodeId, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeUrl, nodeUrlParams, nodeVersion, nodesByState, nodesByType, numberGte, optionsFromGroup, parentKey, parentProperty, parseColor, parseData, parseDataPath, parseLines, parseMessage$1 as 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, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
14388
|
+
export { ARRAY_DELIMITER, ApplyPurePipe, BarChartComponent, BibliographiesSearchConfirmComponent, BlankNodeStateComponent, BlankNodeStateNoticeComponent, BlankNodeValueDeltaComponent, CapitalizePipe, ChartComponent, ChartConfigurationDirective, ChartExportButtonComponent, ChartTooltipComponent, ClickOutsideDirective, ClipboardComponent, CollapsibleBoxComponent, CollapsibleBoxStyle, ColorPalette, CompoundDirective, CompoundPipe, ControlValueAccessor, CycleNodesKeyGroup, CyclesCompletenessComponent, CyclesEmissionsChartComponent, CyclesFunctionalUnitMeasureComponent, CyclesMetadataComponent, CyclesNodesComponent, CyclesNodesTimelineComponent, CyclesResultComponent, DataTableComponent, DefaultPipe, DeltaColour, DistributionChartComponent, DrawerContainerComponent, DurationPipe, EllipsisPipe, EngineModelsLinkComponent, EngineModelsLookupInfoComponent, EngineModelsStageComponent, EngineModelsStageDeepComponent, EngineModelsStageDeepService, 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, MendeleySearchResult, MobileShellComponent, NavigationMenuComponent, NoExtPipe, NodeAggregatedComponent, NodeAggregatedInfoComponent, NodeAggregatedQualityScoreComponent, NodeCsvExportConfirmComponent, NodeCsvPreviewComponent, NodeCsvSelectHeadersComponent, NodeIconComponent, NodeJsonldComponent, NodeJsonldSchemaComponent, NodeKeyState, NodeLinkComponent, NodeLogsFileComponent, NodeLogsModelsComponent, NodeLogsTimeComponent, NodeMissingLookupFactorsComponent, NodeQualityScore, NodeRecommendationsComponent, NodeSelectComponent, NodeValueDetailsComponent, PluralizePipe, PopoverComponent, PopoverConfirmComponent, PrecisionPipe, RelatedNodeResult, RemoveMarkdownPipe, RepeatPipe, Repository, ResizedDirective, ResizedEvent, ResponsiveService, SchemaInfoComponent, SchemaVersionLinkComponent, SearchExtendComponent, ShelfDialogComponent, ShellComponent, SitesManagementChartComponent, SitesMapsComponent, SitesNodesComponent, SkeletonTextComponent, SocialTagsComponent, SortByPipe, SortSelectComponent, TagsInputDirective, Template, TermsPropertyContentComponent, TermsSubClassOfContentComponent, TermsUnitsDescriptionComponent, ThousandSuffixesPipe, ThousandsPipe, TimesPipe, ToastComponent, UncapitalizePipe, addPolygonToFeature, afterBarDrawPlugin, allCountriesQuery, allGroups, allOptions, arrayValue, availableProperties, 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, defaultFeature, defaultLabel, defaultSuggestionType, defaultSvgIconSize, defaultTicksFont, definitionToSchemaType, distinctUntilChangedDeep, downloadFile, downloadPng, downloadSvg, ellipsis, engineGitBaseUrl, engineGitUrl, errorHasError, errorHasWarning, errorText, evaluateSuccess, exportAsSVG, exportFormats, externalLink, externalNodeLink, fillColor, fillStyle, filterBlankNode$1 as 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, groupLogsByModel, groupLogsByTerm, groupNodesByTerm, groupdLogsByKey, grouppedKeys, grouppedValueKeys, groupsLogsByFields, guideModelUrl, guideNamespace, guidePageId, handleAPIError, handleGuideEvent, hasError, hasValidationError, hasWarning, hexToRgba, iconSizes, icons, ignoreKeys$2 as ignoreKeys, 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$1 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, missingNodeErrors, modelCount, modelKeyParams, modelParams, models, multiMatchQuery, nestedProperty, nestingEnabled, nestingTypeEnabled, nodeAvailableProperties, nodeById, nodeColours$1 as nodeColours, nodeDataState, nodeId, nodeIds, nodeLink, nodeLinkEnabled, nodeLinkTypeEnabled, nodeLogsUrl, nodeQualityScoreColor, nodeQualityScoreLevel, nodeQualityScoreMaxDefault, nodeQualityScoreOrder, nodeSecondaryColours, nodeToAggregationFilename, nodeType, nodeTypeDataState, nodeTypeIcon, nodeUrl, nodeUrlParams, nodeVersion, nodesByState, nodesByType, numberGte, optionsFromGroup, parentKey, parentProperty, parseColor, parseData, parseDataPath, parseLines, parseMessage$1 as 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, singleProperty, siteTooBig, siteTypeToColor, siteTypeToIcon, sortProperties, sortedDates, strokeColor, strokeStyle, suggestMatchQuery, suggestQuery, takeAfterViewInit, termLocation, termLocationName, termProperties, termTypeLabel, toSnakeCase, toThousands, typeToNewProperty, typeaheadFocus, uncapitalize, uniqueDatesBetween, updateProperties, valueLink, valueToString, valueTypeToDefault, valueValue, waitFor, wildcardQuery };
|
|
14390
14389
|
//# sourceMappingURL=hestia-earth-ui-components.mjs.map
|