@hestia-earth/ui-components 0.40.15 → 0.40.17
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.
|
@@ -1273,6 +1273,10 @@ const defaultSettings$3 = Object.freeze({
|
|
|
1273
1273
|
}
|
|
1274
1274
|
}
|
|
1275
1275
|
});
|
|
1276
|
+
const defaultTicksFont = {
|
|
1277
|
+
family: 'Lato',
|
|
1278
|
+
size: 13
|
|
1279
|
+
};
|
|
1276
1280
|
class ChartComponent {
|
|
1277
1281
|
constructor() {
|
|
1278
1282
|
this.data = input(undefined, ...(ngDevMode ? [{ debugName: "data" }] : []));
|
|
@@ -1442,8 +1446,12 @@ const defaultSettings$2 = Object.freeze({
|
|
|
1442
1446
|
display: false,
|
|
1443
1447
|
color: grey,
|
|
1444
1448
|
font: {
|
|
1449
|
+
family: defaultTicksFont.family,
|
|
1445
1450
|
size: 14
|
|
1446
1451
|
}
|
|
1452
|
+
},
|
|
1453
|
+
ticks: {
|
|
1454
|
+
font: defaultTicksFont
|
|
1447
1455
|
}
|
|
1448
1456
|
},
|
|
1449
1457
|
y: {
|
|
@@ -1464,8 +1472,7 @@ const defaultSettings$2 = Object.freeze({
|
|
|
1464
1472
|
padding: 4,
|
|
1465
1473
|
crossAlign: 'center',
|
|
1466
1474
|
font: {
|
|
1467
|
-
|
|
1468
|
-
size: 12,
|
|
1475
|
+
...defaultTicksFont,
|
|
1469
1476
|
weight: 400
|
|
1470
1477
|
},
|
|
1471
1478
|
callback: function (value) {
|
|
@@ -1771,9 +1778,8 @@ class DistributionChartComponent {
|
|
|
1771
1778
|
y: {
|
|
1772
1779
|
ticks: {
|
|
1773
1780
|
font: {
|
|
1774
|
-
family:
|
|
1781
|
+
family: defaultTicksFont.family,
|
|
1775
1782
|
size: 10,
|
|
1776
|
-
style: 'normal',
|
|
1777
1783
|
weight: 400
|
|
1778
1784
|
},
|
|
1779
1785
|
color: '#4A4A4A'
|
|
@@ -1844,6 +1850,9 @@ const defaultSettings = Object.freeze({
|
|
|
1844
1850
|
type: 'time',
|
|
1845
1851
|
time: {
|
|
1846
1852
|
unit: 'day'
|
|
1853
|
+
},
|
|
1854
|
+
ticks: {
|
|
1855
|
+
font: defaultTicksFont
|
|
1847
1856
|
}
|
|
1848
1857
|
}
|
|
1849
1858
|
}
|
|
@@ -7223,6 +7232,7 @@ const isRecalculated$1 = (key) => (value) => [...(value.added || []), ...(value.
|
|
|
7223
7232
|
const hasRecalculatedKeys = (value) => [...(value.added || []), ...(value.updated || [])].length > 0;
|
|
7224
7233
|
const hasRecalculatedValue = (values, key = 'value') => values.some(isRecalculated$1(key));
|
|
7225
7234
|
const filterDeleted = (blankNodes) => (blankNodes || []).filter(value => !value.deleted);
|
|
7235
|
+
const filterTransformation = (blankNodes) => (blankNodes || []).filter(value => !value.transformation);
|
|
7226
7236
|
const groupSubvalues = (subValues, termsGrouping) => Object.keys(termsGrouping).length
|
|
7227
7237
|
? Object.values(subValues.reduce((prev, curr) => {
|
|
7228
7238
|
if (curr.id in termsGrouping) {
|
|
@@ -7647,6 +7657,12 @@ const groupLogsByTerm = (node, logs, config, allOriginalValues, allRecalculatedV
|
|
|
7647
7657
|
const isRequired = !Object.values(termLogs)
|
|
7648
7658
|
.filter(v => typeof v === 'object' && !Array.isArray(v) && !v.isKey)
|
|
7649
7659
|
.every(v => v.runRequired === false);
|
|
7660
|
+
const ignoreTransformationValues = [
|
|
7661
|
+
nodeType$1 === NodeType.Cycle,
|
|
7662
|
+
subValues.some(v => v.key === 'transformation')
|
|
7663
|
+
].every(Boolean);
|
|
7664
|
+
const filteredOriginalValues = ignoreTransformationValues ? filterTransformation(original) : original;
|
|
7665
|
+
const filteredRecalculatedValues = ignoreTransformationValues ? filterTransformation(recalculated) : recalculated;
|
|
7650
7666
|
const nodeLog = dataWithConfigModelLogs(termLogs)({
|
|
7651
7667
|
blankNode: true,
|
|
7652
7668
|
isOpen: defaultGroupOpen,
|
|
@@ -7655,12 +7671,12 @@ const groupLogsByTerm = (node, logs, config, allOriginalValues, allRecalculatedV
|
|
|
7655
7671
|
term,
|
|
7656
7672
|
type,
|
|
7657
7673
|
configModels,
|
|
7658
|
-
original,
|
|
7659
|
-
originalValue: reduceValues(
|
|
7660
|
-
recalculated,
|
|
7661
|
-
recalculatedValue: reduceValues(
|
|
7662
|
-
isOriginal: !!
|
|
7663
|
-
isRecalculated: hasRecalculatedValue(
|
|
7674
|
+
original: filteredOriginalValues,
|
|
7675
|
+
originalValue: reduceValues(filteredOriginalValues, termId),
|
|
7676
|
+
recalculated: filteredRecalculatedValues,
|
|
7677
|
+
recalculatedValue: reduceValues(filteredRecalculatedValues, termId),
|
|
7678
|
+
isOriginal: !!filteredOriginalValues.length,
|
|
7679
|
+
isRecalculated: hasRecalculatedValue(filteredRecalculatedValues),
|
|
7664
7680
|
hasData,
|
|
7665
7681
|
isRequired,
|
|
7666
7682
|
logs: termLogs,
|
|
@@ -10207,16 +10223,15 @@ const listAsCode = (values) => (values ?? []).map(code).join(', ');
|
|
|
10207
10223
|
const dataPathLabel = (dataPath = '') => parseDataPath(dataPath)
|
|
10208
10224
|
.filter(({ label }) => allowedDataPathsLabels.includes(label))
|
|
10209
10225
|
.pop()?.label;
|
|
10226
|
+
const guideLink = (guidePath, title) => externalLink(`${baseUrl()}/guide/${guidePath}`, title);
|
|
10210
10227
|
const glossaryTypeLink = (type, text = termTypeLabel(type)) => externalLink(`${glossaryBaseUrl()}?termType=${type}`, text);
|
|
10211
10228
|
const termLink = ({ id, name }) => externalLink(`${baseUrl()}/term/${id}`, name || id);
|
|
10212
10229
|
const dateFormatMessage = `Should follow the ISO 8601 date format, e.g. ${code(2000)}, or ${code('2000-12')}, or ${code('2000-12-30')}, and in some cases an optional time. Please refer to the schema for more details.`;
|
|
10213
10230
|
const threshold = (value) => code(`${value * 100}%`);
|
|
10214
10231
|
const joinValues = (values) => (values || []).filter(Boolean).map(code).join('<span>, </span>');
|
|
10215
|
-
const formatListLine = (
|
|
10216
|
-
|
|
10217
|
-
|
|
10218
|
-
.join('');
|
|
10219
|
-
const formatList = (values) => `<ul class="is-pl-3 is-list-style-disc is-nowrap">${formatListLine(values)}</ul>`;
|
|
10232
|
+
const formatListLine = (value) => `<li class="is-pre-wrap">${value}</li>`;
|
|
10233
|
+
const formatListLines = (values) => values.flat().map(formatListLine).join('');
|
|
10234
|
+
const formatList = (values, style = 'disc') => `<ul class="is-pl-3 is-list-style-${style} is-nowrap">${formatListLines(values)}</ul>`;
|
|
10220
10235
|
const noTillage = { id: 'noTillage', name: 'No tillage' };
|
|
10221
10236
|
const pastureGrass = { id: 'pastureGrass', name: 'Pasture grass' };
|
|
10222
10237
|
const idNotFoundDefaultMessage = `
|
|
@@ -10323,11 +10338,11 @@ const customErrorMessage = {
|
|
|
10323
10338
|
'should have the same length as endDate': () => `The startDate must be in the same date format as ${code('endDate')}: YYYY-MM-DD, YYYY-MM, or YYYY.`,
|
|
10324
10339
|
'node not found': (error, _errorCount, allErrors) => `${allErrors?.length
|
|
10325
10340
|
? `The following Nodes do not exist on the platform:
|
|
10326
|
-
${formatList(unique(allErrors.map(({ params }) =>
|
|
10341
|
+
${formatList(unique(allErrors.map(({ params }) => `${params?.node?.['@type']} with ${code(`@id=${params?.node?.['@id']}`)}`)))}`
|
|
10327
10342
|
: `The ${error.params?.node?.['@type']} with ${code(`@id=${error.params?.node?.['@id']}`)} does not exist on the platform.`} If you are trying to link to nodes included in this upload, you must use ${code('id')} field instead. Otherwise, please check the ids are correct and try again.`,
|
|
10328
10343
|
'should be linked to an existing node': (error, _errorCount, allErrors) => allErrors?.length
|
|
10329
10344
|
? `Your upload does not contain the following Nodes:
|
|
10330
|
-
${formatList(unique(allErrors.map(({ params }) =>
|
|
10345
|
+
${formatList(unique(allErrors.map(({ params }) => `${params?.node?.type} with ${code(`id=${params?.node?.id}`)}`)))}
|
|
10331
10346
|
If you are trying to link to an existing Node on the HESTIA platform, you must use ${code('@id')} field instead.
|
|
10332
10347
|
Otherwise you must include a full ${unique(allErrors.map(({ params }) => `${params?.node?.type} with id ${code(params?.node?.id)}.`)).join(', ')}`
|
|
10333
10348
|
: `Your upload does not contain a ${error.params?.node?.type} with ${code(`id=${error.params?.node?.id}`)}.
|
|
@@ -10425,11 +10440,11 @@ const customErrorMessage = {
|
|
|
10425
10440
|
? `${code(toPrecision(params?.expected, 3))}, but the value in the upload is ${code(toPrecision(params?.current, 3))}.
|
|
10426
10441
|
${params?.threshold ? `Our threshold is ±${threshold(params?.threshold)}.` : ''}
|
|
10427
10442
|
Please either:
|
|
10428
|
-
|
|
10429
|
-
|
|
10430
|
-
|
|
10431
|
-
|
|
10432
|
-
|
|
10443
|
+
${formatList([
|
|
10444
|
+
'Check the ${params?.term.termType} value you provided;',
|
|
10445
|
+
'Check the data you provided which is the input into this model;',
|
|
10446
|
+
'Carefully read the documentation to understand if we used a default property as part of the calculations.'
|
|
10447
|
+
], 'decimal')}`
|
|
10433
10448
|
: 'not consistent with the model result.'}`,
|
|
10434
10449
|
'the measurement provided might be in error': ({ params }, errorCount) => `The expected value for ${code(params?.term.name)}
|
|
10435
10450
|
${params?.model?.name ? `using ${code(params.model.name)} ` : ''}
|
|
@@ -10483,11 +10498,11 @@ const customErrorMessage = {
|
|
|
10483
10498
|
? ` Instead use the ${termLink({ id: 'nitrogenContent', name: 'Nitrogen Content' })} Property on the ${code('kg')} term to define the nitrogen content of the ${code(params?.term?.termType)}.`
|
|
10484
10499
|
: ''}`,
|
|
10485
10500
|
'is missing required bibliographic information': () => `The automatic bibliography search failed for this Bibliography. Either:
|
|
10486
|
-
|
|
10487
|
-
|
|
10488
|
-
|
|
10489
|
-
|
|
10490
|
-
|
|
10501
|
+
${formatList([
|
|
10502
|
+
`Manually fill-in the <b>required</b> bibliographic information as per ${schemaLink(SchemaType.Bibliography, 'our schema')}.`,
|
|
10503
|
+
`Provide the ${code('documentDOI')} as well as the ${code('title')}.`,
|
|
10504
|
+
`Check the ${code('documentDOI')} and ${code('title')} for typos against the ${externalLink('https://www.mendeley.com', 'Mendeley catalogue')}.`
|
|
10505
|
+
], 'decimal')}`,
|
|
10491
10506
|
'should be lower than max size': ({ params }) => `The boundary or region is >${params?.expected}km2 and is too large to reliably gap fill Measurements.
|
|
10492
10507
|
If you are able to use a more specific region or smaller boundary, please do.`,
|
|
10493
10508
|
'an excreta input is required when using an excretaManagement practice': ({ dataPath }) => {
|
|
@@ -10573,16 +10588,16 @@ const customErrorMessage = {
|
|
|
10573
10588
|
<br/>
|
|
10574
10589
|
The fate can be added using:
|
|
10575
10590
|
${formatList([
|
|
10576
|
-
`
|
|
10577
|
-
`
|
|
10591
|
+
`The ${glossaryTypeLink(TermTermType.cropResidueManagement)} practices; and`,
|
|
10592
|
+
`The ${glossaryTypeLink(TermTermType.cropResidue)} products.`
|
|
10578
10593
|
])}
|
|
10579
10594
|
`,
|
|
10580
10595
|
'should specify the fate of cropResidue': () => `You have not specified the fate of the crop residue.
|
|
10581
10596
|
Adding this information will improve emissions and soil carbon stock calculations.
|
|
10582
10597
|
The fate can be added using:
|
|
10583
10598
|
${formatList([
|
|
10584
|
-
`
|
|
10585
|
-
`
|
|
10599
|
+
`The ${glossaryTypeLink(TermTermType.cropResidueManagement)} practices; and/or`,
|
|
10600
|
+
`The ${glossaryTypeLink(TermTermType.cropResidue)} products.`
|
|
10586
10601
|
])}
|
|
10587
10602
|
Remember to set ${code('completeness.cropResidue')} to ${code(true)} if both the above and below ground crop residue quantities and fates are specified.`,
|
|
10588
10603
|
'should have the same privacy as the related source': ({ params }) => `To link to a ${(params?.defaultSource || params?.source)?.dataPrivate ? 'private' : 'public'} Source,
|
|
@@ -10637,9 +10652,7 @@ const customErrorMessage = {
|
|
|
10637
10652
|
We recommend adding this to the Site, including information about current and historical tillage.
|
|
10638
10653
|
`}
|
|
10639
10654
|
We use this information to model CO<sub>2</sub> emissions from soil organic carbon change.`,
|
|
10640
|
-
'can not be used on this termType': ({ params }) => `This Property can only be used on blank nodes with the following ${code('term.termType')}: ${params.expected
|
|
10641
|
-
.map(code)
|
|
10642
|
-
.join(', ')}.`,
|
|
10655
|
+
'can not be used on this termType': ({ params }) => `This Property can only be used on blank nodes with the following ${code('term.termType')}: ${listAsCode(params.expected)}.`,
|
|
10643
10656
|
'not a valid GeoJSON': ({ params }) => `
|
|
10644
10657
|
${params?.invalidCoordinates === 'true'
|
|
10645
10658
|
? `GeoJSON data should follow the WGS84 datum.
|
|
@@ -10743,9 +10756,12 @@ const customErrorMessage = {
|
|
|
10743
10756
|
'primaryPercent not allowed on this siteType': ({ params }) => `The ${schemaLink('Practice#primaryPercent', 'primaryPercent')} can only be used on ${schemaLink('Site#siteType', 'siteType')} ${params?.expected?.map(code).join(' or ')}.`,
|
|
10744
10757
|
'primaryPercent not allowed on this practice': () => `This practice is not a processing operation.
|
|
10745
10758
|
You can only add the ${schemaLink('Practice#primaryPercent', 'primaryPercent')} field to terms with ${code('termType')} = ${code(TermTermType.operation)} and lookup ${code('isProcessingOperation')} = ${code(true)}.`,
|
|
10746
|
-
'at least one landCover practice must match an equivalent product': ({ params }) => `
|
|
10747
|
-
|
|
10748
|
-
.
|
|
10759
|
+
'at least one landCover practice must match an equivalent product': ({ params }) => `To ensure there is no conflicting data between your Cycle and Products, your specified ${code(TermTermType.landCover)} Practices must match a Product.
|
|
10760
|
+
${formatList([
|
|
10761
|
+
`Ensure at least one Practice matches a Product (e.g., ${listAsCode(params?.current)} matching ${listAsCode(params?.expected)}). Check ${code('landCoverTermId')} in the glossary for equivalents.`,
|
|
10762
|
+
`If specifying fallow periods, you must also include the Product's equivalent Practice with a ${code('startDate')} and ${code('endDate')}.`,
|
|
10763
|
+
`Alternatively, do not set these ${code(TermTermType.landCover)} practices, and they will be gap filled automatically from products.`
|
|
10764
|
+
])}`,
|
|
10749
10765
|
'should match the site management node value': () => `The data you have uploaded in the Management node are not consistent with the data provided in the Cycles.
|
|
10750
10766
|
If the same ${code('term')} is used between the same ${code('startDate')} and ${code('endDate')}, they must have the same ${code('value')} in ${code('Management')} and in the Cycles.
|
|
10751
10767
|
Please check your upload and ensure that the data is consistent throughout.`,
|
|
@@ -10755,7 +10771,7 @@ const customErrorMessage = {
|
|
|
10755
10771
|
name: 'Saplings, depreciated amount per Cycle'
|
|
10756
10772
|
})}.
|
|
10757
10773
|
This input should be present in each plantation Cycle in your upload, with the ${code('value')} being the total number of ${code('Saplings')} used divided by the number of possible Cycles in the plantation's lifespan.
|
|
10758
|
-
See the ${
|
|
10774
|
+
See the ${guideLink('guide-file-upload-special-cases', 'special upload case')} for more details.`,
|
|
10759
10775
|
'must be linked to a verified country-level Impact Assessment': ({ params }) => [
|
|
10760
10776
|
'This Input must be linked to a country-level verified aggregation, but none could be found.',
|
|
10761
10777
|
params?.current ? 'Note: using a verified World aggregation is not valid.' : ''
|
|
@@ -10764,8 +10780,12 @@ const customErrorMessage = {
|
|
|
10764
10780
|
.join('\n'),
|
|
10765
10781
|
'must contain water inputs': () => `If ${schemaLink('Completeness#water', 'completeness.water')}=${code(true)} for irrigated Cycles, you must provide ${glossaryTypeLink(TermTermType.water)} inputs.
|
|
10766
10782
|
Otherwise, set ${schemaLink('Completeness#water', 'completeness.water')}=${code(false)}.`,
|
|
10767
|
-
'management date must be before cycle start date': ({ params }) => `The Site Management dates must
|
|
10768
|
-
|
|
10783
|
+
'management date must be before cycle start date': ({ params }) => `The Site Management's dates must not overlap with any of the Cycles' dates.
|
|
10784
|
+
The Site Management must only be used to record historical information about years preceding your first Cycle.
|
|
10785
|
+
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.
|
|
10786
|
+
Please refer to our Guide section on special case uploads for more information: ${guideLink('guide-file-upload-special-cases', 'special upload case')}.
|
|
10787
|
+
Note: if the first Cycle ${code('startDate')} is not provided, the ${code('cycleDuration')} can be used to set the earliest date of overlap.
|
|
10788
|
+
If the first Cycle ${code('cycleDuration')} is not provided, the lookup of the ${code('maximumCycleDuration')} primary Product can be used to set the earliest date of overlap.`,
|
|
10769
10789
|
'must be in the same format as endDate': () => `The date format does not match the format of ${code('endDate')}. You must use the same date format for both fields.`,
|
|
10770
10790
|
'must be at least equal to the minimum value': ({ params: { min } }) => `Must be at least equal to ${min}`,
|
|
10771
10791
|
'must equal to endDate - startDate in days': ({ params: { expected } }) => `Must be equal to ${code('endDate')} - ${code('startDate')} in days (inclusive of the ${code('startDate')} and ${code('endDate')} days) (~${expected})`,
|
|
@@ -12496,12 +12516,13 @@ const restoreChildren = (node) => {
|
|
|
12496
12516
|
const wrap = (selection, maxWidth = nodeContentWidth) => {
|
|
12497
12517
|
selection.each(function (d) {
|
|
12498
12518
|
const t = select(this);
|
|
12519
|
+
const units = ellipsis$1(d.data.units, 20);
|
|
12499
12520
|
d3wrap(t, {
|
|
12500
12521
|
maxWidth,
|
|
12501
12522
|
maxLines: d.data.showBar ? 2 : 3,
|
|
12502
12523
|
vcentre: !d.data.showBar,
|
|
12503
|
-
words: [...d.data.label.split(/\s+/),
|
|
12504
|
-
ownLineWord:
|
|
12524
|
+
words: [...d.data.label.split(/\s+/), units],
|
|
12525
|
+
ownLineWord: units,
|
|
12505
12526
|
nHeight: nodeHeight,
|
|
12506
12527
|
lHeight: lineHeight
|
|
12507
12528
|
});
|
|
@@ -14338,5 +14359,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
|
|
|
14338
14359
|
* Generated bundle index. Do not edit.
|
|
14339
14360
|
*/
|
|
14340
14361
|
|
|
14341
|
-
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, 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, valueTypeToDefault, waitFor, wildcardQuery };
|
|
14362
|
+
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, valueTypeToDefault, waitFor, wildcardQuery };
|
|
14342
14363
|
//# sourceMappingURL=hestia-earth-ui-components.mjs.map
|