@hestia-earth/ui-components 0.11.2 → 0.11.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/esm2020/impact-assessments/impact-assessments-graph/impact-assessments-graph.component.mjs +64 -123
- package/esm2020/node/node-logs-models/node-logs-models.component.mjs +3 -3
- package/esm2020/search/search.model.mjs +2 -4
- package/fesm2015/hestia-earth-ui-components.mjs +65 -126
- package/fesm2015/hestia-earth-ui-components.mjs.map +1 -1
- package/fesm2020/hestia-earth-ui-components.mjs +64 -125
- package/fesm2020/hestia-earth-ui-components.mjs.map +1 -1
- package/impact-assessments/impact-assessments-graph/impact-assessments-graph.component.d.ts +1 -1
- package/package.json +1 -1
- package/search/search.model.d.ts +36 -18
|
@@ -24,12 +24,12 @@ export declare class ImpactAssessmentsGraphComponent implements OnInit, OnDestro
|
|
|
24
24
|
private root?;
|
|
25
25
|
private node;
|
|
26
26
|
private link;
|
|
27
|
-
private tooltip;
|
|
28
27
|
private svg;
|
|
29
28
|
private yMin;
|
|
30
29
|
private yTotal;
|
|
31
30
|
private logsAllModels;
|
|
32
31
|
private chartRef?;
|
|
32
|
+
private tooltipOperator?;
|
|
33
33
|
private impactAssessments;
|
|
34
34
|
private dataState;
|
|
35
35
|
loading: boolean;
|
package/package.json
CHANGED
package/search/search.model.d.ts
CHANGED
|
@@ -8,11 +8,14 @@ export declare const matchType: (type: NodeType | string) => Readonly<{
|
|
|
8
8
|
'@type': string;
|
|
9
9
|
};
|
|
10
10
|
}>;
|
|
11
|
-
export declare const matchTermType: (termType: TermTermType | string) => Readonly<{
|
|
11
|
+
export declare const matchTermType: (termType: TermTermType | string) => Readonly<Readonly<{
|
|
12
12
|
match: {
|
|
13
|
-
|
|
13
|
+
[x: string]: {
|
|
14
|
+
boost?: number;
|
|
15
|
+
query: any;
|
|
16
|
+
};
|
|
14
17
|
};
|
|
15
|
-
}
|
|
18
|
+
}>>;
|
|
16
19
|
export declare const matchRegex: (key: string, value: string | RegExp) => Readonly<{
|
|
17
20
|
regexp: {
|
|
18
21
|
[x: string]: {
|
|
@@ -145,11 +148,14 @@ export declare const countriesQuery: Readonly<{
|
|
|
145
148
|
match: {
|
|
146
149
|
'@type': string;
|
|
147
150
|
};
|
|
148
|
-
}> | Readonly<{
|
|
151
|
+
}> | Readonly<Readonly<{
|
|
149
152
|
match: {
|
|
150
|
-
|
|
153
|
+
[x: string]: {
|
|
154
|
+
boost?: number;
|
|
155
|
+
query: any;
|
|
156
|
+
};
|
|
151
157
|
};
|
|
152
|
-
}
|
|
158
|
+
}>>)[];
|
|
153
159
|
};
|
|
154
160
|
}>;
|
|
155
161
|
export declare const allCountriesQuery: Readonly<{
|
|
@@ -168,11 +174,14 @@ export declare const allCountriesQuery: Readonly<{
|
|
|
168
174
|
match: {
|
|
169
175
|
'@type': string;
|
|
170
176
|
};
|
|
171
|
-
}> | Readonly<{
|
|
177
|
+
}> | Readonly<Readonly<{
|
|
172
178
|
match: {
|
|
173
|
-
|
|
179
|
+
[x: string]: {
|
|
180
|
+
boost?: number;
|
|
181
|
+
query: any;
|
|
182
|
+
};
|
|
174
183
|
};
|
|
175
|
-
}
|
|
184
|
+
}>>)[];
|
|
176
185
|
};
|
|
177
186
|
}>;
|
|
178
187
|
export declare const matchRegion: Readonly<{
|
|
@@ -188,11 +197,14 @@ export declare const regionsQuery: Readonly<{
|
|
|
188
197
|
match: {
|
|
189
198
|
'@type': string;
|
|
190
199
|
};
|
|
191
|
-
}> | Readonly<{
|
|
200
|
+
}> | Readonly<Readonly<{
|
|
192
201
|
match: {
|
|
193
|
-
|
|
202
|
+
[x: string]: {
|
|
203
|
+
boost?: number;
|
|
204
|
+
query: any;
|
|
205
|
+
};
|
|
194
206
|
};
|
|
195
|
-
}
|
|
207
|
+
}>> | Readonly<{
|
|
196
208
|
range: {
|
|
197
209
|
[x: string]: {
|
|
198
210
|
gte: number;
|
|
@@ -207,11 +219,14 @@ export declare const cropsQuery: Readonly<{
|
|
|
207
219
|
match: {
|
|
208
220
|
'@type': string;
|
|
209
221
|
};
|
|
210
|
-
}> | Readonly<{
|
|
222
|
+
}> | Readonly<Readonly<{
|
|
211
223
|
match: {
|
|
212
|
-
|
|
224
|
+
[x: string]: {
|
|
225
|
+
boost?: number;
|
|
226
|
+
query: any;
|
|
227
|
+
};
|
|
213
228
|
};
|
|
214
|
-
}
|
|
229
|
+
}>>)[];
|
|
215
230
|
};
|
|
216
231
|
}>;
|
|
217
232
|
export declare const productsQuery: Readonly<{
|
|
@@ -221,11 +236,14 @@ export declare const productsQuery: Readonly<{
|
|
|
221
236
|
'@type': string;
|
|
222
237
|
};
|
|
223
238
|
}>[];
|
|
224
|
-
should: Readonly<{
|
|
239
|
+
should: Readonly<Readonly<{
|
|
225
240
|
match: {
|
|
226
|
-
|
|
241
|
+
[x: string]: {
|
|
242
|
+
boost?: number;
|
|
243
|
+
query: any;
|
|
244
|
+
};
|
|
227
245
|
};
|
|
228
|
-
}
|
|
246
|
+
}>>[];
|
|
229
247
|
minimum_should_match: number;
|
|
230
248
|
};
|
|
231
249
|
}>;
|