@hestia-earth/ui-components 0.1.2 → 0.1.3
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/bundles/hestia-earth-ui-components.umd.js +82 -57
- package/bundles/hestia-earth-ui-components.umd.js.map +1 -1
- package/cycles/cycles-activity-logs/cycles-activity-logs.component.d.ts +2 -1
- package/cycles/cycles-emissions/cycles-emissions.component.d.ts +1 -0
- package/cycles/cycles.model.d.ts +8 -0
- package/cycles/cycles.module.d.ts +1 -1
- package/esm2015/common/data-table/data-table.component.js +1 -1
- package/esm2015/common/utils.js +5 -4
- package/esm2015/cycles/cycles-activity/cycles-activity.component.js +2 -2
- package/esm2015/cycles/cycles-activity-logs/cycles-activity-logs.component.js +9 -5
- package/esm2015/cycles/cycles-emissions/cycles-emissions.component.js +8 -2
- package/esm2015/cycles/cycles-emissions-logs/cycles-emissions-logs.component.js +5 -3
- package/esm2015/cycles/cycles-practices/cycles-practices.component.js +2 -2
- package/esm2015/cycles/cycles-practices-logs/cycles-practices-logs.component.js +5 -3
- package/esm2015/cycles/cycles.model.js +10 -1
- package/esm2015/cycles/cycles.module.js +5 -5
- package/esm2015/fontawesome/fontawesome.module.js +3 -3
- package/esm2015/impact-assessments/impact-assessments-products/impact-assessments-products.component.js +2 -2
- package/esm2015/node/node-logs-models/node-logs-models.component.js +27 -24
- package/esm2015/sites/sites-maps/sites-maps.component.js +3 -4
- package/esm2015/sites/sites-measurements/sites-measurements.component.js +2 -2
- package/fesm2015/hestia-earth-ui-components.js +70 -49
- package/fesm2015/hestia-earth-ui-components.js.map +1 -1
- package/node/node-logs-models/node-logs-models.component.d.ts +4 -4
- package/package.json +4 -4
|
@@ -36,7 +36,7 @@ declare enum LogStatus {
|
|
|
36
36
|
error = "failed",
|
|
37
37
|
skipHierarchy = "not run (model higher up hierarchy run instead)",
|
|
38
38
|
dataProvided = "not run (user provided data retained)",
|
|
39
|
-
notRequired = "not
|
|
39
|
+
notRequired = "not relevant"
|
|
40
40
|
}
|
|
41
41
|
export declare class NodeLogsModelsComponent implements OnInit {
|
|
42
42
|
private searchService;
|
|
@@ -71,14 +71,14 @@ export declare class NodeLogsModelsComponent implements OnInit {
|
|
|
71
71
|
failed: string | string[];
|
|
72
72
|
"not run (model higher up hierarchy run instead)": string | string[];
|
|
73
73
|
"not run (user provided data retained)": string | string[];
|
|
74
|
-
"not
|
|
74
|
+
"not relevant": string | string[];
|
|
75
75
|
};
|
|
76
76
|
logColor: {
|
|
77
77
|
successful: string;
|
|
78
78
|
failed: string;
|
|
79
79
|
"not run (model higher up hierarchy run instead)": string;
|
|
80
80
|
"not run (user provided data retained)": string;
|
|
81
|
-
"not
|
|
81
|
+
"not relevant": string;
|
|
82
82
|
};
|
|
83
83
|
term?: string;
|
|
84
84
|
suggestTerm: (text$: Observable<string>) => Observable<string[]>;
|
|
@@ -94,7 +94,7 @@ export declare class NodeLogsModelsComponent implements OnInit {
|
|
|
94
94
|
private getSubvalueLogs;
|
|
95
95
|
getLogs(node: IBlankNodeLog, methodId: string, subValue?: IBlankNodeLogSubValue): any;
|
|
96
96
|
private isBackground;
|
|
97
|
-
private
|
|
97
|
+
private isRunOrchestrator;
|
|
98
98
|
private isUserProvided;
|
|
99
99
|
validSubValue(node: IBlankNodeLog, index: number, subValue?: IBlankNodeLogSubValue): boolean;
|
|
100
100
|
getMethodIdAt(node: IBlankNodeLog, index: number, subValue?: IBlankNodeLogSubValue): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/ui-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Hestia reusable components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@google/markerclustererplus": "^5.1.3",
|
|
25
25
|
"@hestia-earth/api": ">=0.10.0",
|
|
26
26
|
"@hestia-earth/glossary": "^0.3.0",
|
|
27
|
-
"@hestia-earth/json-schema": "^8.
|
|
28
|
-
"@hestia-earth/schema": "^8.
|
|
29
|
-
"@hestia-earth/schema-convert": "^8.
|
|
27
|
+
"@hestia-earth/json-schema": "^8.1.0",
|
|
28
|
+
"@hestia-earth/schema": "^8.1.0",
|
|
29
|
+
"@hestia-earth/schema-convert": "^8.1.0",
|
|
30
30
|
"@hestia-earth/ui-framework": "^1.11.0",
|
|
31
31
|
"@hestia-earth/utils": "^0.10.20",
|
|
32
32
|
"@ng-bootstrap/ng-bootstrap": ">=8.0.4",
|