@genspectrum/dashboard-components 1.12.0 → 1.13.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/README.md +0 -7
- package/custom-elements.json +6 -25
- package/dist/components.d.ts +30 -36
- package/dist/components.js +943 -757
- package/dist/components.js.map +1 -1
- package/dist/util.d.ts +46 -30
- package/package.json +1 -5
- package/src/lapisApi/lapisApi.ts +21 -1
- package/src/lapisApi/lapisTypes.ts +36 -0
- package/src/preact/components/annotated-mutation.tsx +2 -2
- package/src/preact/{mutationsOverTime/mutations-over-time-grid.tsx → components/features-over-time-grid.tsx} +45 -52
- package/src/preact/genomeViewer/genome-data-viewer.tsx +2 -2
- package/src/preact/mutationsOverTime/MutationOverTimeData.ts +6 -4
- package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutationsByDay/aminoAcidMutations.json +5482 -0
- package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutationsByDay/aminoAcidMutationsOverTime.json +5496 -0
- package/src/preact/mutationsOverTime/__mockData__/byWeek/mutationsOverTime.json +7100 -0
- package/src/preact/mutationsOverTime/__mockData__/byWeek/nucleotideMutations.json +10122 -0
- package/src/preact/mutationsOverTime/__mockData__/defaultMockData/mutationsOverTime.json +12646 -0
- package/src/preact/mutationsOverTime/__mockData__/defaultMockData/nucleotideMutations.json +12632 -0
- package/src/preact/mutationsOverTime/__mockData__/request1800s/mutationsOverTime.json +16 -0
- package/src/preact/mutationsOverTime/__mockData__/request1800s/nucleotideMutations.json +11 -0
- package/src/preact/mutationsOverTime/__mockData__/withDisplayMutations/mutationsOverTime.json +52 -0
- package/src/preact/mutationsOverTime/getFilteredMutationsOverTime.spec.ts +3 -3
- package/src/preact/mutationsOverTime/mutations-over-time-grid-tooltip.tsx +3 -6
- package/src/preact/mutationsOverTime/mutations-over-time.stories.tsx +199 -12
- package/src/preact/mutationsOverTime/mutations-over-time.tsx +30 -35
- package/src/preact/wastewater/mutationsOverTime/wastewater-mutations-over-time.tsx +30 -3
- package/src/query/queryDatesInDataset.ts +89 -0
- package/src/query/queryMutationsOverTime.spec.ts +526 -548
- package/src/query/queryMutationsOverTime.ts +21 -232
- package/src/query/queryQueriesOverTime.spec.ts +432 -0
- package/src/query/queryQueriesOverTime.ts +125 -0
- package/src/utilEntrypoint.ts +3 -1
- package/src/utils/mutations.spec.ts +6 -0
- package/src/utils/mutations.ts +1 -1
- package/src/utils/temporalClass.ts +4 -0
- package/src/web-components/visualization/gs-mutations-over-time.spec-d.ts +0 -3
- package/src/web-components/visualization/gs-mutations-over-time.stories.ts +283 -17
- package/src/web-components/visualization/gs-mutations-over-time.tsx +0 -9
- package/standalone-bundle/dashboard-components.js +8935 -8781
- package/standalone-bundle/dashboard-components.js.map +1 -1
- package/dist/assets/mutationOverTimeWorker-f8Kp0S6V.js.map +0 -1
- package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutationsByDay.ts +0 -47170
- package/src/preact/mutationsOverTime/__mockData__/byWeek.ts +0 -54026
- package/src/preact/mutationsOverTime/__mockData__/defaultMockData.ts +0 -108385
- package/src/preact/mutationsOverTime/__mockData__/mockConversion.ts +0 -54
- package/src/preact/mutationsOverTime/__mockData__/noDataWhenNoMutationsAreInFilter.ts +0 -23
- package/src/preact/mutationsOverTime/__mockData__/noDataWhenThereAreNoDatesInFilter.ts +0 -23
- package/src/preact/mutationsOverTime/__mockData__/showsMessageWhenTooManyMutations.ts +0 -65527
- package/src/preact/mutationsOverTime/__mockData__/withDisplayMutations.ts +0 -352
- package/src/preact/mutationsOverTime/__mockData__/withGaps.ts +0 -298
- package/src/preact/mutationsOverTime/mutationOverTimeWorker.mock.ts +0 -33
- package/src/preact/mutationsOverTime/mutationOverTimeWorker.ts +0 -29
- package/src/preact/webWorkers/useWebWorker.ts +0 -74
- package/src/preact/webWorkers/workerFunction.ts +0 -30
- package/src/query/queryMutationsOverTimeNewEndpoint.spec.ts +0 -988
- package/standalone-bundle/assets/mutationOverTimeWorker-AhhjjklP.js.map +0 -1
package/README.md
CHANGED
|
@@ -172,13 +172,6 @@ Make sure that stories don't issue actual HTTP calls to LAPIS or other services.
|
|
|
172
172
|
This is to make sure that we have stable tests in CI that don't depend on the availability of other services.
|
|
173
173
|
We still use the real LAPIS URL so that a user can change the filters in a story and will still see data.
|
|
174
174
|
|
|
175
|
-
In general, we use `storybook-addon-fetch-mock` for all outgoing requests. This strategy
|
|
176
|
-
cannot be used for components that use web workers, like gs-mutations-over-time. Therefore, we created custom mock
|
|
177
|
-
workers that return mocked data. The mock workers are enabled in the package.json using
|
|
178
|
-
Node.js [subpath imports](https://nodejs.org/api/packages.html#subpath-imports), following the guide
|
|
179
|
-
from [storybook](https://storybook.js.org/docs/writing-stories/mocking-data-and-modules/mocking-modules). This ensures
|
|
180
|
-
that when importing the worker in the component, the mock worker is used inside Storybook instead of the real worker.
|
|
181
|
-
|
|
182
175
|
### How The Release Build Works
|
|
183
176
|
|
|
184
177
|
The `"exports"` field in `package.json` defines which files a user of the package can import using the normal module systems.
|
package/custom-elements.json
CHANGED
|
@@ -2717,7 +2717,7 @@
|
|
|
2717
2717
|
"type": {
|
|
2718
2718
|
"text": "Meta<Required<MutationsOverTimeProps>>"
|
|
2719
2719
|
},
|
|
2720
|
-
"default": "{ title: 'Visualization/Mutations over time', component: 'gs-mutations-over-time', argTypes: { lapisFilter: { control: 'object' }, sequenceType: { options: ['nucleotide', 'amino acid'], control: { type: 'radio' }, }, views: { options: ['grid'], control: { type: 'check' }, }, width: { control: 'text' }, height: { control: 'text' }, granularity: { options: ['day', 'week', 'month', 'year'], control: { type: 'radio' }, }, lapisDateField: { control: 'text' }, displayMutations: { control: 'object' }, initialMeanProportionInterval: { control: 'object' }, hideGaps: { control: 'boolean' },
|
|
2720
|
+
"default": "{ title: 'Visualization/Mutations over time', component: 'gs-mutations-over-time', argTypes: { lapisFilter: { control: 'object' }, sequenceType: { options: ['nucleotide', 'amino acid'], control: { type: 'radio' }, }, views: { options: ['grid'], control: { type: 'check' }, }, width: { control: 'text' }, height: { control: 'text' }, granularity: { options: ['day', 'week', 'month', 'year'], control: { type: 'radio' }, }, lapisDateField: { control: 'text' }, displayMutations: { control: 'object' }, initialMeanProportionInterval: { control: 'object' }, hideGaps: { control: 'boolean' }, pageSizes: { control: 'object' }, customColumns: { control: 'object' }, }, args: { lapisFilter: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-07-10' }, sequenceType: 'nucleotide', views: ['grid'], width: '100%', granularity: 'month', lapisDateField: 'date', initialMeanProportionInterval: { min: 0.05, max: 0.9 }, hideGaps: false, pageSizes: [10, 20, 30, 40, 50], }, parameters: withComponentDocs({ componentDocs: { opensShadowDom: true, expectsChildren: false, codeExample, }, fetchMock: { mocks: [ { matcher: { url: `${LAPIS_URL}/sample/nucleotideMutations`, body: { pangoLineage: 'JN.1*', dateFrom: '2024-01-01', dateTo: '2024-07-31', minProportion: 0.001, }, response: { status: 200, body: mockDefaultNucleotideMutations, }, }, }, { matcher: { url: `${LAPIS_URL}/component/nucleotideMutationsOverTime`, body: { filters: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-07-10', }, dateRanges: [ { dateFrom: '2024-01-01', dateTo: '2024-01-31' }, { dateFrom: '2024-02-01', dateTo: '2024-02-29' }, { dateFrom: '2024-03-01', dateTo: '2024-03-31' }, { dateFrom: '2024-04-01', dateTo: '2024-04-30' }, { dateFrom: '2024-05-01', dateTo: '2024-05-31' }, { dateFrom: '2024-06-01', dateTo: '2024-06-30' }, { dateFrom: '2024-07-01', dateTo: '2024-07-31' }, ], dateField: 'date', }, matchPartialBody: true, response: { status: 200, body: mockDefaultMutationsOverTime, }, }, }, ], }, }), tags: ['autodocs'], }"
|
|
2721
2721
|
},
|
|
2722
2722
|
{
|
|
2723
2723
|
"kind": "variable",
|
|
@@ -2733,7 +2733,7 @@
|
|
|
2733
2733
|
"type": {
|
|
2734
2734
|
"text": "StoryObj<Required<MutationsOverTimeProps>>"
|
|
2735
2735
|
},
|
|
2736
|
-
"default": "{ ...Template, args: { ...Template.args, displayMutations: ['
|
|
2736
|
+
"default": "{ ...Template, args: { ...Template.args, displayMutations: ['A13121T', 'G24872T', 'T21653-'], }, parameters: { fetchMock: { mocks: [ { matcher: { url: `${LAPIS_URL}/sample/nucleotideMutations`, body: { pangoLineage: 'JN.1*', dateFrom: '2024-01-01', dateTo: '2024-07-31', minProportion: 0.001, }, response: { status: 200, body: mockDefaultNucleotideMutations, }, }, }, { matcher: { url: `${LAPIS_URL}/component/nucleotideMutationsOverTime`, body: { filters: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-07-10' }, dateRanges: [ { dateFrom: '2024-01-01', dateTo: '2024-01-31' }, { dateFrom: '2024-02-01', dateTo: '2024-02-29' }, { dateFrom: '2024-03-01', dateTo: '2024-03-31' }, { dateFrom: '2024-04-01', dateTo: '2024-04-30' }, { dateFrom: '2024-05-01', dateTo: '2024-05-31' }, { dateFrom: '2024-06-01', dateTo: '2024-06-30' }, { dateFrom: '2024-07-01', dateTo: '2024-07-31' }, ], includeMutations: ['A13121T', 'T21653-', 'G24872T'], dateField: 'date', }, response: { status: 200, body: mockWithDisplayMutationsMutationsOverTime, }, }, }, ], }, }, }"
|
|
2737
2737
|
},
|
|
2738
2738
|
{
|
|
2739
2739
|
"kind": "variable",
|
|
@@ -2741,7 +2741,7 @@
|
|
|
2741
2741
|
"type": {
|
|
2742
2742
|
"text": "StoryObj<Required<MutationsOverTimeProps>>"
|
|
2743
2743
|
},
|
|
2744
|
-
"default": "{ ...Template, args: { ...Template.args, displayMutations: ['
|
|
2744
|
+
"default": "{ ...Template, args: { ...Template.args, displayMutations: ['A13121T', 'G24872T', 'T21653-'], hideGaps: true, }, parameters: { fetchMock: { mocks: [ { matcher: { url: `${LAPIS_URL}/sample/nucleotideMutations`, body: { pangoLineage: 'JN.1*', dateFrom: '2024-01-01', dateTo: '2024-07-31', minProportion: 0.001, }, response: { status: 200, body: mockDefaultNucleotideMutations, }, }, }, { matcher: { url: `${LAPIS_URL}/component/nucleotideMutationsOverTime`, body: { filters: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-07-10' }, dateRanges: [ { dateFrom: '2024-01-01', dateTo: '2024-01-31' }, { dateFrom: '2024-02-01', dateTo: '2024-02-29' }, { dateFrom: '2024-03-01', dateTo: '2024-03-31' }, { dateFrom: '2024-04-01', dateTo: '2024-04-30' }, { dateFrom: '2024-05-01', dateTo: '2024-05-31' }, { dateFrom: '2024-06-01', dateTo: '2024-06-30' }, { dateFrom: '2024-07-01', dateTo: '2024-07-31' }, ], includeMutations: ['A13121T', 'T21653-', 'G24872T'], dateField: 'date', }, response: { status: 200, body: mockWithDisplayMutationsMutationsOverTime, }, }, }, ], }, }, }"
|
|
2745
2745
|
},
|
|
2746
2746
|
{
|
|
2747
2747
|
"kind": "variable",
|
|
@@ -2749,7 +2749,7 @@
|
|
|
2749
2749
|
"type": {
|
|
2750
2750
|
"text": "StoryObj<Required<MutationsOverTimeProps>>"
|
|
2751
2751
|
},
|
|
2752
|
-
"default": "{ ...Template, args: { ...Template.args, lapisFilter: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-02-11' }, granularity: 'week', }, }"
|
|
2752
|
+
"default": "{ ...Template, args: { ...Template.args, lapisFilter: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-02-11' }, granularity: 'week', }, parameters: { fetchMock: { mocks: [ { matcher: { url: `${LAPIS_URL}/sample/nucleotideMutations`, body: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-02-11', minProportion: 0.001, }, response: { status: 200, body: mockByWeekNucleotideMutations, }, }, }, { matcher: { url: `${LAPIS_URL}/component/nucleotideMutationsOverTime`, body: { filters: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-02-11', }, dateRanges: [ { dateFrom: '2024-01-15', dateTo: '2024-01-21' }, { dateFrom: '2024-01-22', dateTo: '2024-01-28' }, { dateFrom: '2024-01-29', dateTo: '2024-02-04' }, { dateFrom: '2024-02-05', dateTo: '2024-02-11' }, ], dateField: 'date', }, matchPartialBody: true, response: { status: 200, body: mockByWeekMutationsOverTime, }, }, }, ], }, }, }"
|
|
2753
2753
|
},
|
|
2754
2754
|
{
|
|
2755
2755
|
"kind": "variable",
|
|
@@ -2757,7 +2757,7 @@
|
|
|
2757
2757
|
"type": {
|
|
2758
2758
|
"text": "StoryObj<Required<MutationsOverTimeProps>>"
|
|
2759
2759
|
},
|
|
2760
|
-
"default": "{ ...Template, args: { ...Template.args, lapisFilter: { pangoLineage: 'JN.1*', dateFrom: '2024-01-20', dateTo: '2024-01-26' }, granularity: 'day', sequenceType: 'amino acid', }, }"
|
|
2760
|
+
"default": "{ ...Template, args: { ...Template.args, lapisFilter: { pangoLineage: 'JN.1*', dateFrom: '2024-01-20', dateTo: '2024-01-26' }, granularity: 'day', sequenceType: 'amino acid', }, parameters: { fetchMock: { mocks: [ { matcher: { url: `${LAPIS_URL}/sample/aminoAcidMutations`, body: { pangoLineage: 'JN.1*', dateFrom: '2024-01-20', dateTo: '2024-01-26', minProportion: 0.001, }, response: { status: 200, body: mockAminoAcidMutationsByDayAminoAcidMutations, }, }, }, { matcher: { url: `${LAPIS_URL}/component/aminoAcidMutationsOverTime`, body: { filters: { pangoLineage: 'JN.1*', dateFrom: '2024-01-20', dateTo: '2024-01-26', }, dateRanges: [ { dateFrom: '2024-01-20', dateTo: '2024-01-20' }, { dateFrom: '2024-01-21', dateTo: '2024-01-21' }, { dateFrom: '2024-01-22', dateTo: '2024-01-22' }, { dateFrom: '2024-01-23', dateTo: '2024-01-23' }, { dateFrom: '2024-01-24', dateTo: '2024-01-24' }, { dateFrom: '2024-01-25', dateTo: '2024-01-25' }, { dateFrom: '2024-01-26', dateTo: '2024-01-26' }, ], dateField: 'date', }, matchPartialBody: true, response: { status: 200, body: mockAminoAcidMutationsByDayAminoAcidMutationsOverTime, }, }, }, ], }, }, }"
|
|
2761
2761
|
},
|
|
2762
2762
|
{
|
|
2763
2763
|
"kind": "variable",
|
|
@@ -2781,7 +2781,7 @@
|
|
|
2781
2781
|
"type": {
|
|
2782
2782
|
"text": "StoryObj<Required<MutationsOverTimeProps>>"
|
|
2783
2783
|
},
|
|
2784
|
-
"default": "{ ...Template, args: { ...Template.args, displayMutations: ['
|
|
2784
|
+
"default": "{ ...Template, args: { ...Template.args, displayMutations: ['A13121T', 'G24872T', 'T21653-'], customColumns: [ { header: 'Jaccard Index', values: { A13121T: 0.75, G24872T: 0.92, 'T21653-': 0.58, }, }, ], }, parameters: { fetchMock: { mocks: [ { matcher: { url: `${LAPIS_URL}/sample/nucleotideMutations`, body: { pangoLineage: 'JN.1*', dateFrom: '2024-01-01', dateTo: '2024-07-31', minProportion: 0.001, }, response: { status: 200, body: mockDefaultNucleotideMutations, }, }, }, { matcher: { url: `${LAPIS_URL}/component/nucleotideMutationsOverTime`, body: { filters: { pangoLineage: 'JN.1*', dateFrom: '2024-01-15', dateTo: '2024-07-10' }, dateRanges: [ { dateFrom: '2024-01-01', dateTo: '2024-01-31' }, { dateFrom: '2024-02-01', dateTo: '2024-02-29' }, { dateFrom: '2024-03-01', dateTo: '2024-03-31' }, { dateFrom: '2024-04-01', dateTo: '2024-04-30' }, { dateFrom: '2024-05-01', dateTo: '2024-05-31' }, { dateFrom: '2024-06-01', dateTo: '2024-06-30' }, { dateFrom: '2024-07-01', dateTo: '2024-07-31' }, ], includeMutations: ['A13121T', 'T21653-', 'G24872T'], dateField: 'date', }, response: { status: 200, body: mockWithDisplayMutationsMutationsOverTime, }, }, }, ], }, }, }"
|
|
2785
2785
|
}
|
|
2786
2786
|
],
|
|
2787
2787
|
"exports": [
|
|
@@ -2968,16 +2968,6 @@
|
|
|
2968
2968
|
"description": "If true, date ranges with no data will be hidden initially; if false, not.\nCan be switched with a button in the toolbar.",
|
|
2969
2969
|
"attribute": "hideGaps"
|
|
2970
2970
|
},
|
|
2971
|
-
{
|
|
2972
|
-
"kind": "field",
|
|
2973
|
-
"name": "useNewEndpoint",
|
|
2974
|
-
"type": {
|
|
2975
|
-
"text": "boolean | undefined"
|
|
2976
|
-
},
|
|
2977
|
-
"default": "false",
|
|
2978
|
-
"description": "Whether to use the mutationsOverTime endpoint from LAPIS.\nIf true, use the endpoint, if false, compute component data as before.\nEventually, the new endpoint will become the default.",
|
|
2979
|
-
"attribute": "useNewEndpoint"
|
|
2980
|
-
},
|
|
2981
2971
|
{
|
|
2982
2972
|
"kind": "field",
|
|
2983
2973
|
"name": "pageSizes",
|
|
@@ -3099,15 +3089,6 @@
|
|
|
3099
3089
|
"description": "If true, date ranges with no data will be hidden initially; if false, not.\nCan be switched with a button in the toolbar.",
|
|
3100
3090
|
"fieldName": "hideGaps"
|
|
3101
3091
|
},
|
|
3102
|
-
{
|
|
3103
|
-
"name": "useNewEndpoint",
|
|
3104
|
-
"type": {
|
|
3105
|
-
"text": "boolean | undefined"
|
|
3106
|
-
},
|
|
3107
|
-
"default": "false",
|
|
3108
|
-
"description": "Whether to use the mutationsOverTime endpoint from LAPIS.\nIf true, use the endpoint, if false, compute component data as before.\nEventually, the new endpoint will become the default.",
|
|
3109
|
-
"fieldName": "useNewEndpoint"
|
|
3110
|
-
},
|
|
3111
3092
|
{
|
|
3112
3093
|
"name": "pageSizes",
|
|
3113
3094
|
"type": {
|
package/dist/components.d.ts
CHANGED
|
@@ -829,12 +829,6 @@ export declare class MutationsOverTimeComponent extends PreactLitAdapterWithGrid
|
|
|
829
829
|
* Can be switched with a button in the toolbar.
|
|
830
830
|
*/
|
|
831
831
|
hideGaps: boolean;
|
|
832
|
-
/**
|
|
833
|
-
* Whether to use the mutationsOverTime endpoint from LAPIS.
|
|
834
|
-
* If true, use the endpoint, if false, compute component data as before.
|
|
835
|
-
* Eventually, the new endpoint will become the default.
|
|
836
|
-
*/
|
|
837
|
-
useNewEndpoint?: boolean;
|
|
838
832
|
/**
|
|
839
833
|
* The number of rows per page, which can be selected by the user.
|
|
840
834
|
*/
|
|
@@ -1712,7 +1706,7 @@ declare global {
|
|
|
1712
1706
|
|
|
1713
1707
|
declare global {
|
|
1714
1708
|
interface HTMLElementTagNameMap {
|
|
1715
|
-
'gs-
|
|
1709
|
+
'gs-mutations': MutationsComponent;
|
|
1716
1710
|
}
|
|
1717
1711
|
}
|
|
1718
1712
|
|
|
@@ -1720,7 +1714,7 @@ declare global {
|
|
|
1720
1714
|
declare global {
|
|
1721
1715
|
namespace JSX {
|
|
1722
1716
|
interface IntrinsicElements {
|
|
1723
|
-
'gs-
|
|
1717
|
+
'gs-mutations': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1724
1718
|
}
|
|
1725
1719
|
}
|
|
1726
1720
|
}
|
|
@@ -1728,7 +1722,7 @@ declare global {
|
|
|
1728
1722
|
|
|
1729
1723
|
declare global {
|
|
1730
1724
|
interface HTMLElementTagNameMap {
|
|
1731
|
-
'gs-
|
|
1725
|
+
'gs-prevalence-over-time': PrevalenceOverTimeComponent;
|
|
1732
1726
|
}
|
|
1733
1727
|
}
|
|
1734
1728
|
|
|
@@ -1736,7 +1730,7 @@ declare global {
|
|
|
1736
1730
|
declare global {
|
|
1737
1731
|
namespace JSX {
|
|
1738
1732
|
interface IntrinsicElements {
|
|
1739
|
-
'gs-
|
|
1733
|
+
'gs-prevalence-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1740
1734
|
}
|
|
1741
1735
|
}
|
|
1742
1736
|
}
|
|
@@ -1744,7 +1738,7 @@ declare global {
|
|
|
1744
1738
|
|
|
1745
1739
|
declare global {
|
|
1746
1740
|
interface HTMLElementTagNameMap {
|
|
1747
|
-
'gs-
|
|
1741
|
+
'gs-mutation-comparison': MutationComparisonComponent;
|
|
1748
1742
|
}
|
|
1749
1743
|
}
|
|
1750
1744
|
|
|
@@ -1752,7 +1746,7 @@ declare global {
|
|
|
1752
1746
|
declare global {
|
|
1753
1747
|
namespace JSX {
|
|
1754
1748
|
interface IntrinsicElements {
|
|
1755
|
-
'gs-
|
|
1749
|
+
'gs-mutation-comparison': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1756
1750
|
}
|
|
1757
1751
|
}
|
|
1758
1752
|
}
|
|
@@ -1760,7 +1754,7 @@ declare global {
|
|
|
1760
1754
|
|
|
1761
1755
|
declare global {
|
|
1762
1756
|
interface HTMLElementTagNameMap {
|
|
1763
|
-
'gs-
|
|
1757
|
+
'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
|
|
1764
1758
|
}
|
|
1765
1759
|
}
|
|
1766
1760
|
|
|
@@ -1768,7 +1762,7 @@ declare global {
|
|
|
1768
1762
|
declare global {
|
|
1769
1763
|
namespace JSX {
|
|
1770
1764
|
interface IntrinsicElements {
|
|
1771
|
-
'gs-
|
|
1765
|
+
'gs-relative-growth-advantage': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1772
1766
|
}
|
|
1773
1767
|
}
|
|
1774
1768
|
}
|
|
@@ -1776,7 +1770,7 @@ declare global {
|
|
|
1776
1770
|
|
|
1777
1771
|
declare global {
|
|
1778
1772
|
interface HTMLElementTagNameMap {
|
|
1779
|
-
'gs-
|
|
1773
|
+
'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
|
|
1780
1774
|
}
|
|
1781
1775
|
}
|
|
1782
1776
|
|
|
@@ -1784,7 +1778,7 @@ declare global {
|
|
|
1784
1778
|
declare global {
|
|
1785
1779
|
namespace JSX {
|
|
1786
1780
|
interface IntrinsicElements {
|
|
1787
|
-
'gs-
|
|
1781
|
+
'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1788
1782
|
}
|
|
1789
1783
|
}
|
|
1790
1784
|
}
|
|
@@ -1792,7 +1786,7 @@ declare global {
|
|
|
1792
1786
|
|
|
1793
1787
|
declare global {
|
|
1794
1788
|
interface HTMLElementTagNameMap {
|
|
1795
|
-
'gs-
|
|
1789
|
+
'gs-aggregate': AggregateComponent;
|
|
1796
1790
|
}
|
|
1797
1791
|
}
|
|
1798
1792
|
|
|
@@ -1800,7 +1794,7 @@ declare global {
|
|
|
1800
1794
|
declare global {
|
|
1801
1795
|
namespace JSX {
|
|
1802
1796
|
interface IntrinsicElements {
|
|
1803
|
-
'gs-
|
|
1797
|
+
'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1804
1798
|
}
|
|
1805
1799
|
}
|
|
1806
1800
|
}
|
|
@@ -1808,7 +1802,7 @@ declare global {
|
|
|
1808
1802
|
|
|
1809
1803
|
declare global {
|
|
1810
1804
|
interface HTMLElementTagNameMap {
|
|
1811
|
-
'gs-
|
|
1805
|
+
'gs-mutations-over-time': MutationsOverTimeComponent;
|
|
1812
1806
|
}
|
|
1813
1807
|
}
|
|
1814
1808
|
|
|
@@ -1816,7 +1810,7 @@ declare global {
|
|
|
1816
1810
|
declare global {
|
|
1817
1811
|
namespace JSX {
|
|
1818
1812
|
interface IntrinsicElements {
|
|
1819
|
-
'gs-
|
|
1813
|
+
'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1820
1814
|
}
|
|
1821
1815
|
}
|
|
1822
1816
|
}
|
|
@@ -1840,7 +1834,7 @@ declare global {
|
|
|
1840
1834
|
|
|
1841
1835
|
declare global {
|
|
1842
1836
|
interface HTMLElementTagNameMap {
|
|
1843
|
-
'gs-
|
|
1837
|
+
'gs-statistics': StatisticsComponent;
|
|
1844
1838
|
}
|
|
1845
1839
|
}
|
|
1846
1840
|
|
|
@@ -1848,7 +1842,7 @@ declare global {
|
|
|
1848
1842
|
declare global {
|
|
1849
1843
|
namespace JSX {
|
|
1850
1844
|
interface IntrinsicElements {
|
|
1851
|
-
'gs-
|
|
1845
|
+
'gs-statistics': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1852
1846
|
}
|
|
1853
1847
|
}
|
|
1854
1848
|
}
|
|
@@ -1876,10 +1870,10 @@ declare global {
|
|
|
1876
1870
|
|
|
1877
1871
|
declare global {
|
|
1878
1872
|
interface HTMLElementTagNameMap {
|
|
1879
|
-
'gs-
|
|
1873
|
+
'gs-location-filter': LocationFilterComponent;
|
|
1880
1874
|
}
|
|
1881
1875
|
interface HTMLElementEventMap {
|
|
1882
|
-
[gsEventNames.
|
|
1876
|
+
[gsEventNames.locationChanged]: LocationChangedEvent;
|
|
1883
1877
|
}
|
|
1884
1878
|
}
|
|
1885
1879
|
|
|
@@ -1887,7 +1881,7 @@ declare global {
|
|
|
1887
1881
|
declare global {
|
|
1888
1882
|
namespace JSX {
|
|
1889
1883
|
interface IntrinsicElements {
|
|
1890
|
-
'gs-
|
|
1884
|
+
'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1891
1885
|
}
|
|
1892
1886
|
}
|
|
1893
1887
|
}
|
|
@@ -1895,10 +1889,10 @@ declare global {
|
|
|
1895
1889
|
|
|
1896
1890
|
declare global {
|
|
1897
1891
|
interface HTMLElementTagNameMap {
|
|
1898
|
-
'gs-
|
|
1892
|
+
'gs-text-filter': TextFilterComponent;
|
|
1899
1893
|
}
|
|
1900
1894
|
interface HTMLElementEventMap {
|
|
1901
|
-
[gsEventNames.
|
|
1895
|
+
[gsEventNames.textFilterChanged]: TextFilterChangedEvent;
|
|
1902
1896
|
}
|
|
1903
1897
|
}
|
|
1904
1898
|
|
|
@@ -1906,7 +1900,7 @@ declare global {
|
|
|
1906
1900
|
declare global {
|
|
1907
1901
|
namespace JSX {
|
|
1908
1902
|
interface IntrinsicElements {
|
|
1909
|
-
'gs-
|
|
1903
|
+
'gs-text-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1910
1904
|
}
|
|
1911
1905
|
}
|
|
1912
1906
|
}
|
|
@@ -1933,11 +1927,11 @@ declare global {
|
|
|
1933
1927
|
|
|
1934
1928
|
declare global {
|
|
1935
1929
|
interface HTMLElementTagNameMap {
|
|
1936
|
-
'gs-
|
|
1930
|
+
'gs-lineage-filter': LineageFilterComponent;
|
|
1937
1931
|
}
|
|
1938
1932
|
interface HTMLElementEventMap {
|
|
1939
|
-
[gsEventNames.
|
|
1940
|
-
[gsEventNames.
|
|
1933
|
+
[gsEventNames.lineageFilterChanged]: LineageFilterChangedEvent;
|
|
1934
|
+
[gsEventNames.lineageFilterMultiChanged]: LineageMultiFilterChangedEvent;
|
|
1941
1935
|
}
|
|
1942
1936
|
}
|
|
1943
1937
|
|
|
@@ -1945,7 +1939,7 @@ declare global {
|
|
|
1945
1939
|
declare global {
|
|
1946
1940
|
namespace JSX {
|
|
1947
1941
|
interface IntrinsicElements {
|
|
1948
|
-
'gs-
|
|
1942
|
+
'gs-lineage-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1949
1943
|
}
|
|
1950
1944
|
}
|
|
1951
1945
|
}
|
|
@@ -1953,11 +1947,11 @@ declare global {
|
|
|
1953
1947
|
|
|
1954
1948
|
declare global {
|
|
1955
1949
|
interface HTMLElementTagNameMap {
|
|
1956
|
-
'gs-
|
|
1950
|
+
'gs-number-range-filter': NumberRangeFilterComponent;
|
|
1957
1951
|
}
|
|
1958
1952
|
interface HTMLElementEventMap {
|
|
1959
|
-
[gsEventNames.
|
|
1960
|
-
[gsEventNames.
|
|
1953
|
+
[gsEventNames.numberRangeFilterChanged]: NumberRangeFilterChangedEvent;
|
|
1954
|
+
[gsEventNames.numberRangeValueChanged]: NumberRangeValueChangedEvent;
|
|
1961
1955
|
}
|
|
1962
1956
|
}
|
|
1963
1957
|
|
|
@@ -1965,7 +1959,7 @@ declare global {
|
|
|
1965
1959
|
declare global {
|
|
1966
1960
|
namespace JSX {
|
|
1967
1961
|
interface IntrinsicElements {
|
|
1968
|
-
'gs-
|
|
1962
|
+
'gs-number-range-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1969
1963
|
}
|
|
1970
1964
|
}
|
|
1971
1965
|
}
|