@genspectrum/dashboard-components 1.17.0 → 1.18.1
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/custom-elements.json +4 -4
- package/dist/components.d.ts +173 -73
- package/dist/components.js +92 -49
- package/dist/components.js.map +1 -1
- package/dist/util.d.ts +241 -81
- package/package.json +1 -1
- package/src/preact/MutationAnnotationsContext.spec.tsx +82 -10
- package/src/preact/MutationAnnotationsContext.tsx +92 -44
- package/src/preact/components/annotated-mutation.stories.tsx +31 -0
- package/src/preact/components/annotated-mutation.tsx +5 -5
- package/src/preact/components/downshift-combobox.tsx +53 -41
- package/src/preact/lineageFilter/lineage-filter.stories.tsx +113 -0
- package/src/preact/mutationsOverTime/getFilteredMutationCodes.spec.ts +2 -2
- package/src/preact/mutationsOverTime/getFilteredMutationCodes.ts +5 -5
- package/src/web-components/gs-app.ts +8 -4
- package/src/web-components/mutation-annotations-context.ts +13 -5
- package/src/web-components/mutationAnnotations.mdx +29 -0
- package/standalone-bundle/dashboard-components.js +3938 -3896
- package/standalone-bundle/dashboard-components.js.map +1 -1
package/dist/util.d.ts
CHANGED
|
@@ -248,52 +248,212 @@ declare const mutationAnnotationSchema: default_2.ZodObject<{
|
|
|
248
248
|
name: default_2.ZodString;
|
|
249
249
|
description: default_2.ZodString;
|
|
250
250
|
symbol: default_2.ZodString;
|
|
251
|
-
nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString,
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
251
|
+
nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
252
|
+
mutation: default_2.ZodString;
|
|
253
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
254
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
255
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
256
|
+
mutation: string;
|
|
257
|
+
name?: string | undefined;
|
|
258
|
+
description?: string | undefined;
|
|
259
|
+
}, {
|
|
260
|
+
mutation: string;
|
|
261
|
+
name?: string | undefined;
|
|
262
|
+
description?: string | undefined;
|
|
263
|
+
}>]>, "many">>;
|
|
264
|
+
nucleotidePositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
265
|
+
position: default_2.ZodString;
|
|
266
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
267
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
268
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
269
|
+
position: string;
|
|
270
|
+
name?: string | undefined;
|
|
271
|
+
description?: string | undefined;
|
|
272
|
+
}, {
|
|
273
|
+
position: string;
|
|
274
|
+
name?: string | undefined;
|
|
275
|
+
description?: string | undefined;
|
|
276
|
+
}>]>, "many">>;
|
|
277
|
+
aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
278
|
+
mutation: default_2.ZodString;
|
|
279
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
280
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
281
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
282
|
+
mutation: string;
|
|
283
|
+
name?: string | undefined;
|
|
284
|
+
description?: string | undefined;
|
|
285
|
+
}, {
|
|
286
|
+
mutation: string;
|
|
287
|
+
name?: string | undefined;
|
|
288
|
+
description?: string | undefined;
|
|
289
|
+
}>]>, "many">>;
|
|
290
|
+
aminoAcidPositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
291
|
+
position: default_2.ZodString;
|
|
292
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
293
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
294
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
295
|
+
position: string;
|
|
296
|
+
name?: string | undefined;
|
|
297
|
+
description?: string | undefined;
|
|
298
|
+
}, {
|
|
299
|
+
position: string;
|
|
300
|
+
name?: string | undefined;
|
|
301
|
+
description?: string | undefined;
|
|
302
|
+
}>]>, "many">>;
|
|
255
303
|
}, "strip", default_2.ZodTypeAny, {
|
|
256
304
|
symbol: string;
|
|
257
305
|
name: string;
|
|
258
306
|
description: string;
|
|
259
|
-
nucleotideMutations?: string
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
307
|
+
nucleotideMutations?: (string | {
|
|
308
|
+
mutation: string;
|
|
309
|
+
name?: string | undefined;
|
|
310
|
+
description?: string | undefined;
|
|
311
|
+
})[] | undefined;
|
|
312
|
+
nucleotidePositions?: (string | {
|
|
313
|
+
position: string;
|
|
314
|
+
name?: string | undefined;
|
|
315
|
+
description?: string | undefined;
|
|
316
|
+
})[] | undefined;
|
|
317
|
+
aminoAcidMutations?: (string | {
|
|
318
|
+
mutation: string;
|
|
319
|
+
name?: string | undefined;
|
|
320
|
+
description?: string | undefined;
|
|
321
|
+
})[] | undefined;
|
|
322
|
+
aminoAcidPositions?: (string | {
|
|
323
|
+
position: string;
|
|
324
|
+
name?: string | undefined;
|
|
325
|
+
description?: string | undefined;
|
|
326
|
+
})[] | undefined;
|
|
263
327
|
}, {
|
|
264
328
|
symbol: string;
|
|
265
329
|
name: string;
|
|
266
330
|
description: string;
|
|
267
|
-
nucleotideMutations?: string
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
331
|
+
nucleotideMutations?: (string | {
|
|
332
|
+
mutation: string;
|
|
333
|
+
name?: string | undefined;
|
|
334
|
+
description?: string | undefined;
|
|
335
|
+
})[] | undefined;
|
|
336
|
+
nucleotidePositions?: (string | {
|
|
337
|
+
position: string;
|
|
338
|
+
name?: string | undefined;
|
|
339
|
+
description?: string | undefined;
|
|
340
|
+
})[] | undefined;
|
|
341
|
+
aminoAcidMutations?: (string | {
|
|
342
|
+
mutation: string;
|
|
343
|
+
name?: string | undefined;
|
|
344
|
+
description?: string | undefined;
|
|
345
|
+
})[] | undefined;
|
|
346
|
+
aminoAcidPositions?: (string | {
|
|
347
|
+
position: string;
|
|
348
|
+
name?: string | undefined;
|
|
349
|
+
description?: string | undefined;
|
|
350
|
+
})[] | undefined;
|
|
271
351
|
}>;
|
|
272
352
|
|
|
273
353
|
declare const mutationAnnotationsSchema: default_2.ZodArray<default_2.ZodObject<{
|
|
274
354
|
name: default_2.ZodString;
|
|
275
355
|
description: default_2.ZodString;
|
|
276
356
|
symbol: default_2.ZodString;
|
|
277
|
-
nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString,
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
357
|
+
nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
358
|
+
mutation: default_2.ZodString;
|
|
359
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
360
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
361
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
362
|
+
mutation: string;
|
|
363
|
+
name?: string | undefined;
|
|
364
|
+
description?: string | undefined;
|
|
365
|
+
}, {
|
|
366
|
+
mutation: string;
|
|
367
|
+
name?: string | undefined;
|
|
368
|
+
description?: string | undefined;
|
|
369
|
+
}>]>, "many">>;
|
|
370
|
+
nucleotidePositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
371
|
+
position: default_2.ZodString;
|
|
372
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
373
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
374
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
375
|
+
position: string;
|
|
376
|
+
name?: string | undefined;
|
|
377
|
+
description?: string | undefined;
|
|
378
|
+
}, {
|
|
379
|
+
position: string;
|
|
380
|
+
name?: string | undefined;
|
|
381
|
+
description?: string | undefined;
|
|
382
|
+
}>]>, "many">>;
|
|
383
|
+
aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
384
|
+
mutation: default_2.ZodString;
|
|
385
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
386
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
387
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
388
|
+
mutation: string;
|
|
389
|
+
name?: string | undefined;
|
|
390
|
+
description?: string | undefined;
|
|
391
|
+
}, {
|
|
392
|
+
mutation: string;
|
|
393
|
+
name?: string | undefined;
|
|
394
|
+
description?: string | undefined;
|
|
395
|
+
}>]>, "many">>;
|
|
396
|
+
aminoAcidPositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
|
|
397
|
+
position: default_2.ZodString;
|
|
398
|
+
name: default_2.ZodOptional<default_2.ZodString>;
|
|
399
|
+
description: default_2.ZodOptional<default_2.ZodString>;
|
|
400
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
401
|
+
position: string;
|
|
402
|
+
name?: string | undefined;
|
|
403
|
+
description?: string | undefined;
|
|
404
|
+
}, {
|
|
405
|
+
position: string;
|
|
406
|
+
name?: string | undefined;
|
|
407
|
+
description?: string | undefined;
|
|
408
|
+
}>]>, "many">>;
|
|
281
409
|
}, "strip", default_2.ZodTypeAny, {
|
|
282
410
|
symbol: string;
|
|
283
411
|
name: string;
|
|
284
412
|
description: string;
|
|
285
|
-
nucleotideMutations?: string
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
413
|
+
nucleotideMutations?: (string | {
|
|
414
|
+
mutation: string;
|
|
415
|
+
name?: string | undefined;
|
|
416
|
+
description?: string | undefined;
|
|
417
|
+
})[] | undefined;
|
|
418
|
+
nucleotidePositions?: (string | {
|
|
419
|
+
position: string;
|
|
420
|
+
name?: string | undefined;
|
|
421
|
+
description?: string | undefined;
|
|
422
|
+
})[] | undefined;
|
|
423
|
+
aminoAcidMutations?: (string | {
|
|
424
|
+
mutation: string;
|
|
425
|
+
name?: string | undefined;
|
|
426
|
+
description?: string | undefined;
|
|
427
|
+
})[] | undefined;
|
|
428
|
+
aminoAcidPositions?: (string | {
|
|
429
|
+
position: string;
|
|
430
|
+
name?: string | undefined;
|
|
431
|
+
description?: string | undefined;
|
|
432
|
+
})[] | undefined;
|
|
289
433
|
}, {
|
|
290
434
|
symbol: string;
|
|
291
435
|
name: string;
|
|
292
436
|
description: string;
|
|
293
|
-
nucleotideMutations?: string
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
437
|
+
nucleotideMutations?: (string | {
|
|
438
|
+
mutation: string;
|
|
439
|
+
name?: string | undefined;
|
|
440
|
+
description?: string | undefined;
|
|
441
|
+
})[] | undefined;
|
|
442
|
+
nucleotidePositions?: (string | {
|
|
443
|
+
position: string;
|
|
444
|
+
name?: string | undefined;
|
|
445
|
+
description?: string | undefined;
|
|
446
|
+
})[] | undefined;
|
|
447
|
+
aminoAcidMutations?: (string | {
|
|
448
|
+
mutation: string;
|
|
449
|
+
name?: string | undefined;
|
|
450
|
+
description?: string | undefined;
|
|
451
|
+
})[] | undefined;
|
|
452
|
+
aminoAcidPositions?: (string | {
|
|
453
|
+
position: string;
|
|
454
|
+
name?: string | undefined;
|
|
455
|
+
description?: string | undefined;
|
|
456
|
+
})[] | undefined;
|
|
297
457
|
}>, "many">;
|
|
298
458
|
|
|
299
459
|
export declare type MutationComparisonProps = default_2.infer<typeof mutationComparisonPropsSchema>;
|
|
@@ -1108,7 +1268,7 @@ declare global {
|
|
|
1108
1268
|
|
|
1109
1269
|
declare global {
|
|
1110
1270
|
interface HTMLElementTagNameMap {
|
|
1111
|
-
'gs-
|
|
1271
|
+
'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
|
|
1112
1272
|
}
|
|
1113
1273
|
}
|
|
1114
1274
|
|
|
@@ -1116,7 +1276,7 @@ declare global {
|
|
|
1116
1276
|
declare global {
|
|
1117
1277
|
namespace React.JSX {
|
|
1118
1278
|
interface IntrinsicElements {
|
|
1119
|
-
'gs-
|
|
1279
|
+
'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
|
|
1120
1280
|
}
|
|
1121
1281
|
}
|
|
1122
1282
|
}
|
|
@@ -1124,7 +1284,11 @@ declare global {
|
|
|
1124
1284
|
|
|
1125
1285
|
declare global {
|
|
1126
1286
|
interface HTMLElementTagNameMap {
|
|
1127
|
-
'gs-
|
|
1287
|
+
'gs-date-range-filter': DateRangeFilterComponent;
|
|
1288
|
+
}
|
|
1289
|
+
interface HTMLElementEventMap {
|
|
1290
|
+
[gsEventNames.dateRangeFilterChanged]: CustomEvent<Record<string, string>>;
|
|
1291
|
+
[gsEventNames.dateRangeOptionChanged]: DateRangeOptionChangedEvent;
|
|
1128
1292
|
}
|
|
1129
1293
|
}
|
|
1130
1294
|
|
|
@@ -1132,7 +1296,7 @@ declare global {
|
|
|
1132
1296
|
declare global {
|
|
1133
1297
|
namespace React.JSX {
|
|
1134
1298
|
interface IntrinsicElements {
|
|
1135
|
-
'gs-
|
|
1299
|
+
'gs-date-range-filter': DateRangeFilterComponent;
|
|
1136
1300
|
}
|
|
1137
1301
|
}
|
|
1138
1302
|
}
|
|
@@ -1140,7 +1304,10 @@ declare global {
|
|
|
1140
1304
|
|
|
1141
1305
|
declare global {
|
|
1142
1306
|
interface HTMLElementTagNameMap {
|
|
1143
|
-
'gs-
|
|
1307
|
+
'gs-text-filter': TextFilterComponent;
|
|
1308
|
+
}
|
|
1309
|
+
interface HTMLElementEventMap {
|
|
1310
|
+
[gsEventNames.textFilterChanged]: TextFilterChangedEvent;
|
|
1144
1311
|
}
|
|
1145
1312
|
}
|
|
1146
1313
|
|
|
@@ -1148,7 +1315,7 @@ declare global {
|
|
|
1148
1315
|
declare global {
|
|
1149
1316
|
namespace React.JSX {
|
|
1150
1317
|
interface IntrinsicElements {
|
|
1151
|
-
'gs-
|
|
1318
|
+
'gs-text-filter': TextFilterComponent;
|
|
1152
1319
|
}
|
|
1153
1320
|
}
|
|
1154
1321
|
}
|
|
@@ -1156,7 +1323,10 @@ declare global {
|
|
|
1156
1323
|
|
|
1157
1324
|
declare global {
|
|
1158
1325
|
interface HTMLElementTagNameMap {
|
|
1159
|
-
'gs-
|
|
1326
|
+
'gs-location-filter': LocationFilterComponent;
|
|
1327
|
+
}
|
|
1328
|
+
interface HTMLElementEventMap {
|
|
1329
|
+
[gsEventNames.locationChanged]: LocationChangedEvent;
|
|
1160
1330
|
}
|
|
1161
1331
|
}
|
|
1162
1332
|
|
|
@@ -1164,7 +1334,7 @@ declare global {
|
|
|
1164
1334
|
declare global {
|
|
1165
1335
|
namespace React.JSX {
|
|
1166
1336
|
interface IntrinsicElements {
|
|
1167
|
-
'gs-
|
|
1337
|
+
'gs-location-filter': LocationFilterComponent;
|
|
1168
1338
|
}
|
|
1169
1339
|
}
|
|
1170
1340
|
}
|
|
@@ -1172,7 +1342,10 @@ declare global {
|
|
|
1172
1342
|
|
|
1173
1343
|
declare global {
|
|
1174
1344
|
interface HTMLElementTagNameMap {
|
|
1175
|
-
'gs-
|
|
1345
|
+
'gs-mutation-filter': MutationFilterComponent;
|
|
1346
|
+
}
|
|
1347
|
+
interface HTMLElementEventMap {
|
|
1348
|
+
[gsEventNames.mutationFilterChanged]: CustomEvent<MutationsFilter>;
|
|
1176
1349
|
}
|
|
1177
1350
|
}
|
|
1178
1351
|
|
|
@@ -1180,7 +1353,7 @@ declare global {
|
|
|
1180
1353
|
declare global {
|
|
1181
1354
|
namespace React.JSX {
|
|
1182
1355
|
interface IntrinsicElements {
|
|
1183
|
-
'gs-
|
|
1356
|
+
'gs-mutation-filter': MutationFilterComponent;
|
|
1184
1357
|
}
|
|
1185
1358
|
}
|
|
1186
1359
|
}
|
|
@@ -1188,7 +1361,11 @@ declare global {
|
|
|
1188
1361
|
|
|
1189
1362
|
declare global {
|
|
1190
1363
|
interface HTMLElementTagNameMap {
|
|
1191
|
-
'gs-
|
|
1364
|
+
'gs-lineage-filter': LineageFilterComponent;
|
|
1365
|
+
}
|
|
1366
|
+
interface HTMLElementEventMap {
|
|
1367
|
+
[gsEventNames.lineageFilterChanged]: LineageFilterChangedEvent;
|
|
1368
|
+
[gsEventNames.lineageFilterMultiChanged]: LineageMultiFilterChangedEvent;
|
|
1192
1369
|
}
|
|
1193
1370
|
}
|
|
1194
1371
|
|
|
@@ -1196,7 +1373,7 @@ declare global {
|
|
|
1196
1373
|
declare global {
|
|
1197
1374
|
namespace React.JSX {
|
|
1198
1375
|
interface IntrinsicElements {
|
|
1199
|
-
'gs-
|
|
1376
|
+
'gs-lineage-filter': LineageFilterComponent;
|
|
1200
1377
|
}
|
|
1201
1378
|
}
|
|
1202
1379
|
}
|
|
@@ -1204,7 +1381,11 @@ declare global {
|
|
|
1204
1381
|
|
|
1205
1382
|
declare global {
|
|
1206
1383
|
interface HTMLElementTagNameMap {
|
|
1207
|
-
'gs-number-
|
|
1384
|
+
'gs-number-range-filter': NumberRangeFilterComponent;
|
|
1385
|
+
}
|
|
1386
|
+
interface HTMLElementEventMap {
|
|
1387
|
+
[gsEventNames.numberRangeFilterChanged]: NumberRangeFilterChangedEvent;
|
|
1388
|
+
[gsEventNames.numberRangeValueChanged]: NumberRangeValueChangedEvent;
|
|
1208
1389
|
}
|
|
1209
1390
|
}
|
|
1210
1391
|
|
|
@@ -1212,7 +1393,7 @@ declare global {
|
|
|
1212
1393
|
declare global {
|
|
1213
1394
|
namespace React.JSX {
|
|
1214
1395
|
interface IntrinsicElements {
|
|
1215
|
-
'gs-number-
|
|
1396
|
+
'gs-number-range-filter': NumberRangeFilterComponent;
|
|
1216
1397
|
}
|
|
1217
1398
|
}
|
|
1218
1399
|
}
|
|
@@ -1220,7 +1401,7 @@ declare global {
|
|
|
1220
1401
|
|
|
1221
1402
|
declare global {
|
|
1222
1403
|
interface HTMLElementTagNameMap {
|
|
1223
|
-
'gs-
|
|
1404
|
+
'gs-genome-data-viewer': GenomeDataViewerComponent;
|
|
1224
1405
|
}
|
|
1225
1406
|
}
|
|
1226
1407
|
|
|
@@ -1228,7 +1409,7 @@ declare global {
|
|
|
1228
1409
|
declare global {
|
|
1229
1410
|
namespace React.JSX {
|
|
1230
1411
|
interface IntrinsicElements {
|
|
1231
|
-
'gs-
|
|
1412
|
+
'gs-genome-data-viewer': GenomeDataViewerComponent;
|
|
1232
1413
|
}
|
|
1233
1414
|
}
|
|
1234
1415
|
}
|
|
@@ -1236,7 +1417,7 @@ declare global {
|
|
|
1236
1417
|
|
|
1237
1418
|
declare global {
|
|
1238
1419
|
interface HTMLElementTagNameMap {
|
|
1239
|
-
'gs-
|
|
1420
|
+
'gs-mutations': MutationsComponent;
|
|
1240
1421
|
}
|
|
1241
1422
|
}
|
|
1242
1423
|
|
|
@@ -1244,7 +1425,7 @@ declare global {
|
|
|
1244
1425
|
declare global {
|
|
1245
1426
|
namespace React.JSX {
|
|
1246
1427
|
interface IntrinsicElements {
|
|
1247
|
-
'gs-
|
|
1428
|
+
'gs-mutations': MutationsComponent;
|
|
1248
1429
|
}
|
|
1249
1430
|
}
|
|
1250
1431
|
}
|
|
@@ -1252,7 +1433,7 @@ declare global {
|
|
|
1252
1433
|
|
|
1253
1434
|
declare global {
|
|
1254
1435
|
interface HTMLElementTagNameMap {
|
|
1255
|
-
'gs-
|
|
1436
|
+
'gs-mutation-comparison': MutationComparisonComponent;
|
|
1256
1437
|
}
|
|
1257
1438
|
}
|
|
1258
1439
|
|
|
@@ -1260,7 +1441,7 @@ declare global {
|
|
|
1260
1441
|
declare global {
|
|
1261
1442
|
namespace React.JSX {
|
|
1262
1443
|
interface IntrinsicElements {
|
|
1263
|
-
'gs-
|
|
1444
|
+
'gs-mutation-comparison': MutationComparisonComponent;
|
|
1264
1445
|
}
|
|
1265
1446
|
}
|
|
1266
1447
|
}
|
|
@@ -1268,7 +1449,7 @@ declare global {
|
|
|
1268
1449
|
|
|
1269
1450
|
declare global {
|
|
1270
1451
|
interface HTMLElementTagNameMap {
|
|
1271
|
-
'gs-
|
|
1452
|
+
'gs-prevalence-over-time': PrevalenceOverTimeComponent;
|
|
1272
1453
|
}
|
|
1273
1454
|
}
|
|
1274
1455
|
|
|
@@ -1276,7 +1457,7 @@ declare global {
|
|
|
1276
1457
|
declare global {
|
|
1277
1458
|
namespace React.JSX {
|
|
1278
1459
|
interface IntrinsicElements {
|
|
1279
|
-
'gs-
|
|
1460
|
+
'gs-prevalence-over-time': PrevalenceOverTimeComponent;
|
|
1280
1461
|
}
|
|
1281
1462
|
}
|
|
1282
1463
|
}
|
|
@@ -1284,7 +1465,7 @@ declare global {
|
|
|
1284
1465
|
|
|
1285
1466
|
declare global {
|
|
1286
1467
|
interface HTMLElementTagNameMap {
|
|
1287
|
-
'gs-
|
|
1468
|
+
'gs-aggregate': AggregateComponent;
|
|
1288
1469
|
}
|
|
1289
1470
|
}
|
|
1290
1471
|
|
|
@@ -1292,7 +1473,7 @@ declare global {
|
|
|
1292
1473
|
declare global {
|
|
1293
1474
|
namespace React.JSX {
|
|
1294
1475
|
interface IntrinsicElements {
|
|
1295
|
-
'gs-
|
|
1476
|
+
'gs-aggregate': AggregateComponent;
|
|
1296
1477
|
}
|
|
1297
1478
|
}
|
|
1298
1479
|
}
|
|
@@ -1300,11 +1481,7 @@ declare global {
|
|
|
1300
1481
|
|
|
1301
1482
|
declare global {
|
|
1302
1483
|
interface HTMLElementTagNameMap {
|
|
1303
|
-
'gs-
|
|
1304
|
-
}
|
|
1305
|
-
interface HTMLElementEventMap {
|
|
1306
|
-
[gsEventNames.dateRangeFilterChanged]: CustomEvent<Record<string, string>>;
|
|
1307
|
-
[gsEventNames.dateRangeOptionChanged]: DateRangeOptionChangedEvent;
|
|
1484
|
+
'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
|
|
1308
1485
|
}
|
|
1309
1486
|
}
|
|
1310
1487
|
|
|
@@ -1312,7 +1489,7 @@ declare global {
|
|
|
1312
1489
|
declare global {
|
|
1313
1490
|
namespace React.JSX {
|
|
1314
1491
|
interface IntrinsicElements {
|
|
1315
|
-
'gs-
|
|
1492
|
+
'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
|
|
1316
1493
|
}
|
|
1317
1494
|
}
|
|
1318
1495
|
}
|
|
@@ -1320,10 +1497,7 @@ declare global {
|
|
|
1320
1497
|
|
|
1321
1498
|
declare global {
|
|
1322
1499
|
interface HTMLElementTagNameMap {
|
|
1323
|
-
'gs-
|
|
1324
|
-
}
|
|
1325
|
-
interface HTMLElementEventMap {
|
|
1326
|
-
[gsEventNames.locationChanged]: LocationChangedEvent;
|
|
1500
|
+
'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
|
|
1327
1501
|
}
|
|
1328
1502
|
}
|
|
1329
1503
|
|
|
@@ -1331,7 +1505,7 @@ declare global {
|
|
|
1331
1505
|
declare global {
|
|
1332
1506
|
namespace React.JSX {
|
|
1333
1507
|
interface IntrinsicElements {
|
|
1334
|
-
'gs-
|
|
1508
|
+
'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
|
|
1335
1509
|
}
|
|
1336
1510
|
}
|
|
1337
1511
|
}
|
|
@@ -1339,10 +1513,7 @@ declare global {
|
|
|
1339
1513
|
|
|
1340
1514
|
declare global {
|
|
1341
1515
|
interface HTMLElementTagNameMap {
|
|
1342
|
-
'gs-
|
|
1343
|
-
}
|
|
1344
|
-
interface HTMLElementEventMap {
|
|
1345
|
-
[gsEventNames.textFilterChanged]: TextFilterChangedEvent;
|
|
1516
|
+
'gs-mutations-over-time': MutationsOverTimeComponent;
|
|
1346
1517
|
}
|
|
1347
1518
|
}
|
|
1348
1519
|
|
|
@@ -1350,7 +1521,7 @@ declare global {
|
|
|
1350
1521
|
declare global {
|
|
1351
1522
|
namespace React.JSX {
|
|
1352
1523
|
interface IntrinsicElements {
|
|
1353
|
-
'gs-
|
|
1524
|
+
'gs-mutations-over-time': MutationsOverTimeComponent;
|
|
1354
1525
|
}
|
|
1355
1526
|
}
|
|
1356
1527
|
}
|
|
@@ -1358,10 +1529,7 @@ declare global {
|
|
|
1358
1529
|
|
|
1359
1530
|
declare global {
|
|
1360
1531
|
interface HTMLElementTagNameMap {
|
|
1361
|
-
'gs-
|
|
1362
|
-
}
|
|
1363
|
-
interface HTMLElementEventMap {
|
|
1364
|
-
[gsEventNames.mutationFilterChanged]: CustomEvent<MutationsFilter>;
|
|
1532
|
+
'gs-queries-over-time': QueriesOverTimeComponent;
|
|
1365
1533
|
}
|
|
1366
1534
|
}
|
|
1367
1535
|
|
|
@@ -1369,7 +1537,7 @@ declare global {
|
|
|
1369
1537
|
declare global {
|
|
1370
1538
|
namespace React.JSX {
|
|
1371
1539
|
interface IntrinsicElements {
|
|
1372
|
-
'gs-
|
|
1540
|
+
'gs-queries-over-time': QueriesOverTimeComponent;
|
|
1373
1541
|
}
|
|
1374
1542
|
}
|
|
1375
1543
|
}
|
|
@@ -1377,11 +1545,7 @@ declare global {
|
|
|
1377
1545
|
|
|
1378
1546
|
declare global {
|
|
1379
1547
|
interface HTMLElementTagNameMap {
|
|
1380
|
-
'gs-
|
|
1381
|
-
}
|
|
1382
|
-
interface HTMLElementEventMap {
|
|
1383
|
-
[gsEventNames.lineageFilterChanged]: LineageFilterChangedEvent;
|
|
1384
|
-
[gsEventNames.lineageFilterMultiChanged]: LineageMultiFilterChangedEvent;
|
|
1548
|
+
'gs-statistics': StatisticsComponent;
|
|
1385
1549
|
}
|
|
1386
1550
|
}
|
|
1387
1551
|
|
|
@@ -1389,7 +1553,7 @@ declare global {
|
|
|
1389
1553
|
declare global {
|
|
1390
1554
|
namespace React.JSX {
|
|
1391
1555
|
interface IntrinsicElements {
|
|
1392
|
-
'gs-
|
|
1556
|
+
'gs-statistics': StatisticsComponent;
|
|
1393
1557
|
}
|
|
1394
1558
|
}
|
|
1395
1559
|
}
|
|
@@ -1397,11 +1561,7 @@ declare global {
|
|
|
1397
1561
|
|
|
1398
1562
|
declare global {
|
|
1399
1563
|
interface HTMLElementTagNameMap {
|
|
1400
|
-
'gs-
|
|
1401
|
-
}
|
|
1402
|
-
interface HTMLElementEventMap {
|
|
1403
|
-
[gsEventNames.numberRangeFilterChanged]: NumberRangeFilterChangedEvent;
|
|
1404
|
-
[gsEventNames.numberRangeValueChanged]: NumberRangeValueChangedEvent;
|
|
1564
|
+
'gs-sequences-by-location': SequencesByLocationComponent;
|
|
1405
1565
|
}
|
|
1406
1566
|
}
|
|
1407
1567
|
|
|
@@ -1409,7 +1569,7 @@ declare global {
|
|
|
1409
1569
|
declare global {
|
|
1410
1570
|
namespace React.JSX {
|
|
1411
1571
|
interface IntrinsicElements {
|
|
1412
|
-
'gs-
|
|
1572
|
+
'gs-sequences-by-location': SequencesByLocationComponent;
|
|
1413
1573
|
}
|
|
1414
1574
|
}
|
|
1415
1575
|
}
|