@genspectrum/dashboard-components 0.16.3 → 0.17.0
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 +86 -61
- package/dist/{LineageFilterChangedEvent-COWV-Y0k.js → LineageFilterChangedEvent-DkvWdq_G.js} +2 -2
- package/dist/LineageFilterChangedEvent-DkvWdq_G.js.map +1 -0
- package/dist/assets/{mutationOverTimeWorker-DJcZmEH9.js.map → mutationOverTimeWorker-CPfQDLe6.js.map} +1 -1
- package/dist/components.d.ts +64 -51
- package/dist/components.js +1134 -937
- package/dist/components.js.map +1 -1
- package/dist/style.css +81 -9
- package/dist/util.d.ts +76 -34
- package/dist/util.js +1 -1
- package/package.json +2 -1
- package/src/preact/components/annotated-mutation.stories.tsx +2 -1
- package/src/preact/components/annotated-mutation.tsx +6 -2
- package/src/preact/components/clearable-select.stories.tsx +75 -0
- package/src/preact/components/clearable-select.tsx +76 -0
- package/src/preact/components/downshift-combobox.tsx +9 -7
- package/src/preact/dateRangeFilter/computeInitialValues.spec.ts +31 -33
- package/src/preact/dateRangeFilter/computeInitialValues.ts +2 -15
- package/src/preact/dateRangeFilter/date-picker.tsx +66 -0
- package/src/preact/dateRangeFilter/date-range-filter.stories.tsx +69 -31
- package/src/preact/dateRangeFilter/date-range-filter.tsx +136 -139
- package/src/preact/dateRangeFilter/dateRangeOption.ts +11 -11
- package/src/preact/mutationComparison/mutation-comparison-table.tsx +14 -1
- package/src/preact/mutationComparison/mutation-comparison-venn.tsx +39 -8
- package/src/preact/mutationComparison/mutation-comparison.stories.tsx +36 -12
- package/src/preact/mutationComparison/mutation-comparison.tsx +2 -0
- package/src/preact/mutations/mutations.stories.tsx +3 -9
- package/src/preact/mutationsOverTime/mutations-over-time.stories.tsx +3 -8
- package/src/preact/shared/WithClassName/WithClassName.ts +1 -0
- package/src/preact/shared/icons/DeleteIcon.tsx +3 -0
- package/src/preact/shared/stories/expectMutationAnnotation.ts +13 -0
- package/src/preact/shared/stories/expectOptionSelected.tsx +7 -0
- package/src/utilEntrypoint.ts +3 -1
- package/src/web-components/MutationAnnotations.mdx +33 -0
- package/src/web-components/ResizeContainer.mdx +1 -1
- package/src/web-components/errorHandling.mdx +1 -1
- package/src/web-components/gs-app.ts +2 -2
- package/src/web-components/input/gs-date-range-filter.stories.ts +38 -32
- package/src/web-components/input/gs-date-range-filter.tsx +8 -2
- package/src/web-components/input/gs-lineage-filter.tsx +1 -1
- package/src/web-components/input/gs-location-filter.tsx +1 -1
- package/src/web-components/input/gs-mutation-filter.tsx +1 -1
- package/src/web-components/input/gs-text-filter.tsx +1 -1
- package/src/web-components/visualization/gs-aggregate.tsx +2 -2
- package/src/web-components/visualization/gs-mutation-comparison.stories.ts +18 -1
- package/src/web-components/visualization/gs-mutation-comparison.tsx +24 -10
- package/src/web-components/visualization/gs-mutations-over-time.stories.ts +2 -1
- package/src/web-components/visualization/gs-mutations-over-time.tsx +5 -2
- package/src/web-components/visualization/gs-mutations.stories.ts +2 -1
- package/src/web-components/visualization/gs-mutations.tsx +5 -2
- package/src/web-components/visualization/gs-number-sequences-over-time.tsx +2 -2
- package/src/web-components/visualization/gs-prevalence-over-time.tsx +2 -2
- package/src/web-components/visualization/gs-relative-growth-advantage.tsx +2 -2
- package/src/web-components/visualization/gs-sequences-by-location.tsx +2 -2
- package/src/web-components/visualization/gs-statistics.tsx +2 -2
- package/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx +2 -2
- package/standalone-bundle/assets/mutationOverTimeWorker-CERZSdcA.js.map +1 -1
- package/standalone-bundle/dashboard-components.js +13293 -12635
- package/standalone-bundle/dashboard-components.js.map +1 -1
- package/standalone-bundle/style.css +1 -1
- package/dist/LineageFilterChangedEvent-COWV-Y0k.js.map +0 -1
package/dist/components.d.ts
CHANGED
|
@@ -59,13 +59,13 @@ export declare class AggregateComponent extends PreactLitAdapterWithGridJsStyles
|
|
|
59
59
|
/**
|
|
60
60
|
* The width of the component.
|
|
61
61
|
*
|
|
62
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
62
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
63
63
|
*/
|
|
64
64
|
width: string;
|
|
65
65
|
/**
|
|
66
66
|
* The height of the component.
|
|
67
67
|
*
|
|
68
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
68
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
69
69
|
*/
|
|
70
70
|
height: string | undefined;
|
|
71
71
|
/**
|
|
@@ -115,8 +115,8 @@ export declare class AppComponent extends LitElement {
|
|
|
115
115
|
lapis: string;
|
|
116
116
|
/**
|
|
117
117
|
* Supply lists of mutations that are especially relevant for the current organism.
|
|
118
|
-
*
|
|
119
|
-
*
|
|
118
|
+
*
|
|
119
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.
|
|
120
120
|
*/
|
|
121
121
|
mutationAnnotations: {
|
|
122
122
|
name: string;
|
|
@@ -197,7 +197,6 @@ export declare class DateRangeFilterComponent extends PreactLitAdapter {
|
|
|
197
197
|
* - If it is a string, then it must be a valid label from the `dateRangeOptions`.
|
|
198
198
|
* - If it is an object, then it accepts dates in the format `YYYY-MM-DD` for the keys `dateFrom` and `dateTo`.
|
|
199
199
|
* Keys that are not set will default to the `earliestDate` or the current date respectively.
|
|
200
|
-
* - If the attribute is not set, the component will default to the range `earliestDate` until today.
|
|
201
200
|
*
|
|
202
201
|
* The `detail` of the `gs-date-range-option-changed` event can be used for this attribute,
|
|
203
202
|
* if you want to control this component in your JS application.
|
|
@@ -209,9 +208,13 @@ export declare class DateRangeFilterComponent extends PreactLitAdapter {
|
|
|
209
208
|
/**
|
|
210
209
|
* The width of the component.
|
|
211
210
|
*
|
|
212
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
211
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
213
212
|
*/
|
|
214
213
|
width: string;
|
|
214
|
+
/**
|
|
215
|
+
* The placeholder to display on the select dropdown.
|
|
216
|
+
*/
|
|
217
|
+
placeholder: string | undefined;
|
|
215
218
|
/**
|
|
216
219
|
* The name of the metadata field in LAPIS that contains the date information.
|
|
217
220
|
*/
|
|
@@ -277,7 +280,7 @@ export declare class LineageFilterComponent extends PreactLitAdapter {
|
|
|
277
280
|
/**
|
|
278
281
|
* The width of the component.
|
|
279
282
|
*
|
|
280
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
283
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
281
284
|
*/
|
|
282
285
|
width: string;
|
|
283
286
|
render(): JSX_2.Element;
|
|
@@ -335,7 +338,7 @@ export declare class LocationFilterComponent extends PreactLitAdapter {
|
|
|
335
338
|
/**
|
|
336
339
|
* The width of the component.
|
|
337
340
|
*
|
|
338
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
341
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
339
342
|
*/
|
|
340
343
|
width: string;
|
|
341
344
|
/**
|
|
@@ -375,6 +378,9 @@ declare const mutationAnnotationsSchema: default_2.ZodArray<default_2.ZodObject<
|
|
|
375
378
|
*
|
|
376
379
|
* It only shows substitutions and deletions, it does not show insertions.
|
|
377
380
|
*
|
|
381
|
+
* This component supports mutations annotations.
|
|
382
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.
|
|
383
|
+
*
|
|
378
384
|
* ## Views
|
|
379
385
|
*
|
|
380
386
|
* ### Table View
|
|
@@ -423,13 +429,13 @@ export declare class MutationComparisonComponent extends PreactLitAdapterWithGri
|
|
|
423
429
|
/**
|
|
424
430
|
* The width of the component.
|
|
425
431
|
*
|
|
426
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
432
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
427
433
|
*/
|
|
428
434
|
width: string;
|
|
429
435
|
/**
|
|
430
436
|
* The height of the component.
|
|
431
437
|
*
|
|
432
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
438
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
433
439
|
*/
|
|
434
440
|
height: string | undefined;
|
|
435
441
|
/**
|
|
@@ -437,6 +443,7 @@ export declare class MutationComparisonComponent extends PreactLitAdapterWithGri
|
|
|
437
443
|
* Set to `false` to disable pagination. Set to `true` to enable pagination with a default limit (10).
|
|
438
444
|
*/
|
|
439
445
|
pageSize: boolean | number;
|
|
446
|
+
/* Excluded from this release type: mutationAnnotations */
|
|
440
447
|
render(): JSX_2.Element;
|
|
441
448
|
}
|
|
442
449
|
|
|
@@ -500,7 +507,7 @@ export declare class MutationFilterComponent extends PreactLitAdapter {
|
|
|
500
507
|
/**
|
|
501
508
|
* The width of the component.
|
|
502
509
|
*
|
|
503
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
510
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
504
511
|
*/
|
|
505
512
|
width: string;
|
|
506
513
|
render(): JSX_2.Element;
|
|
@@ -511,6 +518,9 @@ export declare class MutationFilterComponent extends PreactLitAdapter {
|
|
|
511
518
|
*
|
|
512
519
|
* This component displays mutations (substitutions, deletions and insertions) for a dataset selected by a LAPIS filter.
|
|
513
520
|
*
|
|
521
|
+
* This component supports mutations annotations.
|
|
522
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.
|
|
523
|
+
*
|
|
514
524
|
* ## Views
|
|
515
525
|
*
|
|
516
526
|
* ### Table View
|
|
@@ -588,13 +598,13 @@ export declare class MutationsComponent extends PreactLitAdapterWithGridJsStyles
|
|
|
588
598
|
/**
|
|
589
599
|
* The width of the component.
|
|
590
600
|
*
|
|
591
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
601
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
592
602
|
*/
|
|
593
603
|
width: string;
|
|
594
604
|
/**
|
|
595
605
|
* The height of the component.
|
|
596
606
|
*
|
|
597
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
607
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
598
608
|
*/
|
|
599
609
|
height: string | undefined;
|
|
600
610
|
/**
|
|
@@ -613,6 +623,9 @@ export declare class MutationsComponent extends PreactLitAdapterWithGridJsStyles
|
|
|
613
623
|
* The shown date range is determined by the date field in the LAPIS filter.
|
|
614
624
|
* If the date field is not set, the date range is determined by all available dates in the dataset.
|
|
615
625
|
*
|
|
626
|
+
* This component supports mutations annotations.
|
|
627
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.
|
|
628
|
+
*
|
|
616
629
|
* ## Views
|
|
617
630
|
*
|
|
618
631
|
* ### Grid View
|
|
@@ -656,13 +669,13 @@ export declare class MutationsOverTimeComponent extends PreactLitAdapterWithGrid
|
|
|
656
669
|
/**
|
|
657
670
|
* The width of the component.
|
|
658
671
|
*
|
|
659
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
672
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
660
673
|
*/
|
|
661
674
|
width: string;
|
|
662
675
|
/**
|
|
663
676
|
* The height of the component.
|
|
664
677
|
*
|
|
665
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
678
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
666
679
|
*/
|
|
667
680
|
height: string | undefined;
|
|
668
681
|
/**
|
|
@@ -740,13 +753,13 @@ export declare class NumberSequencesOverTimeComponent extends PreactLitAdapterWi
|
|
|
740
753
|
/**
|
|
741
754
|
* The width of the component.
|
|
742
755
|
*
|
|
743
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
756
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
744
757
|
*/
|
|
745
758
|
width: string;
|
|
746
759
|
/**
|
|
747
760
|
* The height of the component.
|
|
748
761
|
*
|
|
749
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
762
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
750
763
|
*/
|
|
751
764
|
height: string | undefined;
|
|
752
765
|
/**
|
|
@@ -877,13 +890,13 @@ export declare class PrevalenceOverTimeComponent extends PreactLitAdapterWithGri
|
|
|
877
890
|
/**
|
|
878
891
|
* The width of the component.
|
|
879
892
|
*
|
|
880
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
893
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
881
894
|
*/
|
|
882
895
|
width: string;
|
|
883
896
|
/**
|
|
884
897
|
* The height of the component.
|
|
885
898
|
*
|
|
886
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
899
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
887
900
|
*/
|
|
888
901
|
height: string | undefined;
|
|
889
902
|
/**
|
|
@@ -1020,13 +1033,13 @@ export declare class RelativeGrowthAdvantageComponent extends PreactLitAdapter {
|
|
|
1020
1033
|
/**
|
|
1021
1034
|
* The width of the component.
|
|
1022
1035
|
*
|
|
1023
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1036
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1024
1037
|
*/
|
|
1025
1038
|
width: string;
|
|
1026
1039
|
/**
|
|
1027
1040
|
* The height of the component.
|
|
1028
1041
|
*
|
|
1029
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1042
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1030
1043
|
*/
|
|
1031
1044
|
height: string | undefined;
|
|
1032
1045
|
/**
|
|
@@ -1176,13 +1189,13 @@ export declare class SequencesByLocationComponent extends PreactLitAdapterWithGr
|
|
|
1176
1189
|
* Not that the map in the map view is not responsive
|
|
1177
1190
|
* (i.e. does not adjust its size when the component is resized).
|
|
1178
1191
|
*
|
|
1179
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1192
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1180
1193
|
*/
|
|
1181
1194
|
width: string;
|
|
1182
1195
|
/**
|
|
1183
1196
|
* The height of the component.
|
|
1184
1197
|
*
|
|
1185
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1198
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1186
1199
|
*/
|
|
1187
1200
|
height: string | undefined;
|
|
1188
1201
|
/**
|
|
@@ -1244,13 +1257,13 @@ export declare class StatisticsComponent extends PreactLitAdapterWithGridJsStyle
|
|
|
1244
1257
|
/**
|
|
1245
1258
|
* The width of the component.
|
|
1246
1259
|
*
|
|
1247
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1260
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1248
1261
|
*/
|
|
1249
1262
|
width: string;
|
|
1250
1263
|
/**
|
|
1251
1264
|
* The height of the component.
|
|
1252
1265
|
*
|
|
1253
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1266
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1254
1267
|
*/
|
|
1255
1268
|
height: string | undefined;
|
|
1256
1269
|
render(): JSX_2.Element;
|
|
@@ -1302,7 +1315,7 @@ export declare class TextFilterComponent extends PreactLitAdapter {
|
|
|
1302
1315
|
/**
|
|
1303
1316
|
* The width of the component.
|
|
1304
1317
|
*
|
|
1305
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1318
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1306
1319
|
*/
|
|
1307
1320
|
width: string;
|
|
1308
1321
|
render(): JSX_2.Element;
|
|
@@ -1352,13 +1365,13 @@ export declare class WastewaterMutationsOverTimeComponent extends PreactLitAdapt
|
|
|
1352
1365
|
/**
|
|
1353
1366
|
* The width of the component.
|
|
1354
1367
|
*
|
|
1355
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1368
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1356
1369
|
*/
|
|
1357
1370
|
width: string;
|
|
1358
1371
|
/**
|
|
1359
1372
|
* The height of the component.
|
|
1360
1373
|
*
|
|
1361
|
-
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1374
|
+
* Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
|
|
1362
1375
|
*/
|
|
1363
1376
|
height: string | undefined;
|
|
1364
1377
|
/**
|
|
@@ -1429,7 +1442,7 @@ declare global {
|
|
|
1429
1442
|
|
|
1430
1443
|
declare global {
|
|
1431
1444
|
interface HTMLElementTagNameMap {
|
|
1432
|
-
'gs-
|
|
1445
|
+
'gs-prevalence-over-time': PrevalenceOverTimeComponent;
|
|
1433
1446
|
}
|
|
1434
1447
|
}
|
|
1435
1448
|
|
|
@@ -1437,7 +1450,7 @@ declare global {
|
|
|
1437
1450
|
declare global {
|
|
1438
1451
|
namespace JSX {
|
|
1439
1452
|
interface IntrinsicElements {
|
|
1440
|
-
'gs-
|
|
1453
|
+
'gs-prevalence-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1441
1454
|
}
|
|
1442
1455
|
}
|
|
1443
1456
|
}
|
|
@@ -1445,7 +1458,7 @@ declare global {
|
|
|
1445
1458
|
|
|
1446
1459
|
declare global {
|
|
1447
1460
|
interface HTMLElementTagNameMap {
|
|
1448
|
-
'gs-
|
|
1461
|
+
'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
|
|
1449
1462
|
}
|
|
1450
1463
|
}
|
|
1451
1464
|
|
|
@@ -1453,7 +1466,7 @@ declare global {
|
|
|
1453
1466
|
declare global {
|
|
1454
1467
|
namespace JSX {
|
|
1455
1468
|
interface IntrinsicElements {
|
|
1456
|
-
'gs-
|
|
1469
|
+
'gs-relative-growth-advantage': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1457
1470
|
}
|
|
1458
1471
|
}
|
|
1459
1472
|
}
|
|
@@ -1461,7 +1474,7 @@ declare global {
|
|
|
1461
1474
|
|
|
1462
1475
|
declare global {
|
|
1463
1476
|
interface HTMLElementTagNameMap {
|
|
1464
|
-
'gs-
|
|
1477
|
+
'gs-aggregate': AggregateComponent;
|
|
1465
1478
|
}
|
|
1466
1479
|
}
|
|
1467
1480
|
|
|
@@ -1469,7 +1482,7 @@ declare global {
|
|
|
1469
1482
|
declare global {
|
|
1470
1483
|
namespace JSX {
|
|
1471
1484
|
interface IntrinsicElements {
|
|
1472
|
-
'gs-
|
|
1485
|
+
'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1473
1486
|
}
|
|
1474
1487
|
}
|
|
1475
1488
|
}
|
|
@@ -1477,7 +1490,7 @@ declare global {
|
|
|
1477
1490
|
|
|
1478
1491
|
declare global {
|
|
1479
1492
|
interface HTMLElementTagNameMap {
|
|
1480
|
-
'gs-
|
|
1493
|
+
'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
|
|
1481
1494
|
}
|
|
1482
1495
|
}
|
|
1483
1496
|
|
|
@@ -1485,7 +1498,7 @@ declare global {
|
|
|
1485
1498
|
declare global {
|
|
1486
1499
|
namespace JSX {
|
|
1487
1500
|
interface IntrinsicElements {
|
|
1488
|
-
'gs-
|
|
1501
|
+
'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1489
1502
|
}
|
|
1490
1503
|
}
|
|
1491
1504
|
}
|
|
@@ -1493,7 +1506,7 @@ declare global {
|
|
|
1493
1506
|
|
|
1494
1507
|
declare global {
|
|
1495
1508
|
interface HTMLElementTagNameMap {
|
|
1496
|
-
'gs-
|
|
1509
|
+
'gs-mutations-over-time': MutationsOverTimeComponent;
|
|
1497
1510
|
}
|
|
1498
1511
|
}
|
|
1499
1512
|
|
|
@@ -1501,7 +1514,7 @@ declare global {
|
|
|
1501
1514
|
declare global {
|
|
1502
1515
|
namespace JSX {
|
|
1503
1516
|
interface IntrinsicElements {
|
|
1504
|
-
'gs-
|
|
1517
|
+
'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1505
1518
|
}
|
|
1506
1519
|
}
|
|
1507
1520
|
}
|
|
@@ -1509,7 +1522,7 @@ declare global {
|
|
|
1509
1522
|
|
|
1510
1523
|
declare global {
|
|
1511
1524
|
interface HTMLElementTagNameMap {
|
|
1512
|
-
'gs-
|
|
1525
|
+
'gs-sequences-by-location': SequencesByLocationComponent;
|
|
1513
1526
|
}
|
|
1514
1527
|
}
|
|
1515
1528
|
|
|
@@ -1517,7 +1530,7 @@ declare global {
|
|
|
1517
1530
|
declare global {
|
|
1518
1531
|
namespace JSX {
|
|
1519
1532
|
interface IntrinsicElements {
|
|
1520
|
-
'gs-
|
|
1533
|
+
'gs-sequences-by-location': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1521
1534
|
}
|
|
1522
1535
|
}
|
|
1523
1536
|
}
|
|
@@ -1525,10 +1538,7 @@ declare global {
|
|
|
1525
1538
|
|
|
1526
1539
|
declare global {
|
|
1527
1540
|
interface HTMLElementTagNameMap {
|
|
1528
|
-
'gs-
|
|
1529
|
-
}
|
|
1530
|
-
interface HTMLElementEventMap {
|
|
1531
|
-
'gs-location-changed': LocationChangedEvent;
|
|
1541
|
+
'gs-statistics': StatisticsComponent;
|
|
1532
1542
|
}
|
|
1533
1543
|
}
|
|
1534
1544
|
|
|
@@ -1536,7 +1546,7 @@ declare global {
|
|
|
1536
1546
|
declare global {
|
|
1537
1547
|
namespace JSX {
|
|
1538
1548
|
interface IntrinsicElements {
|
|
1539
|
-
'gs-
|
|
1549
|
+
'gs-statistics': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1540
1550
|
}
|
|
1541
1551
|
}
|
|
1542
1552
|
}
|
|
@@ -1544,7 +1554,11 @@ declare global {
|
|
|
1544
1554
|
|
|
1545
1555
|
declare global {
|
|
1546
1556
|
interface HTMLElementTagNameMap {
|
|
1547
|
-
'gs-
|
|
1557
|
+
'gs-date-range-filter': DateRangeFilterComponent;
|
|
1558
|
+
}
|
|
1559
|
+
interface HTMLElementEventMap {
|
|
1560
|
+
'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
|
|
1561
|
+
'gs-date-range-option-changed': DateRangeOptionChangedEvent;
|
|
1548
1562
|
}
|
|
1549
1563
|
}
|
|
1550
1564
|
|
|
@@ -1552,7 +1566,7 @@ declare global {
|
|
|
1552
1566
|
declare global {
|
|
1553
1567
|
namespace JSX {
|
|
1554
1568
|
interface IntrinsicElements {
|
|
1555
|
-
'gs-
|
|
1569
|
+
'gs-date-range-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1556
1570
|
}
|
|
1557
1571
|
}
|
|
1558
1572
|
}
|
|
@@ -1576,11 +1590,10 @@ declare global {
|
|
|
1576
1590
|
|
|
1577
1591
|
declare global {
|
|
1578
1592
|
interface HTMLElementTagNameMap {
|
|
1579
|
-
'gs-
|
|
1593
|
+
'gs-location-filter': LocationFilterComponent;
|
|
1580
1594
|
}
|
|
1581
1595
|
interface HTMLElementEventMap {
|
|
1582
|
-
'gs-
|
|
1583
|
-
'gs-date-range-option-changed': DateRangeOptionChangedEvent;
|
|
1596
|
+
'gs-location-changed': LocationChangedEvent;
|
|
1584
1597
|
}
|
|
1585
1598
|
}
|
|
1586
1599
|
|
|
@@ -1588,7 +1601,7 @@ declare global {
|
|
|
1588
1601
|
declare global {
|
|
1589
1602
|
namespace JSX {
|
|
1590
1603
|
interface IntrinsicElements {
|
|
1591
|
-
'gs-
|
|
1604
|
+
'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1592
1605
|
}
|
|
1593
1606
|
}
|
|
1594
1607
|
}
|