@genspectrum/dashboard-components 1.15.0 → 1.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 (33) hide show
  1. package/custom-elements.json +2 -2
  2. package/dist/components.d.ts +65 -66
  3. package/dist/components.js +12 -14
  4. package/dist/components.js.map +1 -1
  5. package/dist/util.d.ts +66 -63
  6. package/package.json +2 -9
  7. package/src/preact/mutationsOverTime/getFilteredMutationsOverTimeData.ts +3 -1
  8. package/src/preact/queriesOverTime/queries-over-time-row-label-tooltip.stories.tsx +8 -10
  9. package/src/preact/queriesOverTime/queries-over-time-row-label-tooltip.tsx +7 -17
  10. package/src/preact/queriesOverTime/queries-over-time.tsx +1 -1
  11. package/src/utilEntrypoint.ts +1 -1
  12. package/src/web-components/gs-app.ts +2 -3
  13. package/src/web-components/input/gs-date-range-filter.tsx +2 -3
  14. package/src/web-components/input/gs-lineage-filter.tsx +2 -3
  15. package/src/web-components/input/gs-location-filter.tsx +2 -3
  16. package/src/web-components/input/gs-mutation-filter.tsx +3 -4
  17. package/src/web-components/input/gs-number-range-filter.tsx +2 -3
  18. package/src/web-components/input/gs-text-filter.tsx +2 -3
  19. package/src/web-components/mutation-annotations-context.ts +3 -1
  20. package/src/web-components/visualization/gs-aggregate.tsx +2 -3
  21. package/src/web-components/visualization/gs-genome-data-viewer.tsx +2 -3
  22. package/src/web-components/visualization/gs-mutation-comparison.tsx +2 -3
  23. package/src/web-components/visualization/gs-mutations-over-time.tsx +2 -3
  24. package/src/web-components/visualization/gs-mutations.tsx +7 -8
  25. package/src/web-components/visualization/gs-number-sequences-over-time.tsx +2 -3
  26. package/src/web-components/visualization/gs-prevalence-over-time.tsx +2 -3
  27. package/src/web-components/visualization/gs-queries-over-time.tsx +2 -3
  28. package/src/web-components/visualization/gs-relative-growth-advantage.tsx +2 -3
  29. package/src/web-components/visualization/gs-sequences-by-location.tsx +2 -3
  30. package/src/web-components/visualization/gs-statistics.tsx +2 -3
  31. package/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx +2 -3
  32. package/standalone-bundle/dashboard-components.js +12 -14
  33. package/standalone-bundle/dashboard-components.js.map +1 -1
@@ -3262,7 +3262,7 @@
3262
3262
  "kind": "field",
3263
3263
  "name": "baselineLapisFilter",
3264
3264
  "type": {
3265
- "text": "(Record<string, string | string[] | number | null | boolean | undefined> & {\n nucleotideMutations?: string[];\n aminoAcidMutations?: string[];\n nucleotideInsertions?: string[];\n aminoAcidInsertions?: string[];\n })\n | undefined"
3265
+ "text": "(Record<string, string | string[] | number | null | boolean | undefined> & {\n nucleotideMutations?: string[];\n aminoAcidMutations?: string[];\n nucleotideInsertions?: string[];\n aminoAcidInsertions?: string[];\n })\n | undefined"
3266
3266
  },
3267
3267
  "default": "undefined",
3268
3268
  "description": "LAPIS filter to select the mutation counts that are used to compute the Jaccard similarity.\nIf not provided, the Jaccard similarity is not computed.\nFor details, see the [Jaccard Similarity](#jaccard-similarity) section in the component description.",
@@ -3341,7 +3341,7 @@
3341
3341
  {
3342
3342
  "name": "baselineLapisFilter",
3343
3343
  "type": {
3344
- "text": "(Record<string, string | string[] | number | null | boolean | undefined> & {\n nucleotideMutations?: string[];\n aminoAcidMutations?: string[];\n nucleotideInsertions?: string[];\n aminoAcidInsertions?: string[];\n })\n | undefined"
3344
+ "text": "(Record<string, string | string[] | number | null | boolean | undefined> & {\n nucleotideMutations?: string[];\n aminoAcidMutations?: string[];\n nucleotideInsertions?: string[];\n aminoAcidInsertions?: string[];\n })\n | undefined"
3345
3345
  },
3346
3346
  "default": "undefined",
3347
3347
  "description": "LAPIS filter to select the mutation counts that are used to compute the Jaccard similarity.\nIf not provided, the Jaccard similarity is not computed.\nFor details, see the [Jaccard Similarity](#jaccard-similarity) section in the component description.",
@@ -1,6 +1,5 @@
1
1
  import { CSSResult } from 'lit';
2
2
  import { default as default_2 } from 'zod';
3
- import { JSX as JSX_2 } from 'react';
4
3
  import { JSXInternal } from 'preact/src/jsx';
5
4
  import { LitElement } from 'lit';
6
5
  import { PropertyValues } from '@lit/reactive-element';
@@ -89,7 +88,7 @@ export declare class AggregateComponent extends PreactLitAdapterWithGridJsStyles
89
88
  * The maximum number of bars to display in the bar chart view.
90
89
  */
91
90
  maxNumberOfBars: number;
92
- render(): JSX_2.Element;
91
+ render(): React.JSX.Element;
93
92
  }
94
93
 
95
94
  /**
@@ -233,7 +232,7 @@ export declare class DateRangeFilterComponent extends PreactLitAdapter {
233
232
  * The name of the metadata field in LAPIS that contains the date information.
234
233
  */
235
234
  lapisDateField: string;
236
- render(): JSX_2.Element;
235
+ render(): React.JSX.Element;
237
236
  }
238
237
 
239
238
  declare class ErrorEvent_2 extends Event {
@@ -271,7 +270,7 @@ export declare class GenomeDataViewerComponent extends PreactLitAdapter {
271
270
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
272
271
  */
273
272
  width: string;
274
- render(): JSX_2.Element;
273
+ render(): React.JSX.Element;
275
274
  }
276
275
 
277
276
  /**
@@ -353,7 +352,7 @@ export declare class LineageFilterComponent extends PreactLitAdapter {
353
352
  * Defaults to false.
354
353
  */
355
354
  hideCounts: boolean | undefined;
356
- render(): JSX_2.Element;
355
+ render(): React.JSX.Element;
357
356
  }
358
357
 
359
358
  /**
@@ -420,7 +419,7 @@ export declare class LocationFilterComponent extends PreactLitAdapter {
420
419
  * Defaults to false.
421
420
  */
422
421
  hideCounts: boolean | undefined;
423
- render(): JSX_2.Element;
422
+ render(): React.JSX.Element;
424
423
  }
425
424
 
426
425
  declare type MutationAnnotations = default_2.infer<typeof mutationAnnotationsSchema>;
@@ -529,7 +528,7 @@ export declare class MutationComparisonComponent extends PreactLitAdapterWithGri
529
528
  pageSize: boolean | number;
530
529
  /* Excluded from this release type: mutationAnnotations */
531
530
  /* Excluded from this release type: mutationLinkTemplate */
532
- render(): JSX_2.Element;
531
+ render(): React.JSX.Element;
533
532
  }
534
533
 
535
534
  /**
@@ -612,7 +611,7 @@ export declare class MutationFilterComponent extends PreactLitAdapter {
612
611
  * By default or if none are given, all types are accepted.
613
612
  */
614
613
  enabledMutationTypes: MutationType[] | undefined;
615
- render(): JSX_2.Element;
614
+ render(): React.JSX.Element;
616
615
  }
617
616
 
618
617
  declare type MutationLinkTemplate = default_2.infer<typeof mutationLinkTemplateSchema>;
@@ -731,7 +730,7 @@ export declare class MutationsComponent extends PreactLitAdapterWithGridJsStyles
731
730
  pageSize: boolean | number;
732
731
  /* Excluded from this release type: mutationAnnotations */
733
732
  /* Excluded from this release type: mutationLinkTemplate */
734
- render(): JSX_2.Element;
733
+ render(): React.JSX.Element;
735
734
  }
736
735
 
737
736
  /**
@@ -843,7 +842,7 @@ export declare class MutationsOverTimeComponent extends PreactLitAdapterWithGrid
843
842
  }[];
844
843
  /* Excluded from this release type: mutationAnnotations */
845
844
  /* Excluded from this release type: mutationLinkTemplate */
846
- render(): JSX_2.Element;
845
+ render(): React.JSX.Element;
847
846
  }
848
847
 
849
848
  declare type MutationType = default_2.infer<typeof mutationTypeSchema>;
@@ -944,7 +943,7 @@ export declare class NumberRangeFilterComponent extends PreactLitAdapter {
944
943
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
945
944
  */
946
945
  width: string;
947
- render(): JSX_2.Element;
946
+ render(): React.JSX.Element;
948
947
  }
949
948
 
950
949
  /**
@@ -1024,7 +1023,7 @@ export declare class NumberSequencesOverTimeComponent extends PreactLitAdapterWi
1024
1023
  * Set to `false` to disable pagination. Set to `true` to enable pagination with a default limit (10).
1025
1024
  */
1026
1025
  pageSize: boolean | number;
1027
- render(): JSX_2.Element;
1026
+ render(): React.JSX.Element;
1028
1027
  }
1029
1028
 
1030
1029
  declare abstract class PreactLitAdapter extends ReactiveElement {
@@ -1174,7 +1173,7 @@ export declare class PrevalenceOverTimeComponent extends PreactLitAdapterWithGri
1174
1173
  * If not set, the maximum value is set to the default value (1).
1175
1174
  */
1176
1175
  yAxisMaxLogarithmic: 'maxInData' | 'limitTo1' | number;
1177
- render(): JSX_2.Element;
1176
+ render(): React.JSX.Element;
1178
1177
  }
1179
1178
 
1180
1179
  /**
@@ -1277,7 +1276,7 @@ export declare class QueriesOverTimeComponent extends PreactLitAdapterWithGridJs
1277
1276
  header: string;
1278
1277
  values: Record<string, string | number>;
1279
1278
  }[];
1280
- render(): JSX_2.Element;
1279
+ render(): React.JSX.Element;
1281
1280
  }
1282
1281
 
1283
1282
  declare type ReferenceGenome = default_2.infer<typeof referenceGenomeResponse>;
@@ -1418,7 +1417,7 @@ export declare class RelativeGrowthAdvantageComponent extends PreactLitAdapter {
1418
1417
  * If not set, the maximum value is set to the default value (1).
1419
1418
  */
1420
1419
  yAxisMaxLogarithmic: 'maxInData' | 'limitTo1' | number;
1421
- render(): JSX_2.Element;
1420
+ render(): React.JSX.Element;
1422
1421
  }
1423
1422
 
1424
1423
  /**
@@ -1579,7 +1578,7 @@ export declare class SequencesByLocationComponent extends PreactLitAdapterWithGr
1579
1578
  * Set to `false` to disable pagination. Set to `true` to enable pagination with a default limit (10).
1580
1579
  */
1581
1580
  pageSize: boolean | number;
1582
- render(): JSX_2.Element;
1581
+ render(): React.JSX.Element;
1583
1582
  }
1584
1583
 
1585
1584
  /**
@@ -1624,7 +1623,7 @@ export declare class StatisticsComponent extends PreactLitAdapterWithGridJsStyle
1624
1623
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
1625
1624
  */
1626
1625
  height: string | undefined;
1627
- render(): JSX_2.Element;
1626
+ render(): React.JSX.Element;
1628
1627
  }
1629
1628
 
1630
1629
  /**
@@ -1681,7 +1680,7 @@ export declare class TextFilterComponent extends PreactLitAdapter {
1681
1680
  * Visit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.
1682
1681
  */
1683
1682
  width: string;
1684
- render(): JSX_2.Element;
1683
+ render(): React.JSX.Element;
1685
1684
  }
1686
1685
 
1687
1686
  export declare class UserFacingError extends Error {
@@ -1746,7 +1745,7 @@ export declare class WastewaterMutationsOverTimeComponent extends PreactLitAdapt
1746
1745
  pageSizes: number[] | number;
1747
1746
  /* Excluded from this release type: mutationAnnotations */
1748
1747
  /* Excluded from this release type: mutationLinkTemplate */
1749
- render(): JSX_2.Element;
1748
+ render(): React.JSX.Element;
1750
1749
  }
1751
1750
 
1752
1751
  export { }
@@ -1767,9 +1766,9 @@ declare global {
1767
1766
 
1768
1767
 
1769
1768
  declare global {
1770
- namespace JSX {
1769
+ namespace React.JSX {
1771
1770
  interface IntrinsicElements {
1772
- 'gs-app': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1771
+ 'gs-app': AppComponent;
1773
1772
  }
1774
1773
  }
1775
1774
  }
@@ -1777,15 +1776,15 @@ declare global {
1777
1776
 
1778
1777
  declare global {
1779
1778
  interface HTMLElementTagNameMap {
1780
- 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
1779
+ 'gs-genome-data-viewer': GenomeDataViewerComponent;
1781
1780
  }
1782
1781
  }
1783
1782
 
1784
1783
 
1785
1784
  declare global {
1786
- namespace JSX {
1785
+ namespace React.JSX {
1787
1786
  interface IntrinsicElements {
1788
- 'gs-wastewater-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1787
+ 'gs-genome-data-viewer': GenomeDataViewerComponent;
1789
1788
  }
1790
1789
  }
1791
1790
  }
@@ -1793,15 +1792,15 @@ declare global {
1793
1792
 
1794
1793
  declare global {
1795
1794
  interface HTMLElementTagNameMap {
1796
- 'gs-genome-data-viewer': GenomeDataViewerComponent;
1795
+ 'gs-mutation-comparison': MutationComparisonComponent;
1797
1796
  }
1798
1797
  }
1799
1798
 
1800
1799
 
1801
1800
  declare global {
1802
- namespace JSX {
1801
+ namespace React.JSX {
1803
1802
  interface IntrinsicElements {
1804
- 'gs-genome-data-viewer': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1803
+ 'gs-mutation-comparison': MutationComparisonComponent;
1805
1804
  }
1806
1805
  }
1807
1806
  }
@@ -1809,15 +1808,15 @@ declare global {
1809
1808
 
1810
1809
  declare global {
1811
1810
  interface HTMLElementTagNameMap {
1812
- 'gs-mutation-comparison': MutationComparisonComponent;
1811
+ 'gs-mutations': MutationsComponent;
1813
1812
  }
1814
1813
  }
1815
1814
 
1816
1815
 
1817
1816
  declare global {
1818
- namespace JSX {
1817
+ namespace React.JSX {
1819
1818
  interface IntrinsicElements {
1820
- 'gs-mutation-comparison': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1819
+ 'gs-mutations': MutationsComponent;
1821
1820
  }
1822
1821
  }
1823
1822
  }
@@ -1825,15 +1824,15 @@ declare global {
1825
1824
 
1826
1825
  declare global {
1827
1826
  interface HTMLElementTagNameMap {
1828
- 'gs-mutations': MutationsComponent;
1827
+ 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
1829
1828
  }
1830
1829
  }
1831
1830
 
1832
1831
 
1833
1832
  declare global {
1834
- namespace JSX {
1833
+ namespace React.JSX {
1835
1834
  interface IntrinsicElements {
1836
- 'gs-mutations': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1835
+ 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
1837
1836
  }
1838
1837
  }
1839
1838
  }
@@ -1841,15 +1840,15 @@ declare global {
1841
1840
 
1842
1841
  declare global {
1843
1842
  interface HTMLElementTagNameMap {
1844
- 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
1843
+ 'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
1845
1844
  }
1846
1845
  }
1847
1846
 
1848
1847
 
1849
1848
  declare global {
1850
- namespace JSX {
1849
+ namespace React.JSX {
1851
1850
  interface IntrinsicElements {
1852
- 'gs-prevalence-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1851
+ 'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
1853
1852
  }
1854
1853
  }
1855
1854
  }
@@ -1857,15 +1856,15 @@ declare global {
1857
1856
 
1858
1857
  declare global {
1859
1858
  interface HTMLElementTagNameMap {
1860
- 'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
1859
+ 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
1861
1860
  }
1862
1861
  }
1863
1862
 
1864
1863
 
1865
1864
  declare global {
1866
- namespace JSX {
1865
+ namespace React.JSX {
1867
1866
  interface IntrinsicElements {
1868
- 'gs-relative-growth-advantage': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1867
+ 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
1869
1868
  }
1870
1869
  }
1871
1870
  }
@@ -1879,9 +1878,9 @@ declare global {
1879
1878
 
1880
1879
 
1881
1880
  declare global {
1882
- namespace JSX {
1881
+ namespace React.JSX {
1883
1882
  interface IntrinsicElements {
1884
- 'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1883
+ 'gs-aggregate': AggregateComponent;
1885
1884
  }
1886
1885
  }
1887
1886
  }
@@ -1889,15 +1888,15 @@ declare global {
1889
1888
 
1890
1889
  declare global {
1891
1890
  interface HTMLElementTagNameMap {
1892
- 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
1891
+ 'gs-mutations-over-time': MutationsOverTimeComponent;
1893
1892
  }
1894
1893
  }
1895
1894
 
1896
1895
 
1897
1896
  declare global {
1898
- namespace JSX {
1897
+ namespace React.JSX {
1899
1898
  interface IntrinsicElements {
1900
- 'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1899
+ 'gs-mutations-over-time': MutationsOverTimeComponent;
1901
1900
  }
1902
1901
  }
1903
1902
  }
@@ -1911,9 +1910,9 @@ declare global {
1911
1910
 
1912
1911
 
1913
1912
  declare global {
1914
- namespace JSX {
1913
+ namespace React.JSX {
1915
1914
  interface IntrinsicElements {
1916
- 'gs-queries-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1915
+ 'gs-queries-over-time': QueriesOverTimeComponent;
1917
1916
  }
1918
1917
  }
1919
1918
  }
@@ -1921,15 +1920,15 @@ declare global {
1921
1920
 
1922
1921
  declare global {
1923
1922
  interface HTMLElementTagNameMap {
1924
- 'gs-mutations-over-time': MutationsOverTimeComponent;
1923
+ 'gs-statistics': StatisticsComponent;
1925
1924
  }
1926
1925
  }
1927
1926
 
1928
1927
 
1929
1928
  declare global {
1930
- namespace JSX {
1929
+ namespace React.JSX {
1931
1930
  interface IntrinsicElements {
1932
- 'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1931
+ 'gs-statistics': StatisticsComponent;
1933
1932
  }
1934
1933
  }
1935
1934
  }
@@ -1943,9 +1942,9 @@ declare global {
1943
1942
 
1944
1943
 
1945
1944
  declare global {
1946
- namespace JSX {
1945
+ namespace React.JSX {
1947
1946
  interface IntrinsicElements {
1948
- 'gs-sequences-by-location': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1947
+ 'gs-sequences-by-location': SequencesByLocationComponent;
1949
1948
  }
1950
1949
  }
1951
1950
  }
@@ -1953,15 +1952,15 @@ declare global {
1953
1952
 
1954
1953
  declare global {
1955
1954
  interface HTMLElementTagNameMap {
1956
- 'gs-statistics': StatisticsComponent;
1955
+ 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
1957
1956
  }
1958
1957
  }
1959
1958
 
1960
1959
 
1961
1960
  declare global {
1962
- namespace JSX {
1961
+ namespace React.JSX {
1963
1962
  interface IntrinsicElements {
1964
- 'gs-statistics': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1963
+ 'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
1965
1964
  }
1966
1965
  }
1967
1966
  }
@@ -1979,9 +1978,9 @@ declare global {
1979
1978
 
1980
1979
 
1981
1980
  declare global {
1982
- namespace JSX {
1981
+ namespace React.JSX {
1983
1982
  interface IntrinsicElements {
1984
- 'gs-date-range-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1983
+ 'gs-date-range-filter': DateRangeFilterComponent;
1985
1984
  }
1986
1985
  }
1987
1986
  }
@@ -1998,9 +1997,9 @@ declare global {
1998
1997
 
1999
1998
 
2000
1999
  declare global {
2001
- namespace JSX {
2000
+ namespace React.JSX {
2002
2001
  interface IntrinsicElements {
2003
- 'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2002
+ 'gs-location-filter': LocationFilterComponent;
2004
2003
  }
2005
2004
  }
2006
2005
  }
@@ -2017,9 +2016,9 @@ declare global {
2017
2016
 
2018
2017
 
2019
2018
  declare global {
2020
- namespace JSX {
2019
+ namespace React.JSX {
2021
2020
  interface IntrinsicElements {
2022
- 'gs-text-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2021
+ 'gs-text-filter': TextFilterComponent;
2023
2022
  }
2024
2023
  }
2025
2024
  }
@@ -2036,9 +2035,9 @@ declare global {
2036
2035
 
2037
2036
 
2038
2037
  declare global {
2039
- namespace JSX {
2038
+ namespace React.JSX {
2040
2039
  interface IntrinsicElements {
2041
- 'gs-mutation-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2040
+ 'gs-mutation-filter': MutationFilterComponent;
2042
2041
  }
2043
2042
  }
2044
2043
  }
@@ -2056,9 +2055,9 @@ declare global {
2056
2055
 
2057
2056
 
2058
2057
  declare global {
2059
- namespace JSX {
2058
+ namespace React.JSX {
2060
2059
  interface IntrinsicElements {
2061
- 'gs-lineage-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2060
+ 'gs-lineage-filter': LineageFilterComponent;
2062
2061
  }
2063
2062
  }
2064
2063
  }
@@ -2076,9 +2075,9 @@ declare global {
2076
2075
 
2077
2076
 
2078
2077
  declare global {
2079
- namespace JSX {
2078
+ namespace React.JSX {
2080
2079
  interface IntrinsicElements {
2081
- 'gs-number-range-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2080
+ 'gs-number-range-filter': NumberRangeFilterComponent;
2082
2081
  }
2083
2082
  }
2084
2083
  }