@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.
@@ -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: string) => ({ term }: blankNodesType) => boolean;
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;