@hestia-earth/ui-components 0.42.7 → 0.42.9
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
|
@@ -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,8 +5012,11 @@ 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>;
|
|
5018
|
+
protected readonly hasContributions: _angular_core.Signal<boolean>;
|
|
5019
|
+
protected readonly showContributionsLogs: _angular_core.WritableSignal<boolean>;
|
|
5015
5020
|
protected readonly isBlankNodes: _angular_core.Signal<boolean>;
|
|
5016
5021
|
private readonly failedTermIds;
|
|
5017
5022
|
private readonly failedTermsResource;
|
|
@@ -5032,11 +5037,6 @@ declare class NodeJLogModelsComponent {
|
|
|
5032
5037
|
protected methodName({ methodId, modelKey }: IJLogModelRun): string;
|
|
5033
5038
|
protected modelMethodTier(model: IJLogModelRun): any;
|
|
5034
5039
|
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
5040
|
protected toggleGroup(group: IJLogTermGroup): void;
|
|
5041
5041
|
protected toggleRow(row: IJLogBlankNode): void;
|
|
5042
5042
|
protected trackByGroup(_index: number, group: IJLogTermGroup): string;
|
|
@@ -5111,17 +5111,18 @@ declare class NodeLogsModelsComponent {
|
|
|
5111
5111
|
protected readonly isInSystemBoundary: (id: string) => boolean;
|
|
5112
5112
|
protected readonly showLegend: _angular_core.WritableSignal<boolean>;
|
|
5113
5113
|
protected readonly onlyRequired: _angular_core.WritableSignal<boolean>;
|
|
5114
|
+
protected readonly onlyRequiredId: string;
|
|
5114
5115
|
protected readonly showContributionsLogs: _angular_core.WritableSignal<boolean>;
|
|
5115
5116
|
private readonly schemaType;
|
|
5116
5117
|
protected readonly filteredType: _angular_core.Signal<string>;
|
|
5117
5118
|
protected readonly functionalUnit: _angular_core.Signal<any>;
|
|
5118
5119
|
protected readonly hasContributions: _angular_core.Signal<boolean>;
|
|
5119
|
-
protected readonly logsUrl: _angular_core.Signal<string>;
|
|
5120
5120
|
protected readonly nodeType: _angular_core.Signal<NodeType>;
|
|
5121
5121
|
private readonly jlogResource;
|
|
5122
5122
|
protected readonly jlog: _angular_core.Signal<Record<string, any>>;
|
|
5123
5123
|
protected readonly loadingJLog: _angular_core.Signal<boolean>;
|
|
5124
5124
|
protected readonly useJLog: _angular_core.Signal<boolean>;
|
|
5125
|
+
protected readonly logsUrl: _angular_core.Signal<string>;
|
|
5125
5126
|
private readonly logsResource;
|
|
5126
5127
|
private readonly allLogs;
|
|
5127
5128
|
protected readonly hasLogs: _angular_core.Signal<boolean>;
|