@hestia-earth/ui-components 0.41.36 → 0.41.37
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
|
@@ -4370,7 +4370,7 @@ declare class HeNodeService {
|
|
|
4370
4370
|
head$(node: IJSONNode, dataVersion?: string): Observable<INodeHeaders>;
|
|
4371
4371
|
getRelated$(node: IJSONNode, relatedType: NodeType, limit?: number, offset?: number, relationship?: string): Observable<RelatedNodeResult>;
|
|
4372
4372
|
getLog$({ dataState, aggregated, ...node }: IJSONNode, format?: 'text' | 'json'): Observable<any>;
|
|
4373
|
-
getContributions$({ dataState, ...impactAssessment }: IJSONNode & IImpactAssessmentJSONLD): Observable<INodeContributions>;
|
|
4373
|
+
getContributions$({ dataState, ...impactAssessment }: IJSONNode & Partial<IImpactAssessmentJSONLD>): Observable<INodeContributions>;
|
|
4374
4374
|
private getContributionsFromLog$;
|
|
4375
4375
|
getErrorLog$({ dataState, aggregated, ...node }: IJSONNode): Observable<INodeErrorLog>;
|
|
4376
4376
|
getMissingLookupsLog$({ dataState, ...node }: IJSONNode): Observable<INodeMissingLookupLog[]>;
|
|
@@ -4740,6 +4740,7 @@ declare class NodeLogsModelsComponent {
|
|
|
4740
4740
|
protected readonly isEmpty: (value: any, minKeys?: number) => boolean;
|
|
4741
4741
|
protected readonly schemaBaseUrl: string;
|
|
4742
4742
|
protected readonly isExternal: boolean;
|
|
4743
|
+
protected readonly NodeType: typeof NodeType;
|
|
4743
4744
|
protected readonly CycleFunctionalUnit: typeof CycleFunctionalUnit;
|
|
4744
4745
|
protected readonly EmissionMethodTier: typeof EmissionMethodTier;
|
|
4745
4746
|
protected readonly LogStatus: typeof LogStatus;
|
|
@@ -4761,6 +4762,7 @@ declare class NodeLogsModelsComponent {
|
|
|
4761
4762
|
protected readonly isInSystemBoundary: (id: string) => boolean;
|
|
4762
4763
|
protected readonly showLegend: _angular_core.WritableSignal<boolean>;
|
|
4763
4764
|
protected readonly onlyRequired: _angular_core.WritableSignal<boolean>;
|
|
4765
|
+
protected readonly showContributionsLogs: _angular_core.WritableSignal<boolean>;
|
|
4764
4766
|
private readonly schemaType;
|
|
4765
4767
|
protected readonly filteredType: _angular_core.Signal<string>;
|
|
4766
4768
|
protected readonly functionalUnit: _angular_core.Signal<any>;
|
|
@@ -4916,8 +4918,10 @@ declare class NodeValueDetailsComponent<T extends Exclude<blankNodesType, Infras
|
|
|
4916
4918
|
protected readonly nodeType: _angular_core.InputSignal<NodeType>;
|
|
4917
4919
|
protected readonly dataState: _angular_core.InputSignal<DataState>;
|
|
4918
4920
|
protected readonly dataKey: _angular_core.InputSignal<string>;
|
|
4921
|
+
protected readonly aggregated: _angular_core.InputSignal<boolean>;
|
|
4919
4922
|
protected readonly nodes: _angular_core.Signal<T[]>;
|
|
4920
4923
|
protected readonly node: _angular_core.Signal<T>;
|
|
4924
|
+
protected readonly term: _angular_core.Signal<_hestia_earth_schema.Term>;
|
|
4921
4925
|
protected readonly type: _angular_core.Signal<SchemaType>;
|
|
4922
4926
|
private readonly type$;
|
|
4923
4927
|
protected readonly showInline: _angular_core.Signal<boolean>;
|
|
@@ -4925,6 +4929,10 @@ declare class NodeValueDetailsComponent<T extends Exclude<blankNodesType, Infras
|
|
|
4925
4929
|
protected readonly chartDistribution: _angular_core.Signal<number[]>;
|
|
4926
4930
|
protected readonly chartValue: _angular_core.Signal<any>;
|
|
4927
4931
|
protected readonly chartLabel: _angular_core.Signal<string>;
|
|
4932
|
+
protected readonly models: _angular_core.Signal<{
|
|
4933
|
+
name: string;
|
|
4934
|
+
link: string;
|
|
4935
|
+
}[]>;
|
|
4928
4936
|
constructor();
|
|
4929
4937
|
private updateSchemaTableKeys;
|
|
4930
4938
|
private createSchemaTableKeys;
|
|
@@ -4933,7 +4941,7 @@ declare class NodeValueDetailsComponent<T extends Exclude<blankNodesType, Infras
|
|
|
4933
4941
|
protected onTableKeyChange(key: IStoredKey, index: number, selected: boolean): void;
|
|
4934
4942
|
protected dropTableKey({ previousIndex, currentIndex }: CdkDragDrop<any, any, IStoredKey>): void;
|
|
4935
4943
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodeValueDetailsComponent<any>, never>;
|
|
4936
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeValueDetailsComponent<any>, "he-node-value-details", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "nodeType": { "alias": "nodeType"; "required": true; "isSignal": true; }; "dataState": { "alias": "dataState"; "required": true; "isSignal": true; }; "dataKey": { "alias": "dataKey"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4944
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodeValueDetailsComponent<any>, "he-node-value-details", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "nodeType": { "alias": "nodeType"; "required": true; "isSignal": true; }; "dataState": { "alias": "dataState"; "required": true; "isSignal": true; }; "dataKey": { "alias": "dataKey"; "required": true; "isSignal": true; }; "aggregated": { "alias": "aggregated"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4937
4945
|
}
|
|
4938
4946
|
|
|
4939
4947
|
declare class SchemaInfoComponent {
|