@hestia-earth/ui-components 0.35.13 → 0.35.17

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/node/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export * from './node-csv.service';
2
2
  export * from './node-store.service';
3
3
  export * from './node.service';
4
4
  export * from './node.model';
5
+ export * from './node-colours';
5
6
  export * from './node-logs-models/node-logs-models.model';
6
7
  export * from './node-model-version';
7
8
  export { NodeAggregatedComponent } from './node-aggregated/node-aggregated.component';
@@ -0,0 +1,12 @@
1
+ export declare const nodeColours: {
2
+ Cycle: string;
3
+ Site: string;
4
+ ImpactAssessment: string;
5
+ Source: string;
6
+ };
7
+ export declare const nodeSecondaryColours: {
8
+ Cycle: string;
9
+ Site: string;
10
+ ImpactAssessment: string;
11
+ Source: string;
12
+ };
@@ -17,11 +17,6 @@ export declare const nodeId: (node?: IJSONNode) => string;
17
17
  export declare const nodeUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
18
18
  export declare const nodeLogsUrl: (apiBaseUrl: string, { dataState, ...node }: IJSONNode) => string;
19
19
  export declare const lookupUrl: (filename: string) => string;
20
- export declare const nodeColours: {
21
- ImpactAssessment: string;
22
- Cycle: string;
23
- Site: string;
24
- };
25
20
  export interface IJSONNode {
26
21
  '@type'?: NodeType;
27
22
  '@id'?: string;
@@ -0,0 +1,13 @@
1
+ $colorDictionary: (
2
+ Cycle: #ecf1ff,
3
+ Site: #d5f3d8,
4
+ ImpactAssessment: #e7e0cb,
5
+ Source: #f5f5f5
6
+ );
7
+
8
+ $secondaryColorDictionary: (
9
+ Cycle: #4c7194,
10
+ Site: #349b3e,
11
+ ImpactAssessment: #b4a988,
12
+ Source: #f5f5f5
13
+ );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/ui-components",
3
- "version": "0.35.13",
3
+ "version": "0.35.17",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",