@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.
@@ -246,10 +246,10 @@
246
246
  "kind": "field",
247
247
  "name": "mutationAnnotations",
248
248
  "type": {
249
- "text": "{\n name: string;\n description: string;\n symbol: string;\n nucleotideMutations?: string[];\n nucleotidePositions?: string[];\n aminoAcidMutations?: string[];\n aminoAcidPositions?: string[];\n }[]"
249
+ "text": "{\n name: string;\n description: string;\n symbol: string;\n nucleotideMutations?: (string | { mutation: string; name?: string; description?: string })[];\n nucleotidePositions?: (string | { position: string; name?: string; description?: string })[];\n aminoAcidMutations?: (string | { mutation: string; name?: string; description?: string })[];\n aminoAcidPositions?: (string | { position: string; name?: string; description?: string })[];\n }[]"
250
250
  },
251
251
  "default": "[]",
252
- "description": "Supply lists of mutations that are especially relevant for the current organism.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.",
252
+ "description": "Supply lists of mutations that are especially relevant for the current organism.\n\nEach entry in `nucleotideMutations`, `aminoAcidMutations`, `nucleotidePositions`, and `aminoAcidPositions`\ncan be either a plain string or an object with an optional `name` and `description` that override the\ngroup-level values in the annotation popup for that specific mutation or position.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.",
253
253
  "attribute": "mutationAnnotations"
254
254
  },
255
255
  {
@@ -276,10 +276,10 @@
276
276
  {
277
277
  "name": "mutationAnnotations",
278
278
  "type": {
279
- "text": "{\n name: string;\n description: string;\n symbol: string;\n nucleotideMutations?: string[];\n nucleotidePositions?: string[];\n aminoAcidMutations?: string[];\n aminoAcidPositions?: string[];\n }[]"
279
+ "text": "{\n name: string;\n description: string;\n symbol: string;\n nucleotideMutations?: (string | { mutation: string; name?: string; description?: string })[];\n nucleotidePositions?: (string | { position: string; name?: string; description?: string })[];\n aminoAcidMutations?: (string | { mutation: string; name?: string; description?: string })[];\n aminoAcidPositions?: (string | { position: string; name?: string; description?: string })[];\n }[]"
280
280
  },
281
281
  "default": "[]",
282
- "description": "Supply lists of mutations that are especially relevant for the current organism.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.",
282
+ "description": "Supply lists of mutations that are especially relevant for the current organism.\n\nEach entry in `nucleotideMutations`, `aminoAcidMutations`, `nucleotidePositions`, and `aminoAcidPositions`\ncan be either a plain string or an object with an optional `name` and `description` that override the\ngroup-level values in the annotation popup for that specific mutation or position.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.",
283
283
  "fieldName": "mutationAnnotations"
284
284
  },
285
285
  {
@@ -118,16 +118,36 @@ export declare class AppComponent extends LitElement {
118
118
  /**
119
119
  * Supply lists of mutations that are especially relevant for the current organism.
120
120
  *
121
+ * Each entry in `nucleotideMutations`, `aminoAcidMutations`, `nucleotidePositions`, and `aminoAcidPositions`
122
+ * can be either a plain string or an object with an optional `name` and `description` that override the
123
+ * group-level values in the annotation popup for that specific mutation or position.
124
+ *
121
125
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.
122
126
  */
123
127
  mutationAnnotations: {
124
128
  name: string;
125
129
  description: string;
126
130
  symbol: string;
127
- nucleotideMutations?: string[];
128
- nucleotidePositions?: string[];
129
- aminoAcidMutations?: string[];
130
- aminoAcidPositions?: string[];
131
+ nucleotideMutations?: (string | {
132
+ mutation: string;
133
+ name?: string;
134
+ description?: string;
135
+ })[];
136
+ nucleotidePositions?: (string | {
137
+ position: string;
138
+ name?: string;
139
+ description?: string;
140
+ })[];
141
+ aminoAcidMutations?: (string | {
142
+ mutation: string;
143
+ name?: string;
144
+ description?: string;
145
+ })[];
146
+ aminoAcidPositions?: (string | {
147
+ position: string;
148
+ name?: string;
149
+ description?: string;
150
+ })[];
131
151
  }[];
132
152
  /**
133
153
  * Supply a link template for nucleotide and amino acid mutations.
@@ -428,26 +448,106 @@ declare const mutationAnnotationsSchema: default_2.ZodArray<default_2.ZodObject<
428
448
  name: default_2.ZodString;
429
449
  description: default_2.ZodString;
430
450
  symbol: default_2.ZodString;
431
- nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
432
- nucleotidePositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
433
- aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
434
- aminoAcidPositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
451
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
452
+ mutation: default_2.ZodString;
453
+ name: default_2.ZodOptional<default_2.ZodString>;
454
+ description: default_2.ZodOptional<default_2.ZodString>;
455
+ }, "strip", default_2.ZodTypeAny, {
456
+ mutation: string;
457
+ name?: string | undefined;
458
+ description?: string | undefined;
459
+ }, {
460
+ mutation: string;
461
+ name?: string | undefined;
462
+ description?: string | undefined;
463
+ }>]>, "many">>;
464
+ nucleotidePositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
465
+ position: default_2.ZodString;
466
+ name: default_2.ZodOptional<default_2.ZodString>;
467
+ description: default_2.ZodOptional<default_2.ZodString>;
468
+ }, "strip", default_2.ZodTypeAny, {
469
+ position: string;
470
+ name?: string | undefined;
471
+ description?: string | undefined;
472
+ }, {
473
+ position: string;
474
+ name?: string | undefined;
475
+ description?: string | undefined;
476
+ }>]>, "many">>;
477
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
478
+ mutation: default_2.ZodString;
479
+ name: default_2.ZodOptional<default_2.ZodString>;
480
+ description: default_2.ZodOptional<default_2.ZodString>;
481
+ }, "strip", default_2.ZodTypeAny, {
482
+ mutation: string;
483
+ name?: string | undefined;
484
+ description?: string | undefined;
485
+ }, {
486
+ mutation: string;
487
+ name?: string | undefined;
488
+ description?: string | undefined;
489
+ }>]>, "many">>;
490
+ aminoAcidPositions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodUnion<[default_2.ZodString, default_2.ZodObject<{
491
+ position: default_2.ZodString;
492
+ name: default_2.ZodOptional<default_2.ZodString>;
493
+ description: default_2.ZodOptional<default_2.ZodString>;
494
+ }, "strip", default_2.ZodTypeAny, {
495
+ position: string;
496
+ name?: string | undefined;
497
+ description?: string | undefined;
498
+ }, {
499
+ position: string;
500
+ name?: string | undefined;
501
+ description?: string | undefined;
502
+ }>]>, "many">>;
435
503
  }, "strip", default_2.ZodTypeAny, {
436
504
  symbol: string;
437
505
  name: string;
438
506
  description: string;
439
- nucleotideMutations?: string[] | undefined;
440
- nucleotidePositions?: string[] | undefined;
441
- aminoAcidMutations?: string[] | undefined;
442
- aminoAcidPositions?: string[] | undefined;
507
+ nucleotideMutations?: (string | {
508
+ mutation: string;
509
+ name?: string | undefined;
510
+ description?: string | undefined;
511
+ })[] | undefined;
512
+ nucleotidePositions?: (string | {
513
+ position: string;
514
+ name?: string | undefined;
515
+ description?: string | undefined;
516
+ })[] | undefined;
517
+ aminoAcidMutations?: (string | {
518
+ mutation: string;
519
+ name?: string | undefined;
520
+ description?: string | undefined;
521
+ })[] | undefined;
522
+ aminoAcidPositions?: (string | {
523
+ position: string;
524
+ name?: string | undefined;
525
+ description?: string | undefined;
526
+ })[] | undefined;
443
527
  }, {
444
528
  symbol: string;
445
529
  name: string;
446
530
  description: string;
447
- nucleotideMutations?: string[] | undefined;
448
- nucleotidePositions?: string[] | undefined;
449
- aminoAcidMutations?: string[] | undefined;
450
- aminoAcidPositions?: string[] | undefined;
531
+ nucleotideMutations?: (string | {
532
+ mutation: string;
533
+ name?: string | undefined;
534
+ description?: string | undefined;
535
+ })[] | undefined;
536
+ nucleotidePositions?: (string | {
537
+ position: string;
538
+ name?: string | undefined;
539
+ description?: string | undefined;
540
+ })[] | undefined;
541
+ aminoAcidMutations?: (string | {
542
+ mutation: string;
543
+ name?: string | undefined;
544
+ description?: string | undefined;
545
+ })[] | undefined;
546
+ aminoAcidPositions?: (string | {
547
+ position: string;
548
+ name?: string | undefined;
549
+ description?: string | undefined;
550
+ })[] | undefined;
451
551
  }>, "many">;
452
552
 
453
553
  /**
@@ -1776,7 +1876,7 @@ declare global {
1776
1876
 
1777
1877
  declare global {
1778
1878
  interface HTMLElementTagNameMap {
1779
- 'gs-genome-data-viewer': GenomeDataViewerComponent;
1879
+ 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
1780
1880
  }
1781
1881
  }
1782
1882
 
@@ -1784,7 +1884,7 @@ declare global {
1784
1884
  declare global {
1785
1885
  namespace React.JSX {
1786
1886
  interface IntrinsicElements {
1787
- 'gs-genome-data-viewer': GenomeDataViewerComponent;
1887
+ 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
1788
1888
  }
1789
1889
  }
1790
1890
  }
@@ -1792,7 +1892,11 @@ declare global {
1792
1892
 
1793
1893
  declare global {
1794
1894
  interface HTMLElementTagNameMap {
1795
- 'gs-mutation-comparison': MutationComparisonComponent;
1895
+ 'gs-date-range-filter': DateRangeFilterComponent;
1896
+ }
1897
+ interface HTMLElementEventMap {
1898
+ [gsEventNames.dateRangeFilterChanged]: CustomEvent<Record<string, string>>;
1899
+ [gsEventNames.dateRangeOptionChanged]: DateRangeOptionChangedEvent;
1796
1900
  }
1797
1901
  }
1798
1902
 
@@ -1800,7 +1904,7 @@ declare global {
1800
1904
  declare global {
1801
1905
  namespace React.JSX {
1802
1906
  interface IntrinsicElements {
1803
- 'gs-mutation-comparison': MutationComparisonComponent;
1907
+ 'gs-date-range-filter': DateRangeFilterComponent;
1804
1908
  }
1805
1909
  }
1806
1910
  }
@@ -1808,7 +1912,10 @@ declare global {
1808
1912
 
1809
1913
  declare global {
1810
1914
  interface HTMLElementTagNameMap {
1811
- 'gs-mutations': MutationsComponent;
1915
+ 'gs-text-filter': TextFilterComponent;
1916
+ }
1917
+ interface HTMLElementEventMap {
1918
+ [gsEventNames.textFilterChanged]: TextFilterChangedEvent;
1812
1919
  }
1813
1920
  }
1814
1921
 
@@ -1816,7 +1923,7 @@ declare global {
1816
1923
  declare global {
1817
1924
  namespace React.JSX {
1818
1925
  interface IntrinsicElements {
1819
- 'gs-mutations': MutationsComponent;
1926
+ 'gs-text-filter': TextFilterComponent;
1820
1927
  }
1821
1928
  }
1822
1929
  }
@@ -1824,7 +1931,10 @@ declare global {
1824
1931
 
1825
1932
  declare global {
1826
1933
  interface HTMLElementTagNameMap {
1827
- 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
1934
+ 'gs-location-filter': LocationFilterComponent;
1935
+ }
1936
+ interface HTMLElementEventMap {
1937
+ [gsEventNames.locationChanged]: LocationChangedEvent;
1828
1938
  }
1829
1939
  }
1830
1940
 
@@ -1832,7 +1942,7 @@ declare global {
1832
1942
  declare global {
1833
1943
  namespace React.JSX {
1834
1944
  interface IntrinsicElements {
1835
- 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
1945
+ 'gs-location-filter': LocationFilterComponent;
1836
1946
  }
1837
1947
  }
1838
1948
  }
@@ -1840,7 +1950,10 @@ declare global {
1840
1950
 
1841
1951
  declare global {
1842
1952
  interface HTMLElementTagNameMap {
1843
- 'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
1953
+ 'gs-mutation-filter': MutationFilterComponent;
1954
+ }
1955
+ interface HTMLElementEventMap {
1956
+ [gsEventNames.mutationFilterChanged]: CustomEvent<MutationsFilter>;
1844
1957
  }
1845
1958
  }
1846
1959
 
@@ -1848,7 +1961,7 @@ declare global {
1848
1961
  declare global {
1849
1962
  namespace React.JSX {
1850
1963
  interface IntrinsicElements {
1851
- 'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
1964
+ 'gs-mutation-filter': MutationFilterComponent;
1852
1965
  }
1853
1966
  }
1854
1967
  }
@@ -1856,7 +1969,11 @@ declare global {
1856
1969
 
1857
1970
  declare global {
1858
1971
  interface HTMLElementTagNameMap {
1859
- 'gs-aggregate': AggregateComponent;
1972
+ 'gs-lineage-filter': LineageFilterComponent;
1973
+ }
1974
+ interface HTMLElementEventMap {
1975
+ [gsEventNames.lineageFilterChanged]: LineageFilterChangedEvent;
1976
+ [gsEventNames.lineageFilterMultiChanged]: LineageMultiFilterChangedEvent;
1860
1977
  }
1861
1978
  }
1862
1979
 
@@ -1864,7 +1981,7 @@ declare global {
1864
1981
  declare global {
1865
1982
  namespace React.JSX {
1866
1983
  interface IntrinsicElements {
1867
- 'gs-aggregate': AggregateComponent;
1984
+ 'gs-lineage-filter': LineageFilterComponent;
1868
1985
  }
1869
1986
  }
1870
1987
  }
@@ -1872,7 +1989,11 @@ declare global {
1872
1989
 
1873
1990
  declare global {
1874
1991
  interface HTMLElementTagNameMap {
1875
- 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
1992
+ 'gs-number-range-filter': NumberRangeFilterComponent;
1993
+ }
1994
+ interface HTMLElementEventMap {
1995
+ [gsEventNames.numberRangeFilterChanged]: NumberRangeFilterChangedEvent;
1996
+ [gsEventNames.numberRangeValueChanged]: NumberRangeValueChangedEvent;
1876
1997
  }
1877
1998
  }
1878
1999
 
@@ -1880,7 +2001,7 @@ declare global {
1880
2001
  declare global {
1881
2002
  namespace React.JSX {
1882
2003
  interface IntrinsicElements {
1883
- 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
2004
+ 'gs-number-range-filter': NumberRangeFilterComponent;
1884
2005
  }
1885
2006
  }
1886
2007
  }
@@ -1888,7 +2009,7 @@ declare global {
1888
2009
 
1889
2010
  declare global {
1890
2011
  interface HTMLElementTagNameMap {
1891
- 'gs-mutations-over-time': MutationsOverTimeComponent;
2012
+ 'gs-genome-data-viewer': GenomeDataViewerComponent;
1892
2013
  }
1893
2014
  }
1894
2015
 
@@ -1896,7 +2017,7 @@ declare global {
1896
2017
  declare global {
1897
2018
  namespace React.JSX {
1898
2019
  interface IntrinsicElements {
1899
- 'gs-mutations-over-time': MutationsOverTimeComponent;
2020
+ 'gs-genome-data-viewer': GenomeDataViewerComponent;
1900
2021
  }
1901
2022
  }
1902
2023
  }
@@ -1904,7 +2025,7 @@ declare global {
1904
2025
 
1905
2026
  declare global {
1906
2027
  interface HTMLElementTagNameMap {
1907
- 'gs-queries-over-time': QueriesOverTimeComponent;
2028
+ 'gs-mutations': MutationsComponent;
1908
2029
  }
1909
2030
  }
1910
2031
 
@@ -1912,7 +2033,7 @@ declare global {
1912
2033
  declare global {
1913
2034
  namespace React.JSX {
1914
2035
  interface IntrinsicElements {
1915
- 'gs-queries-over-time': QueriesOverTimeComponent;
2036
+ 'gs-mutations': MutationsComponent;
1916
2037
  }
1917
2038
  }
1918
2039
  }
@@ -1920,7 +2041,7 @@ declare global {
1920
2041
 
1921
2042
  declare global {
1922
2043
  interface HTMLElementTagNameMap {
1923
- 'gs-statistics': StatisticsComponent;
2044
+ 'gs-mutation-comparison': MutationComparisonComponent;
1924
2045
  }
1925
2046
  }
1926
2047
 
@@ -1928,7 +2049,7 @@ declare global {
1928
2049
  declare global {
1929
2050
  namespace React.JSX {
1930
2051
  interface IntrinsicElements {
1931
- 'gs-statistics': StatisticsComponent;
2052
+ 'gs-mutation-comparison': MutationComparisonComponent;
1932
2053
  }
1933
2054
  }
1934
2055
  }
@@ -1936,7 +2057,7 @@ declare global {
1936
2057
 
1937
2058
  declare global {
1938
2059
  interface HTMLElementTagNameMap {
1939
- 'gs-sequences-by-location': SequencesByLocationComponent;
2060
+ 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
1940
2061
  }
1941
2062
  }
1942
2063
 
@@ -1944,7 +2065,7 @@ declare global {
1944
2065
  declare global {
1945
2066
  namespace React.JSX {
1946
2067
  interface IntrinsicElements {
1947
- 'gs-sequences-by-location': SequencesByLocationComponent;
2068
+ 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
1948
2069
  }
1949
2070
  }
1950
2071
  }
@@ -1952,7 +2073,7 @@ declare global {
1952
2073
 
1953
2074
  declare global {
1954
2075
  interface HTMLElementTagNameMap {
1955
- 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
2076
+ 'gs-aggregate': AggregateComponent;
1956
2077
  }
1957
2078
  }
1958
2079
 
@@ -1960,7 +2081,7 @@ declare global {
1960
2081
  declare global {
1961
2082
  namespace React.JSX {
1962
2083
  interface IntrinsicElements {
1963
- 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
2084
+ 'gs-aggregate': AggregateComponent;
1964
2085
  }
1965
2086
  }
1966
2087
  }
@@ -1968,11 +2089,7 @@ declare global {
1968
2089
 
1969
2090
  declare global {
1970
2091
  interface HTMLElementTagNameMap {
1971
- 'gs-date-range-filter': DateRangeFilterComponent;
1972
- }
1973
- interface HTMLElementEventMap {
1974
- [gsEventNames.dateRangeFilterChanged]: CustomEvent<Record<string, string>>;
1975
- [gsEventNames.dateRangeOptionChanged]: DateRangeOptionChangedEvent;
2092
+ 'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
1976
2093
  }
1977
2094
  }
1978
2095
 
@@ -1980,7 +2097,7 @@ declare global {
1980
2097
  declare global {
1981
2098
  namespace React.JSX {
1982
2099
  interface IntrinsicElements {
1983
- 'gs-date-range-filter': DateRangeFilterComponent;
2100
+ 'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
1984
2101
  }
1985
2102
  }
1986
2103
  }
@@ -1988,10 +2105,7 @@ declare global {
1988
2105
 
1989
2106
  declare global {
1990
2107
  interface HTMLElementTagNameMap {
1991
- 'gs-location-filter': LocationFilterComponent;
1992
- }
1993
- interface HTMLElementEventMap {
1994
- [gsEventNames.locationChanged]: LocationChangedEvent;
2108
+ 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
1995
2109
  }
1996
2110
  }
1997
2111
 
@@ -1999,7 +2113,7 @@ declare global {
1999
2113
  declare global {
2000
2114
  namespace React.JSX {
2001
2115
  interface IntrinsicElements {
2002
- 'gs-location-filter': LocationFilterComponent;
2116
+ 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
2003
2117
  }
2004
2118
  }
2005
2119
  }
@@ -2007,10 +2121,7 @@ declare global {
2007
2121
 
2008
2122
  declare global {
2009
2123
  interface HTMLElementTagNameMap {
2010
- 'gs-text-filter': TextFilterComponent;
2011
- }
2012
- interface HTMLElementEventMap {
2013
- [gsEventNames.textFilterChanged]: TextFilterChangedEvent;
2124
+ 'gs-mutations-over-time': MutationsOverTimeComponent;
2014
2125
  }
2015
2126
  }
2016
2127
 
@@ -2018,7 +2129,7 @@ declare global {
2018
2129
  declare global {
2019
2130
  namespace React.JSX {
2020
2131
  interface IntrinsicElements {
2021
- 'gs-text-filter': TextFilterComponent;
2132
+ 'gs-mutations-over-time': MutationsOverTimeComponent;
2022
2133
  }
2023
2134
  }
2024
2135
  }
@@ -2026,10 +2137,7 @@ declare global {
2026
2137
 
2027
2138
  declare global {
2028
2139
  interface HTMLElementTagNameMap {
2029
- 'gs-mutation-filter': MutationFilterComponent;
2030
- }
2031
- interface HTMLElementEventMap {
2032
- [gsEventNames.mutationFilterChanged]: CustomEvent<MutationsFilter>;
2140
+ 'gs-queries-over-time': QueriesOverTimeComponent;
2033
2141
  }
2034
2142
  }
2035
2143
 
@@ -2037,7 +2145,7 @@ declare global {
2037
2145
  declare global {
2038
2146
  namespace React.JSX {
2039
2147
  interface IntrinsicElements {
2040
- 'gs-mutation-filter': MutationFilterComponent;
2148
+ 'gs-queries-over-time': QueriesOverTimeComponent;
2041
2149
  }
2042
2150
  }
2043
2151
  }
@@ -2045,11 +2153,7 @@ declare global {
2045
2153
 
2046
2154
  declare global {
2047
2155
  interface HTMLElementTagNameMap {
2048
- 'gs-lineage-filter': LineageFilterComponent;
2049
- }
2050
- interface HTMLElementEventMap {
2051
- [gsEventNames.lineageFilterChanged]: LineageFilterChangedEvent;
2052
- [gsEventNames.lineageFilterMultiChanged]: LineageMultiFilterChangedEvent;
2156
+ 'gs-statistics': StatisticsComponent;
2053
2157
  }
2054
2158
  }
2055
2159
 
@@ -2057,7 +2161,7 @@ declare global {
2057
2161
  declare global {
2058
2162
  namespace React.JSX {
2059
2163
  interface IntrinsicElements {
2060
- 'gs-lineage-filter': LineageFilterComponent;
2164
+ 'gs-statistics': StatisticsComponent;
2061
2165
  }
2062
2166
  }
2063
2167
  }
@@ -2065,11 +2169,7 @@ declare global {
2065
2169
 
2066
2170
  declare global {
2067
2171
  interface HTMLElementTagNameMap {
2068
- 'gs-number-range-filter': NumberRangeFilterComponent;
2069
- }
2070
- interface HTMLElementEventMap {
2071
- [gsEventNames.numberRangeFilterChanged]: NumberRangeFilterChangedEvent;
2072
- [gsEventNames.numberRangeValueChanged]: NumberRangeValueChangedEvent;
2172
+ 'gs-sequences-by-location': SequencesByLocationComponent;
2073
2173
  }
2074
2174
  }
2075
2175
 
@@ -2077,7 +2177,7 @@ declare global {
2077
2177
  declare global {
2078
2178
  namespace React.JSX {
2079
2179
  interface IntrinsicElements {
2080
- 'gs-number-range-filter': NumberRangeFilterComponent;
2180
+ 'gs-sequences-by-location': SequencesByLocationComponent;
2081
2181
  }
2082
2182
  }
2083
2183
  }