@genspectrum/dashboard-components 0.14.2 → 0.16.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.
Files changed (104) hide show
  1. package/custom-elements.json +281 -105
  2. package/dist/{LineageFilterChangedEvent-C9dXOxt6.js → LineageFilterChangedEvent-COWV-Y0k.js} +6 -6
  3. package/dist/LineageFilterChangedEvent-COWV-Y0k.js.map +1 -0
  4. package/dist/assets/{mutationOverTimeWorker-Dxnxrfe0.js.map → mutationOverTimeWorker-BL50C-yi.js.map} +1 -1
  5. package/dist/components.d.ts +40 -40
  6. package/dist/components.js +373 -243
  7. package/dist/components.js.map +1 -1
  8. package/dist/style.css +9 -0
  9. package/dist/util.d.ts +49 -49
  10. package/dist/util.js +2 -2
  11. package/package.json +1 -1
  12. package/src/preact/ReferenceGenomeContext.ts +14 -1
  13. package/src/preact/aggregatedData/aggregate-bar-chart.tsx +26 -5
  14. package/src/preact/aggregatedData/aggregate.stories.tsx +0 -1
  15. package/src/preact/aggregatedData/aggregate.tsx +5 -1
  16. package/src/preact/components/ReferenceGenomesAwaiter.tsx +1 -6
  17. package/src/preact/components/resize-container.tsx +1 -1
  18. package/src/preact/{dateRangeSelector/date-range-selector.stories.tsx → dateRangeFilter/date-range-filter.stories.tsx} +15 -15
  19. package/src/preact/{dateRangeSelector/date-range-selector.tsx → dateRangeFilter/date-range-filter.tsx} +9 -9
  20. package/src/preact/{dateRangeSelector → dateRangeFilter}/dateRangeOption.ts +2 -2
  21. package/src/preact/mutationComparison/mutation-comparison-venn.tsx +4 -2
  22. package/src/preact/mutationComparison/mutation-comparison.stories.tsx +0 -1
  23. package/src/preact/mutationComparison/mutation-comparison.tsx +5 -1
  24. package/src/preact/mutationFilter/mutation-filter.stories.tsx +17 -1
  25. package/src/preact/mutationFilter/mutation-filter.tsx +8 -0
  26. package/src/preact/mutations/mutations.stories.tsx +0 -1
  27. package/src/preact/mutations/mutations.tsx +1 -1
  28. package/src/preact/mutationsOverTime/mutations-over-time.stories.tsx +0 -2
  29. package/src/preact/mutationsOverTime/mutations-over-time.tsx +1 -1
  30. package/src/preact/numberSequencesOverTime/number-sequences-over-time-bar-chart.tsx +8 -3
  31. package/src/preact/numberSequencesOverTime/number-sequences-over-time-line-chart.tsx +8 -3
  32. package/src/preact/numberSequencesOverTime/number-sequences-over-time.stories.tsx +3 -1
  33. package/src/preact/numberSequencesOverTime/number-sequences-over-time.tsx +18 -3
  34. package/src/preact/prevalenceOverTime/prevalence-over-time-bar-chart.tsx +48 -35
  35. package/src/preact/prevalenceOverTime/prevalence-over-time-bubble-chart.tsx +83 -70
  36. package/src/preact/prevalenceOverTime/prevalence-over-time-line-chart.tsx +48 -37
  37. package/src/preact/prevalenceOverTime/prevalence-over-time.stories.tsx +0 -3
  38. package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +6 -1
  39. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage-chart.tsx +31 -23
  40. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.stories.tsx +0 -1
  41. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.tsx +5 -1
  42. package/src/preact/sequencesByLocation/__mockData__/worldAtlas.json +1 -0
  43. package/src/preact/{map → sequencesByLocation}/sequences-by-location-map.tsx +6 -3
  44. package/src/preact/{map → sequencesByLocation}/sequences-by-location-table.tsx +1 -1
  45. package/src/preact/{map → sequencesByLocation}/sequences-by-location.stories.tsx +58 -1
  46. package/src/preact/{map → sequencesByLocation}/sequences-by-location.tsx +10 -1
  47. package/src/preact/shared/aspectRatio/AspectRatio.tsx +13 -0
  48. package/src/preact/shared/charts/getMaintainAspectRatio.ts +3 -0
  49. package/src/preact/statistic/statistics.stories.tsx +0 -1
  50. package/src/preact/statistic/statistics.tsx +4 -4
  51. package/src/preact/{textInput/TextInputChangedEvent.ts → textFilter/TextFilterChangedEvent.ts} +2 -2
  52. package/src/preact/{textInput/text-input.stories.tsx → textFilter/text-filter.stories.tsx} +10 -10
  53. package/src/preact/{textInput/text-input.tsx → textFilter/text-filter.tsx} +10 -10
  54. package/src/preact/wastewater/mutationsOverTime/wastewater-mutations-over-time.stories.tsx +0 -1
  55. package/src/preact/wastewater/mutationsOverTime/wastewater-mutations-over-time.tsx +1 -1
  56. package/src/query/computeMapLocationData.spec.ts +1 -1
  57. package/src/query/computeMapLocationData.ts +1 -1
  58. package/src/query/querySequencesByLocationData.ts +1 -1
  59. package/src/utilEntrypoint.ts +3 -3
  60. package/src/web-components/ResizeContainer.mdx +4 -1
  61. package/src/web-components/input/{gs-date-range-selector.stories.ts → gs-date-range-filter.stories.ts} +59 -14
  62. package/src/web-components/input/{gs-date-range-selector.tsx → gs-date-range-filter.tsx} +28 -13
  63. package/src/web-components/input/{gs-text-input.stories.ts → gs-text-filter.stories.ts} +15 -15
  64. package/src/web-components/input/{gs-text-input.tsx → gs-text-filter.tsx} +16 -16
  65. package/src/web-components/input/index.ts +2 -2
  66. package/src/web-components/visualization/gs-aggregate.stories.ts +13 -6
  67. package/src/web-components/visualization/gs-aggregate.tsx +1 -1
  68. package/src/web-components/visualization/gs-mutation-comparison.stories.ts +8 -1
  69. package/src/web-components/visualization/gs-mutation-comparison.tsx +1 -1
  70. package/src/web-components/visualization/gs-mutations-over-time.stories.ts +9 -1
  71. package/src/web-components/visualization/gs-mutations-over-time.tsx +1 -1
  72. package/src/web-components/visualization/gs-mutations.stories.ts +8 -1
  73. package/src/web-components/visualization/gs-mutations.tsx +1 -1
  74. package/src/web-components/visualization/gs-number-sequences-over-time.stories.ts +11 -1
  75. package/src/web-components/visualization/gs-number-sequences-over-time.tsx +1 -1
  76. package/src/web-components/visualization/gs-prevalence-over-time.stories.ts +8 -2
  77. package/src/web-components/visualization/gs-prevalence-over-time.tsx +1 -1
  78. package/src/web-components/visualization/gs-relative-growth-advantage.stories.ts +8 -1
  79. package/src/web-components/visualization/gs-relative-growth-advantage.tsx +1 -1
  80. package/src/web-components/visualization/gs-sequences-by-location.stories.ts +13 -7
  81. package/src/web-components/visualization/gs-sequences-by-location.tsx +6 -3
  82. package/src/web-components/visualization/gs-statistics.stories.ts +0 -1
  83. package/src/web-components/visualization/gs-statistics.tsx +1 -1
  84. package/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.stories.ts +9 -1
  85. package/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx +1 -1
  86. package/standalone-bundle/assets/{mutationOverTimeWorker-CmSrq4SZ.js.map → mutationOverTimeWorker-CFB5-Mdk.js.map} +1 -1
  87. package/standalone-bundle/dashboard-components.js +6032 -5937
  88. package/standalone-bundle/dashboard-components.js.map +1 -1
  89. package/standalone-bundle/style.css +1 -1
  90. package/dist/LineageFilterChangedEvent-C9dXOxt6.js.map +0 -1
  91. package/src/preact/map/__mockData__/worldAtlas.json +0 -497127
  92. /package/src/preact/{dateRangeSelector → dateRangeFilter}/computeInitialValues.spec.ts +0 -0
  93. /package/src/preact/{dateRangeSelector → dateRangeFilter}/computeInitialValues.ts +0 -0
  94. /package/src/preact/{dateRangeSelector → dateRangeFilter}/dateConversion.ts +0 -0
  95. /package/src/preact/{dateRangeSelector → dateRangeFilter}/selectableOptions.ts +0 -0
  96. /package/src/preact/{map → sequencesByLocation}/__mockData__/aggregatedGermany.json +0 -0
  97. /package/src/preact/{map → sequencesByLocation}/__mockData__/aggregatedWorld.json +0 -0
  98. /package/src/preact/{map → sequencesByLocation}/__mockData__/germanyMap.json +0 -0
  99. /package/src/preact/{map → sequencesByLocation}/__mockData__/howToGenerateWorldMap.md +0 -0
  100. /package/src/preact/{map → sequencesByLocation}/leafletStyleModifications.css +0 -0
  101. /package/src/preact/{map → sequencesByLocation}/loadMapSource.tsx +0 -0
  102. /package/src/preact/{textInput → textFilter}/__mockData__/aggregated_hosts.json +0 -0
  103. /package/src/preact/{textInput → textFilter}/fetchStringAutocompleteList.spec.ts +0 -0
  104. /package/src/preact/{textInput → textFilter}/fetchStringAutocompleteList.ts +0 -0
@@ -67,7 +67,7 @@ export declare class AggregateComponent extends PreactLitAdapterWithGridJsStyles
67
67
  *
68
68
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
69
69
  */
70
- height: string;
70
+ height: string | undefined;
71
71
  /**
72
72
  * The field by which the table is initially sorted.
73
73
  * Must be one of the fields specified in the fields property, 'count', or 'proportion'.
@@ -160,7 +160,7 @@ export declare class AppComponent extends LitElement {
160
160
  * Use this event, when you want to control this component in your JS application.
161
161
  * You can supply the `detail` of this event to the `value` attribute of this component.
162
162
  */
163
- export declare class DateRangeSelectorComponent extends PreactLitAdapter {
163
+ export declare class DateRangeFilterComponent extends PreactLitAdapter {
164
164
  /**
165
165
  * An array of date range options that the select field should provide.
166
166
  * The `label` will be shown to the user, and it will be available as `value`.
@@ -396,7 +396,7 @@ export declare class MutationComparisonComponent extends PreactLitAdapterWithGri
396
396
  *
397
397
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
398
398
  */
399
- height: string;
399
+ height: string | undefined;
400
400
  /**
401
401
  * The maximum number of rows to display in the table view.
402
402
  * Set to `false` to disable pagination. Set to `true` to enable pagination with a default limit (10).
@@ -561,7 +561,7 @@ export declare class MutationsComponent extends PreactLitAdapterWithGridJsStyles
561
561
  *
562
562
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
563
563
  */
564
- height: string;
564
+ height: string | undefined;
565
565
  /**
566
566
  * The maximum number of rows to display in the table view.
567
567
  * Set to `false` to disable pagination. Set to `true` to enable pagination with a default limit (10).
@@ -624,7 +624,7 @@ export declare class MutationsOverTimeComponent extends PreactLitAdapterWithGrid
624
624
  *
625
625
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
626
626
  */
627
- height: string;
627
+ height: string | undefined;
628
628
  /**
629
629
  * The granularity of the time axis.
630
630
  */
@@ -694,7 +694,7 @@ export declare class NumberSequencesOverTimeComponent extends PreactLitAdapterWi
694
694
  *
695
695
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
696
696
  */
697
- height: string;
697
+ height: string | undefined;
698
698
  /**
699
699
  * The granularity of the time axis.
700
700
  */
@@ -831,7 +831,7 @@ export declare class PrevalenceOverTimeComponent extends PreactLitAdapterWithGri
831
831
  *
832
832
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
833
833
  */
834
- height: string;
834
+ height: string | undefined;
835
835
  /**
836
836
  * Required.
837
837
  *
@@ -974,7 +974,7 @@ export declare class RelativeGrowthAdvantageComponent extends PreactLitAdapter {
974
974
  *
975
975
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
976
976
  */
977
- height: string;
977
+ height: string | undefined;
978
978
  /**
979
979
  * Required.
980
980
  *
@@ -1130,7 +1130,7 @@ export declare class SequencesByLocationComponent extends PreactLitAdapterWithGr
1130
1130
  *
1131
1131
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
1132
1132
  */
1133
- height: string;
1133
+ height: string | undefined;
1134
1134
  /**
1135
1135
  A list of tabs with views that this component should provide.
1136
1136
  */
@@ -1198,7 +1198,7 @@ export declare class StatisticsComponent extends PreactLitAdapterWithGridJsStyle
1198
1198
  *
1199
1199
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
1200
1200
  */
1201
- height: string;
1201
+ height: string | undefined;
1202
1202
  render(): JSX_2.Element;
1203
1203
  }
1204
1204
 
@@ -1208,7 +1208,7 @@ export declare class StatisticsComponent extends PreactLitAdapterWithGridJsStyle
1208
1208
  *
1209
1209
  * This component provides a text input field to specify filters for arbitrary fields of this LAPIS instance.
1210
1210
  *
1211
- * @fires {CustomEvent<Record<string, string | undefined>>} gs-text-input-changed
1211
+ * @fires {CustomEvent<Record<string, string | undefined>>} gs-text-filter-changed
1212
1212
  * Fired when the input field is changed.
1213
1213
  * The `details` of this event contain an object with the `lapisField` as key and the input value as value.
1214
1214
  * Example:
@@ -1218,15 +1218,15 @@ export declare class StatisticsComponent extends PreactLitAdapterWithGridJsStyle
1218
1218
  * }
1219
1219
  * ```
1220
1220
  */
1221
- export declare class TextInputComponent extends PreactLitAdapter {
1221
+ export declare class TextFilterComponent extends PreactLitAdapter {
1222
1222
  /**
1223
- * The initial value to use for this text input.
1223
+ * The initial value to use for this text filter.
1224
1224
  */
1225
1225
  value: string | undefined;
1226
1226
  /**
1227
1227
  * Required.
1228
1228
  *
1229
- * The LAPIS field name to use for this text input.
1229
+ * The LAPIS field name to use for this text filter.
1230
1230
  * The field must exist on this LAPIS instance.
1231
1231
  */
1232
1232
  lapisField: string;
@@ -1306,7 +1306,7 @@ export declare class WastewaterMutationsOverTimeComponent extends PreactLitAdapt
1306
1306
  *
1307
1307
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/components-size-of-components--docs for more information.
1308
1308
  */
1309
- height: string;
1309
+ height: string | undefined;
1310
1310
  /**
1311
1311
  * The maximum number of grid rows to display.
1312
1312
  */
@@ -1342,7 +1342,7 @@ declare global {
1342
1342
 
1343
1343
  declare global {
1344
1344
  interface HTMLElementTagNameMap {
1345
- 'gs-mutations-component': MutationsComponent;
1345
+ 'gs-mutation-comparison-component': MutationComparisonComponent;
1346
1346
  }
1347
1347
  }
1348
1348
 
@@ -1350,7 +1350,7 @@ declare global {
1350
1350
  declare global {
1351
1351
  namespace JSX {
1352
1352
  interface IntrinsicElements {
1353
- 'gs-mutations-component': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1353
+ 'gs-mutation-comparison-component': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1354
1354
  }
1355
1355
  }
1356
1356
  }
@@ -1358,7 +1358,7 @@ declare global {
1358
1358
 
1359
1359
  declare global {
1360
1360
  interface HTMLElementTagNameMap {
1361
- 'gs-mutation-comparison-component': MutationComparisonComponent;
1361
+ 'gs-mutations-component': MutationsComponent;
1362
1362
  }
1363
1363
  }
1364
1364
 
@@ -1366,7 +1366,7 @@ declare global {
1366
1366
  declare global {
1367
1367
  namespace JSX {
1368
1368
  interface IntrinsicElements {
1369
- 'gs-mutation-comparison-component': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1369
+ 'gs-mutations-component': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1370
1370
  }
1371
1371
  }
1372
1372
  }
@@ -1406,7 +1406,7 @@ declare global {
1406
1406
 
1407
1407
  declare global {
1408
1408
  interface HTMLElementTagNameMap {
1409
- 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
1409
+ 'gs-aggregate': AggregateComponent;
1410
1410
  }
1411
1411
  }
1412
1412
 
@@ -1414,7 +1414,7 @@ declare global {
1414
1414
  declare global {
1415
1415
  namespace JSX {
1416
1416
  interface IntrinsicElements {
1417
- 'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1417
+ 'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1418
1418
  }
1419
1419
  }
1420
1420
  }
@@ -1422,7 +1422,7 @@ declare global {
1422
1422
 
1423
1423
  declare global {
1424
1424
  interface HTMLElementTagNameMap {
1425
- 'gs-aggregate': AggregateComponent;
1425
+ 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
1426
1426
  }
1427
1427
  }
1428
1428
 
@@ -1430,7 +1430,7 @@ declare global {
1430
1430
  declare global {
1431
1431
  namespace JSX {
1432
1432
  interface IntrinsicElements {
1433
- 'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1433
+ 'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1434
1434
  }
1435
1435
  }
1436
1436
  }
@@ -1486,7 +1486,11 @@ declare global {
1486
1486
 
1487
1487
  declare global {
1488
1488
  interface HTMLElementTagNameMap {
1489
- 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
1489
+ 'gs-date-range-filter': DateRangeFilterComponent;
1490
+ }
1491
+ interface HTMLElementEventMap {
1492
+ 'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
1493
+ 'gs-date-range-option-changed': DateRangeOptionChangedEvent;
1490
1494
  }
1491
1495
  }
1492
1496
 
@@ -1494,7 +1498,7 @@ declare global {
1494
1498
  declare global {
1495
1499
  namespace JSX {
1496
1500
  interface IntrinsicElements {
1497
- 'gs-wastewater-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1501
+ 'gs-date-range-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1498
1502
  }
1499
1503
  }
1500
1504
  }
@@ -1502,11 +1506,10 @@ declare global {
1502
1506
 
1503
1507
  declare global {
1504
1508
  interface HTMLElementTagNameMap {
1505
- 'gs-date-range-selector': DateRangeSelectorComponent;
1509
+ 'gs-location-filter': LocationFilterComponent;
1506
1510
  }
1507
1511
  interface HTMLElementEventMap {
1508
- 'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
1509
- 'gs-date-range-option-changed': DateRangeOptionChangedEvent;
1512
+ 'gs-location-changed': LocationChangedEvent;
1510
1513
  }
1511
1514
  }
1512
1515
 
@@ -1514,7 +1517,7 @@ declare global {
1514
1517
  declare global {
1515
1518
  namespace JSX {
1516
1519
  interface IntrinsicElements {
1517
- 'gs-date-range-selector': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1520
+ 'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1518
1521
  }
1519
1522
  }
1520
1523
  }
@@ -1522,10 +1525,10 @@ declare global {
1522
1525
 
1523
1526
  declare global {
1524
1527
  interface HTMLElementTagNameMap {
1525
- 'gs-text-input': TextInputComponent;
1528
+ 'gs-text-filter': TextFilterComponent;
1526
1529
  }
1527
1530
  interface HTMLElementEventMap {
1528
- 'gs-text-input-changed': TextInputChangedEvent;
1531
+ 'gs-text-filter-changed': TextFilterChangedEvent;
1529
1532
  }
1530
1533
  }
1531
1534
 
@@ -1533,7 +1536,7 @@ declare global {
1533
1536
  declare global {
1534
1537
  namespace JSX {
1535
1538
  interface IntrinsicElements {
1536
- 'gs-text-input': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1539
+ 'gs-text-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1537
1540
  }
1538
1541
  }
1539
1542
  }
@@ -1541,10 +1544,10 @@ declare global {
1541
1544
 
1542
1545
  declare global {
1543
1546
  interface HTMLElementTagNameMap {
1544
- 'gs-location-filter': LocationFilterComponent;
1547
+ 'gs-mutation-filter': MutationFilterComponent;
1545
1548
  }
1546
1549
  interface HTMLElementEventMap {
1547
- 'gs-location-changed': LocationChangedEvent;
1550
+ 'gs-mutation-filter-changed': CustomEvent<MutationsFilter>;
1548
1551
  }
1549
1552
  }
1550
1553
 
@@ -1552,7 +1555,7 @@ declare global {
1552
1555
  declare global {
1553
1556
  namespace JSX {
1554
1557
  interface IntrinsicElements {
1555
- 'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1558
+ 'gs-mutation-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1556
1559
  }
1557
1560
  }
1558
1561
  }
@@ -1579,10 +1582,7 @@ declare global {
1579
1582
 
1580
1583
  declare global {
1581
1584
  interface HTMLElementTagNameMap {
1582
- 'gs-mutation-filter': MutationFilterComponent;
1583
- }
1584
- interface HTMLElementEventMap {
1585
- 'gs-mutation-filter-changed': CustomEvent<MutationsFilter>;
1585
+ 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
1586
1586
  }
1587
1587
  }
1588
1588
 
@@ -1590,7 +1590,7 @@ declare global {
1590
1590
  declare global {
1591
1591
  namespace JSX {
1592
1592
  interface IntrinsicElements {
1593
- 'gs-mutation-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1593
+ 'gs-wastewater-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1594
1594
  }
1595
1595
  }
1596
1596
  }