@hestia-earth/ui-components 0.42.6 → 0.42.8
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/package.json
CHANGED
|
@@ -4477,7 +4477,7 @@ declare const groupLogsByTerm: (node: IJSONNode, logs: INodeLogs, config: IOrche
|
|
|
4477
4477
|
declare const groupdLogsByKey: (node: IJSONNode, nodeKey: nonBlankNodesKey, logs: INodeLogs, originalValue?: nonBlankNodesTypeValue, recalculatedValue?: nonBlankNodesTypeValue) => (key: string) => INonBlankNodeLog;
|
|
4478
4478
|
declare const groupsLogsByFields: (node: IJSONNode, logs: INodeLogs, originalValue?: Record<string, string | number>, recalculatedValue?: Record<string, string | number>) => (key: string) => INonBlankNodeLog;
|
|
4479
4479
|
declare const modelCount: (blankNodeLogs: IBlankNodeLog[]) => any;
|
|
4480
|
-
declare const logValueArray: (value:
|
|
4480
|
+
declare const logValueArray: (value: unknown) => (string | number | Record<string, string | number>)[];
|
|
4481
4481
|
|
|
4482
4482
|
declare const nodeType: (node?: IJSONNode) => NodeType;
|
|
4483
4483
|
declare const nodeId: (node?: IJSONNode) => string;
|
|
@@ -4698,10 +4698,11 @@ interface IJLogBlankNode {
|
|
|
4698
4698
|
original: blankNodesTypeValue[];
|
|
4699
4699
|
recalculated: blankNodesTypeValue[];
|
|
4700
4700
|
models: IJLogModelRun[];
|
|
4701
|
-
modelColumns
|
|
4701
|
+
modelColumns: IJLogModelColumn[];
|
|
4702
4702
|
subRows: IJLogBlankNode[];
|
|
4703
4703
|
canOpen: boolean;
|
|
4704
4704
|
isOpen: boolean;
|
|
4705
|
+
allSucceeded: boolean;
|
|
4705
4706
|
}
|
|
4706
4707
|
interface IJLogTermGroup {
|
|
4707
4708
|
term?: ITermJSONLD;
|
|
@@ -4713,6 +4714,7 @@ interface IJLogTermGroup {
|
|
|
4713
4714
|
recalculatedValue: propertyValueType;
|
|
4714
4715
|
canOpen: boolean;
|
|
4715
4716
|
isOpen: boolean;
|
|
4717
|
+
allSucceeded: boolean;
|
|
4716
4718
|
}
|
|
4717
4719
|
/**
|
|
4718
4720
|
* Group the `.jlog` logs for one node key into rows, one per term, keeping every blank node distinct.
|
|
@@ -5010,6 +5012,7 @@ declare class NodeJLogModelsComponent {
|
|
|
5010
5012
|
protected readonly isNumber: (value: any) => value is number;
|
|
5011
5013
|
protected readonly isEmptyValue: (value: any) => boolean;
|
|
5012
5014
|
protected readonly onlyRequired: _angular_core.WritableSignal<boolean>;
|
|
5015
|
+
protected readonly onlyRequiredId: string;
|
|
5013
5016
|
protected readonly term: _angular_core.WritableSignal<ITermJSONLD>;
|
|
5014
5017
|
protected readonly nodeType: _angular_core.Signal<NodeType>;
|
|
5015
5018
|
protected readonly isBlankNodes: _angular_core.Signal<boolean>;
|
|
@@ -5032,11 +5035,6 @@ declare class NodeJLogModelsComponent {
|
|
|
5032
5035
|
protected methodName({ methodId, modelKey }: IJLogModelRun): string;
|
|
5033
5036
|
protected modelMethodTier(model: IJLogModelRun): any;
|
|
5034
5037
|
protected readonly isArray: (arg: any) => arg is any[];
|
|
5035
|
-
protected modelColumns(row: IJLogBlankNode): IJLogModelColumn[];
|
|
5036
|
-
private readonly succeeded;
|
|
5037
|
-
protected subRowsAllSucceeded(row: IJLogBlankNode): boolean;
|
|
5038
|
-
protected groupAllSucceeded(group: IJLogTermGroup): boolean;
|
|
5039
|
-
private rowSucceeded;
|
|
5040
5038
|
protected toggleGroup(group: IJLogTermGroup): void;
|
|
5041
5039
|
protected toggleRow(row: IJLogBlankNode): void;
|
|
5042
5040
|
protected trackByGroup(_index: number, group: IJLogTermGroup): string;
|
|
@@ -5111,17 +5109,18 @@ declare class NodeLogsModelsComponent {
|
|
|
5111
5109
|
protected readonly isInSystemBoundary: (id: string) => boolean;
|
|
5112
5110
|
protected readonly showLegend: _angular_core.WritableSignal<boolean>;
|
|
5113
5111
|
protected readonly onlyRequired: _angular_core.WritableSignal<boolean>;
|
|
5112
|
+
protected readonly onlyRequiredId: string;
|
|
5114
5113
|
protected readonly showContributionsLogs: _angular_core.WritableSignal<boolean>;
|
|
5115
5114
|
private readonly schemaType;
|
|
5116
5115
|
protected readonly filteredType: _angular_core.Signal<string>;
|
|
5117
5116
|
protected readonly functionalUnit: _angular_core.Signal<any>;
|
|
5118
5117
|
protected readonly hasContributions: _angular_core.Signal<boolean>;
|
|
5119
|
-
protected readonly logsUrl: _angular_core.Signal<string>;
|
|
5120
5118
|
protected readonly nodeType: _angular_core.Signal<NodeType>;
|
|
5121
5119
|
private readonly jlogResource;
|
|
5122
5120
|
protected readonly jlog: _angular_core.Signal<Record<string, any>>;
|
|
5123
5121
|
protected readonly loadingJLog: _angular_core.Signal<boolean>;
|
|
5124
5122
|
protected readonly useJLog: _angular_core.Signal<boolean>;
|
|
5123
|
+
protected readonly logsUrl: _angular_core.Signal<string>;
|
|
5125
5124
|
private readonly logsResource;
|
|
5126
5125
|
private readonly allLogs;
|
|
5127
5126
|
protected readonly hasLogs: _angular_core.Signal<boolean>;
|