@hestia-earth/ui-components 0.32.21 → 0.32.23
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/common/node-utils.d.ts +1 -1
- package/cycles/cycles-nodes/cycles-nodes.component.d.ts +2 -0
- package/fesm2022/hestia-earth-ui-components.mjs +69 -33
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/files/files-upload-errors/files-upload-errors.component.d.ts +3 -1
- package/impact-assessments/impact-assessments-products/impact-assessments-products.component.d.ts +1 -0
- package/node/node-aggregated-quality-score/node-aggregated-quality-score.component.d.ts +3 -0
- package/package.json +1 -1
- package/sites/sites-management-chart/sites-management-chart.component.d.ts +12 -2
- package/sites/sites-nodes/sites-nodes.component.d.ts +1 -0
package/common/node-utils.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare const getDatesBetween: (startDate: Date, endDate: Date) => Date[]
|
|
|
16
16
|
export declare const sortedDates: (dates: Date[]) => Date[];
|
|
17
17
|
export declare const uniqueDatesBetween: (dates: Date[]) => Date[];
|
|
18
18
|
export declare const isDateBetween: (date: string | Date, dates: IDates) => boolean;
|
|
19
|
-
export declare const filterBlankNode: (filterTerm
|
|
19
|
+
export declare const filterBlankNode: (filterTerm?: string, hideZeroValues?: boolean) => (node: blankNodesType) => boolean;
|
|
20
20
|
export declare const ignoreKeys: string[];
|
|
21
21
|
export declare const isValidKey: (key: string) => boolean;
|
|
22
22
|
export declare const isMethodModelAllowed: (filterMethod?: Term) => (node: Indicator) => boolean;
|
|
@@ -115,6 +115,7 @@ export declare class CyclesNodesComponent {
|
|
|
115
115
|
description?: string;
|
|
116
116
|
referencePeriod?: import("@hestia-earth/schema").AnimalReferencePeriod;
|
|
117
117
|
value?: number;
|
|
118
|
+
distribution?: (number)[];
|
|
118
119
|
sd?: number;
|
|
119
120
|
min?: number;
|
|
120
121
|
max?: number;
|
|
@@ -180,6 +181,7 @@ export declare class CyclesNodesComponent {
|
|
|
180
181
|
protected readonly filterTermTypes: import("@angular/core").Signal<TermTermType[]>;
|
|
181
182
|
protected readonly filterTerm: import("@angular/core").WritableSignal<string>;
|
|
182
183
|
protected readonly csvFilename: import("@angular/core").Signal<string>;
|
|
184
|
+
protected readonly hideZeroValues: import("@angular/core").WritableSignal<boolean>;
|
|
183
185
|
constructor();
|
|
184
186
|
private groupNodesByKey;
|
|
185
187
|
private groupEmissions;
|