@genspectrum/dashboard-components 0.10.4 → 0.11.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 (53) hide show
  1. package/custom-elements.json +58 -58
  2. package/dist/components.d.ts +97 -47
  3. package/dist/components.js +57 -65
  4. package/dist/components.js.map +1 -1
  5. package/dist/{dateRangeOption-Doo6WHKu.js → dateRangeOption-Bh2p78z0.js} +9 -4
  6. package/dist/dateRangeOption-Bh2p78z0.js.map +1 -0
  7. package/dist/util.d.ts +624 -31
  8. package/dist/util.js +1 -1
  9. package/package.json +5 -5
  10. package/src/preact/aggregatedData/aggregate.stories.tsx +1 -1
  11. package/src/preact/aggregatedData/aggregate.tsx +11 -8
  12. package/src/preact/dateRangeSelector/date-range-selector.stories.tsx +3 -11
  13. package/src/preact/dateRangeSelector/date-range-selector.tsx +4 -4
  14. package/src/preact/mutationComparison/mutation-comparison.tsx +4 -6
  15. package/src/preact/mutationFilter/mutation-filter.tsx +4 -13
  16. package/src/preact/mutations/mutations.tsx +4 -4
  17. package/src/preact/mutationsOverTime/mutations-over-time.tsx +4 -4
  18. package/src/preact/numberSequencesOverTime/number-sequences-over-time.stories.tsx +4 -13
  19. package/src/preact/numberSequencesOverTime/number-sequences-over-time.tsx +4 -4
  20. package/src/preact/prevalenceOverTime/prevalence-over-time.stories.tsx +14 -25
  21. package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +8 -8
  22. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.stories.tsx +3 -14
  23. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.tsx +11 -7
  24. package/src/query/queryNumberOfSequencesOverTime.spec.ts +4 -4
  25. package/src/query/queryNumberOfSequencesOverTime.ts +1 -4
  26. package/src/query/queryPrevalenceOverTime.ts +1 -4
  27. package/src/types.ts +11 -4
  28. package/src/utilEntrypoint.ts +16 -4
  29. package/src/utils/utils.ts +0 -29
  30. package/src/web-components/app.ts +1 -1
  31. package/src/web-components/input/gs-date-range-selector.stories.ts +4 -4
  32. package/src/web-components/input/gs-date-range-selector.tsx +5 -5
  33. package/src/web-components/input/gs-lineage-filter.tsx +1 -1
  34. package/src/web-components/input/gs-location-filter.tsx +1 -1
  35. package/src/web-components/input/gs-mutation-filter.tsx +5 -8
  36. package/src/web-components/input/gs-text-input.tsx +1 -1
  37. package/src/web-components/visualization/gs-aggregate.stories.ts +3 -3
  38. package/src/web-components/visualization/gs-aggregate.tsx +10 -6
  39. package/src/web-components/visualization/gs-mutation-comparison.tsx +7 -2
  40. package/src/web-components/visualization/gs-mutations-over-time.tsx +7 -2
  41. package/src/web-components/visualization/gs-mutations.tsx +7 -2
  42. package/src/web-components/visualization/gs-number-sequences-over-time.stories.ts +5 -5
  43. package/src/web-components/visualization/gs-number-sequences-over-time.tsx +13 -15
  44. package/src/web-components/visualization/gs-prevalence-over-time.stories.ts +8 -8
  45. package/src/web-components/visualization/gs-prevalence-over-time.tsx +17 -14
  46. package/src/web-components/visualization/gs-relative-growth-advantage.stories.ts +4 -5
  47. package/src/web-components/visualization/gs-relative-growth-advantage.tsx +17 -15
  48. package/src/web-components/visualization/gs-sequences-by-location.tsx +6 -1
  49. package/src/web-components/visualization/gs-statistics.tsx +12 -3
  50. package/standalone-bundle/dashboard-components.js +2520 -2516
  51. package/standalone-bundle/dashboard-components.js.map +1 -1
  52. package/dist/dateRangeOption-Doo6WHKu.js.map +0 -1
  53. package/src/utils/utils.spec.ts +0 -16
package/dist/util.d.ts CHANGED
@@ -1,5 +1,65 @@
1
1
  import { default as default_2 } from 'zod';
2
2
 
3
+ export declare type AggregateProps = default_2.infer<typeof aggregatePropsSchema>;
4
+
5
+ declare const aggregatePropsSchema: default_2.ZodObject<{
6
+ lapisFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
7
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
8
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
9
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
10
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
11
+ }, "strip", default_2.ZodTypeAny, {
12
+ nucleotideMutations?: string[] | undefined;
13
+ aminoAcidMutations?: string[] | undefined;
14
+ nucleotideInsertions?: string[] | undefined;
15
+ aminoAcidInsertions?: string[] | undefined;
16
+ }, {
17
+ nucleotideMutations?: string[] | undefined;
18
+ aminoAcidMutations?: string[] | undefined;
19
+ nucleotideInsertions?: string[] | undefined;
20
+ aminoAcidInsertions?: string[] | undefined;
21
+ }>>;
22
+ fields: default_2.ZodArray<default_2.ZodString, "many">;
23
+ views: default_2.ZodArray<default_2.ZodLiteral<"table">, "many">;
24
+ initialSortField: default_2.ZodString;
25
+ initialSortDirection: default_2.ZodUnion<[default_2.ZodLiteral<"ascending">, default_2.ZodLiteral<"descending">]>;
26
+ pageSize: default_2.ZodUnion<[default_2.ZodBoolean, default_2.ZodNumber]>;
27
+ width: default_2.ZodString;
28
+ height: default_2.ZodString;
29
+ }, "strip", default_2.ZodTypeAny, {
30
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
31
+ nucleotideMutations?: string[] | undefined;
32
+ aminoAcidMutations?: string[] | undefined;
33
+ nucleotideInsertions?: string[] | undefined;
34
+ aminoAcidInsertions?: string[] | undefined;
35
+ };
36
+ fields: string[];
37
+ height: string;
38
+ width: string;
39
+ pageSize: number | boolean;
40
+ views: "table"[];
41
+ initialSortField: string;
42
+ initialSortDirection: "ascending" | "descending";
43
+ }, {
44
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
45
+ nucleotideMutations?: string[] | undefined;
46
+ aminoAcidMutations?: string[] | undefined;
47
+ nucleotideInsertions?: string[] | undefined;
48
+ aminoAcidInsertions?: string[] | undefined;
49
+ };
50
+ fields: string[];
51
+ height: string;
52
+ width: string;
53
+ pageSize: number | boolean;
54
+ views: "table"[];
55
+ initialSortField: string;
56
+ initialSortDirection: "ascending" | "descending";
57
+ }>;
58
+
59
+ export declare type AggregateView = default_2.infer<typeof aggregateViewSchema>;
60
+
61
+ declare const aggregateViewSchema: default_2.ZodLiteral<"table">;
62
+
3
63
  export declare type AxisMax = default_2.infer<typeof axisMaxSchema>;
4
64
 
5
65
  declare const axisMaxSchema: default_2.ZodUnion<[default_2.ZodLiteral<"maxInData">, default_2.ZodLiteral<"limitTo1">, default_2.ZodNumber]>;
@@ -80,28 +140,105 @@ export declare type DateRangeSelectOption = string | {
80
140
 
81
141
  export declare type LapisFilter = default_2.infer<typeof lapisFilterSchema>;
82
142
 
83
- declare const lapisFilterSchema: default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean]>>;
84
-
85
- export declare type MutationComparisonView = default_2.infer<typeof mutationComparisonViewSchema>;
86
-
87
- declare const mutationComparisonViewSchema: default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"venn">]>;
143
+ declare const lapisFilterSchema: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
144
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
145
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
146
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
147
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
148
+ }, "strip", default_2.ZodTypeAny, {
149
+ nucleotideMutations?: string[] | undefined;
150
+ aminoAcidMutations?: string[] | undefined;
151
+ nucleotideInsertions?: string[] | undefined;
152
+ aminoAcidInsertions?: string[] | undefined;
153
+ }, {
154
+ nucleotideMutations?: string[] | undefined;
155
+ aminoAcidMutations?: string[] | undefined;
156
+ nucleotideInsertions?: string[] | undefined;
157
+ aminoAcidInsertions?: string[] | undefined;
158
+ }>>;
88
159
 
89
- export declare type NamedLapisFilter = default_2.infer<typeof namedLapisFilterSchema>;
160
+ export declare type MutationComparisonProps = default_2.infer<typeof mutationComparisonPropsSchema>;
90
161
 
91
- declare const namedLapisFilterSchema: default_2.ZodObject<{
92
- lapisFilter: default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean]>>;
93
- displayName: default_2.ZodString;
162
+ declare const mutationComparisonPropsSchema: default_2.ZodObject<{
163
+ width: default_2.ZodString;
164
+ height: default_2.ZodString;
165
+ lapisFilters: default_2.ZodArray<default_2.ZodObject<{
166
+ lapisFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
167
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
168
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
169
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
170
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
171
+ }, "strip", default_2.ZodTypeAny, {
172
+ nucleotideMutations?: string[] | undefined;
173
+ aminoAcidMutations?: string[] | undefined;
174
+ nucleotideInsertions?: string[] | undefined;
175
+ aminoAcidInsertions?: string[] | undefined;
176
+ }, {
177
+ nucleotideMutations?: string[] | undefined;
178
+ aminoAcidMutations?: string[] | undefined;
179
+ nucleotideInsertions?: string[] | undefined;
180
+ aminoAcidInsertions?: string[] | undefined;
181
+ }>>;
182
+ displayName: default_2.ZodString;
183
+ }, "strip", default_2.ZodTypeAny, {
184
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
185
+ nucleotideMutations?: string[] | undefined;
186
+ aminoAcidMutations?: string[] | undefined;
187
+ nucleotideInsertions?: string[] | undefined;
188
+ aminoAcidInsertions?: string[] | undefined;
189
+ };
190
+ displayName: string;
191
+ }, {
192
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
193
+ nucleotideMutations?: string[] | undefined;
194
+ aminoAcidMutations?: string[] | undefined;
195
+ nucleotideInsertions?: string[] | undefined;
196
+ aminoAcidInsertions?: string[] | undefined;
197
+ };
198
+ displayName: string;
199
+ }>, "many">;
200
+ sequenceType: default_2.ZodUnion<[default_2.ZodLiteral<"nucleotide">, default_2.ZodLiteral<"amino acid">]>;
201
+ views: default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"venn">]>, "many">;
202
+ pageSize: default_2.ZodUnion<[default_2.ZodBoolean, default_2.ZodNumber]>;
94
203
  }, "strip", default_2.ZodTypeAny, {
95
- lapisFilter: Record<string, string | number | boolean | null>;
96
- displayName: string;
204
+ height: string;
205
+ width: string;
206
+ pageSize: number | boolean;
207
+ lapisFilters: {
208
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
209
+ nucleotideMutations?: string[] | undefined;
210
+ aminoAcidMutations?: string[] | undefined;
211
+ nucleotideInsertions?: string[] | undefined;
212
+ aminoAcidInsertions?: string[] | undefined;
213
+ };
214
+ displayName: string;
215
+ }[];
216
+ sequenceType: "nucleotide" | "amino acid";
217
+ views: ("table" | "venn")[];
97
218
  }, {
98
- lapisFilter: Record<string, string | number | boolean | null>;
99
- displayName: string;
219
+ height: string;
220
+ width: string;
221
+ pageSize: number | boolean;
222
+ lapisFilters: {
223
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
224
+ nucleotideMutations?: string[] | undefined;
225
+ aminoAcidMutations?: string[] | undefined;
226
+ nucleotideInsertions?: string[] | undefined;
227
+ aminoAcidInsertions?: string[] | undefined;
228
+ };
229
+ displayName: string;
230
+ }[];
231
+ sequenceType: "nucleotide" | "amino acid";
232
+ views: ("table" | "venn")[];
100
233
  }>;
101
234
 
102
- export declare type SelectedMutationFilterStrings = default_2.infer<typeof selectedMutationFilterStringsSchema>;
235
+ export declare type MutationComparisonView = default_2.infer<typeof mutationComparisonViewSchema>;
236
+
237
+ declare const mutationComparisonViewSchema: default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"venn">]>;
238
+
239
+ export declare type MutationsFilter = default_2.infer<typeof mutationsFilterSchema>;
103
240
 
104
- declare const selectedMutationFilterStringsSchema: default_2.ZodObject<{
241
+ declare const mutationsFilterSchema: default_2.ZodObject<{
105
242
  nucleotideMutations: default_2.ZodArray<default_2.ZodString, "many">;
106
243
  aminoAcidMutations: default_2.ZodArray<default_2.ZodString, "many">;
107
244
  nucleotideInsertions: default_2.ZodArray<default_2.ZodString, "many">;
@@ -118,10 +255,466 @@ declare const selectedMutationFilterStringsSchema: default_2.ZodObject<{
118
255
  aminoAcidInsertions: string[];
119
256
  }>;
120
257
 
258
+ export declare type MutationsProps = default_2.infer<typeof mutationsPropsSchema>;
259
+
260
+ declare const mutationsPropsSchema: default_2.ZodObject<{
261
+ lapisFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
262
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
263
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
264
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
265
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
266
+ }, "strip", default_2.ZodTypeAny, {
267
+ nucleotideMutations?: string[] | undefined;
268
+ aminoAcidMutations?: string[] | undefined;
269
+ nucleotideInsertions?: string[] | undefined;
270
+ aminoAcidInsertions?: string[] | undefined;
271
+ }, {
272
+ nucleotideMutations?: string[] | undefined;
273
+ aminoAcidMutations?: string[] | undefined;
274
+ nucleotideInsertions?: string[] | undefined;
275
+ aminoAcidInsertions?: string[] | undefined;
276
+ }>>;
277
+ sequenceType: default_2.ZodUnion<[default_2.ZodLiteral<"nucleotide">, default_2.ZodLiteral<"amino acid">]>;
278
+ views: default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"grid">, default_2.ZodLiteral<"insertions">]>, "many">;
279
+ pageSize: default_2.ZodUnion<[default_2.ZodBoolean, default_2.ZodNumber]>;
280
+ width: default_2.ZodString;
281
+ height: default_2.ZodString;
282
+ }, "strip", default_2.ZodTypeAny, {
283
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
284
+ nucleotideMutations?: string[] | undefined;
285
+ aminoAcidMutations?: string[] | undefined;
286
+ nucleotideInsertions?: string[] | undefined;
287
+ aminoAcidInsertions?: string[] | undefined;
288
+ };
289
+ height: string;
290
+ width: string;
291
+ pageSize: number | boolean;
292
+ sequenceType: "nucleotide" | "amino acid";
293
+ views: ("table" | "grid" | "insertions")[];
294
+ }, {
295
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
296
+ nucleotideMutations?: string[] | undefined;
297
+ aminoAcidMutations?: string[] | undefined;
298
+ nucleotideInsertions?: string[] | undefined;
299
+ aminoAcidInsertions?: string[] | undefined;
300
+ };
301
+ height: string;
302
+ width: string;
303
+ pageSize: number | boolean;
304
+ sequenceType: "nucleotide" | "amino acid";
305
+ views: ("table" | "grid" | "insertions")[];
306
+ }>;
307
+
308
+ export declare type MutationsView = default_2.infer<typeof mutationsViewSchema>;
309
+
310
+ declare const mutationsViewSchema: default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"grid">, default_2.ZodLiteral<"insertions">]>;
311
+
312
+ export declare type NamedLapisFilter = default_2.infer<typeof namedLapisFilterSchema>;
313
+
314
+ declare const namedLapisFilterSchema: default_2.ZodObject<{
315
+ lapisFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
316
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
317
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
318
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
319
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
320
+ }, "strip", default_2.ZodTypeAny, {
321
+ nucleotideMutations?: string[] | undefined;
322
+ aminoAcidMutations?: string[] | undefined;
323
+ nucleotideInsertions?: string[] | undefined;
324
+ aminoAcidInsertions?: string[] | undefined;
325
+ }, {
326
+ nucleotideMutations?: string[] | undefined;
327
+ aminoAcidMutations?: string[] | undefined;
328
+ nucleotideInsertions?: string[] | undefined;
329
+ aminoAcidInsertions?: string[] | undefined;
330
+ }>>;
331
+ displayName: default_2.ZodString;
332
+ }, "strip", default_2.ZodTypeAny, {
333
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
334
+ nucleotideMutations?: string[] | undefined;
335
+ aminoAcidMutations?: string[] | undefined;
336
+ nucleotideInsertions?: string[] | undefined;
337
+ aminoAcidInsertions?: string[] | undefined;
338
+ };
339
+ displayName: string;
340
+ }, {
341
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
342
+ nucleotideMutations?: string[] | undefined;
343
+ aminoAcidMutations?: string[] | undefined;
344
+ nucleotideInsertions?: string[] | undefined;
345
+ aminoAcidInsertions?: string[] | undefined;
346
+ };
347
+ displayName: string;
348
+ }>;
349
+
350
+ export declare type NumberSequencesOverTimeProps = default_2.infer<typeof numberSequencesOverTimePropsSchema>;
351
+
352
+ declare const numberSequencesOverTimePropsSchema: default_2.ZodObject<{
353
+ width: default_2.ZodString;
354
+ height: default_2.ZodString;
355
+ lapisFilters: default_2.ZodArray<default_2.ZodObject<{
356
+ lapisFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
357
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
358
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
359
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
360
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
361
+ }, "strip", default_2.ZodTypeAny, {
362
+ nucleotideMutations?: string[] | undefined;
363
+ aminoAcidMutations?: string[] | undefined;
364
+ nucleotideInsertions?: string[] | undefined;
365
+ aminoAcidInsertions?: string[] | undefined;
366
+ }, {
367
+ nucleotideMutations?: string[] | undefined;
368
+ aminoAcidMutations?: string[] | undefined;
369
+ nucleotideInsertions?: string[] | undefined;
370
+ aminoAcidInsertions?: string[] | undefined;
371
+ }>>;
372
+ displayName: default_2.ZodString;
373
+ }, "strip", default_2.ZodTypeAny, {
374
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
375
+ nucleotideMutations?: string[] | undefined;
376
+ aminoAcidMutations?: string[] | undefined;
377
+ nucleotideInsertions?: string[] | undefined;
378
+ aminoAcidInsertions?: string[] | undefined;
379
+ };
380
+ displayName: string;
381
+ }, {
382
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
383
+ nucleotideMutations?: string[] | undefined;
384
+ aminoAcidMutations?: string[] | undefined;
385
+ nucleotideInsertions?: string[] | undefined;
386
+ aminoAcidInsertions?: string[] | undefined;
387
+ };
388
+ displayName: string;
389
+ }>, "many">;
390
+ lapisDateField: default_2.ZodString;
391
+ views: default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<"bar">, default_2.ZodLiteral<"line">, default_2.ZodLiteral<"table">]>, "many">;
392
+ granularity: default_2.ZodUnion<[default_2.ZodLiteral<"day">, default_2.ZodLiteral<"week">, default_2.ZodLiteral<"month">, default_2.ZodLiteral<"year">]>;
393
+ smoothingWindow: default_2.ZodNumber;
394
+ pageSize: default_2.ZodUnion<[default_2.ZodBoolean, default_2.ZodNumber]>;
395
+ }, "strip", default_2.ZodTypeAny, {
396
+ height: string;
397
+ width: string;
398
+ pageSize: number | boolean;
399
+ lapisFilters: {
400
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
401
+ nucleotideMutations?: string[] | undefined;
402
+ aminoAcidMutations?: string[] | undefined;
403
+ nucleotideInsertions?: string[] | undefined;
404
+ aminoAcidInsertions?: string[] | undefined;
405
+ };
406
+ displayName: string;
407
+ }[];
408
+ views: ("table" | "bar" | "line")[];
409
+ granularity: "day" | "week" | "month" | "year";
410
+ smoothingWindow: number;
411
+ lapisDateField: string;
412
+ }, {
413
+ height: string;
414
+ width: string;
415
+ pageSize: number | boolean;
416
+ lapisFilters: {
417
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
418
+ nucleotideMutations?: string[] | undefined;
419
+ aminoAcidMutations?: string[] | undefined;
420
+ nucleotideInsertions?: string[] | undefined;
421
+ aminoAcidInsertions?: string[] | undefined;
422
+ };
423
+ displayName: string;
424
+ }[];
425
+ views: ("table" | "bar" | "line")[];
426
+ granularity: "day" | "week" | "month" | "year";
427
+ smoothingWindow: number;
428
+ lapisDateField: string;
429
+ }>;
430
+
431
+ export declare type NumberSequencesOverTimeView = default_2.infer<typeof numberSequencesOverTimeViewSchema>;
432
+
433
+ declare const numberSequencesOverTimeViewSchema: default_2.ZodUnion<[default_2.ZodLiteral<"bar">, default_2.ZodLiteral<"line">, default_2.ZodLiteral<"table">]>;
434
+
435
+ export declare type PrevalenceOverTimeProps = default_2.infer<typeof prevalenceOverTimePropsSchema>;
436
+
437
+ declare const prevalenceOverTimePropsSchema: default_2.ZodObject<{
438
+ width: default_2.ZodString;
439
+ height: default_2.ZodString;
440
+ numeratorFilters: default_2.ZodArray<default_2.ZodObject<{
441
+ lapisFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
442
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
443
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
444
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
445
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
446
+ }, "strip", default_2.ZodTypeAny, {
447
+ nucleotideMutations?: string[] | undefined;
448
+ aminoAcidMutations?: string[] | undefined;
449
+ nucleotideInsertions?: string[] | undefined;
450
+ aminoAcidInsertions?: string[] | undefined;
451
+ }, {
452
+ nucleotideMutations?: string[] | undefined;
453
+ aminoAcidMutations?: string[] | undefined;
454
+ nucleotideInsertions?: string[] | undefined;
455
+ aminoAcidInsertions?: string[] | undefined;
456
+ }>>;
457
+ displayName: default_2.ZodString;
458
+ }, "strip", default_2.ZodTypeAny, {
459
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
460
+ nucleotideMutations?: string[] | undefined;
461
+ aminoAcidMutations?: string[] | undefined;
462
+ nucleotideInsertions?: string[] | undefined;
463
+ aminoAcidInsertions?: string[] | undefined;
464
+ };
465
+ displayName: string;
466
+ }, {
467
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
468
+ nucleotideMutations?: string[] | undefined;
469
+ aminoAcidMutations?: string[] | undefined;
470
+ nucleotideInsertions?: string[] | undefined;
471
+ aminoAcidInsertions?: string[] | undefined;
472
+ };
473
+ displayName: string;
474
+ }>, "many">;
475
+ denominatorFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
476
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
477
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
478
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
479
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
480
+ }, "strip", default_2.ZodTypeAny, {
481
+ nucleotideMutations?: string[] | undefined;
482
+ aminoAcidMutations?: string[] | undefined;
483
+ nucleotideInsertions?: string[] | undefined;
484
+ aminoAcidInsertions?: string[] | undefined;
485
+ }, {
486
+ nucleotideMutations?: string[] | undefined;
487
+ aminoAcidMutations?: string[] | undefined;
488
+ nucleotideInsertions?: string[] | undefined;
489
+ aminoAcidInsertions?: string[] | undefined;
490
+ }>>;
491
+ granularity: default_2.ZodUnion<[default_2.ZodLiteral<"day">, default_2.ZodLiteral<"week">, default_2.ZodLiteral<"month">, default_2.ZodLiteral<"year">]>;
492
+ smoothingWindow: default_2.ZodNumber;
493
+ views: default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"bar">, default_2.ZodLiteral<"line">, default_2.ZodLiteral<"bubble">]>, "many">;
494
+ confidenceIntervalMethods: default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<"wilson">, default_2.ZodLiteral<"none">]>, "many">;
495
+ lapisDateField: default_2.ZodString;
496
+ pageSize: default_2.ZodUnion<[default_2.ZodBoolean, default_2.ZodNumber]>;
497
+ yAxisMaxLinear: default_2.ZodUnion<[default_2.ZodLiteral<"maxInData">, default_2.ZodLiteral<"limitTo1">, default_2.ZodNumber]>;
498
+ yAxisMaxLogarithmic: default_2.ZodUnion<[default_2.ZodLiteral<"maxInData">, default_2.ZodLiteral<"limitTo1">, default_2.ZodNumber]>;
499
+ }, "strip", default_2.ZodTypeAny, {
500
+ height: string;
501
+ width: string;
502
+ pageSize: number | boolean;
503
+ views: ("table" | "bar" | "line" | "bubble")[];
504
+ granularity: "day" | "week" | "month" | "year";
505
+ confidenceIntervalMethods: ("none" | "wilson")[];
506
+ numeratorFilters: {
507
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
508
+ nucleotideMutations?: string[] | undefined;
509
+ aminoAcidMutations?: string[] | undefined;
510
+ nucleotideInsertions?: string[] | undefined;
511
+ aminoAcidInsertions?: string[] | undefined;
512
+ };
513
+ displayName: string;
514
+ }[];
515
+ denominatorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
516
+ nucleotideMutations?: string[] | undefined;
517
+ aminoAcidMutations?: string[] | undefined;
518
+ nucleotideInsertions?: string[] | undefined;
519
+ aminoAcidInsertions?: string[] | undefined;
520
+ };
521
+ smoothingWindow: number;
522
+ lapisDateField: string;
523
+ yAxisMaxLinear: number | "maxInData" | "limitTo1";
524
+ yAxisMaxLogarithmic: number | "maxInData" | "limitTo1";
525
+ }, {
526
+ height: string;
527
+ width: string;
528
+ pageSize: number | boolean;
529
+ views: ("table" | "bar" | "line" | "bubble")[];
530
+ granularity: "day" | "week" | "month" | "year";
531
+ confidenceIntervalMethods: ("none" | "wilson")[];
532
+ numeratorFilters: {
533
+ lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
534
+ nucleotideMutations?: string[] | undefined;
535
+ aminoAcidMutations?: string[] | undefined;
536
+ nucleotideInsertions?: string[] | undefined;
537
+ aminoAcidInsertions?: string[] | undefined;
538
+ };
539
+ displayName: string;
540
+ }[];
541
+ denominatorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
542
+ nucleotideMutations?: string[] | undefined;
543
+ aminoAcidMutations?: string[] | undefined;
544
+ nucleotideInsertions?: string[] | undefined;
545
+ aminoAcidInsertions?: string[] | undefined;
546
+ };
547
+ smoothingWindow: number;
548
+ lapisDateField: string;
549
+ yAxisMaxLinear: number | "maxInData" | "limitTo1";
550
+ yAxisMaxLogarithmic: number | "maxInData" | "limitTo1";
551
+ }>;
552
+
553
+ export declare type PrevalenceOverTimeView = default_2.infer<typeof prevalenceOverTimeViewSchema>;
554
+
555
+ declare const prevalenceOverTimeViewSchema: default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"bar">, default_2.ZodLiteral<"line">, default_2.ZodLiteral<"bubble">]>;
556
+
557
+ export declare type RelativeGrowthAdvantageProps = default_2.infer<typeof relativeGrowthAdvantagePropsSchema>;
558
+
559
+ declare const relativeGrowthAdvantagePropsSchema: default_2.ZodObject<{
560
+ width: default_2.ZodString;
561
+ height: default_2.ZodString;
562
+ numeratorFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
563
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
564
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
565
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
566
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
567
+ }, "strip", default_2.ZodTypeAny, {
568
+ nucleotideMutations?: string[] | undefined;
569
+ aminoAcidMutations?: string[] | undefined;
570
+ nucleotideInsertions?: string[] | undefined;
571
+ aminoAcidInsertions?: string[] | undefined;
572
+ }, {
573
+ nucleotideMutations?: string[] | undefined;
574
+ aminoAcidMutations?: string[] | undefined;
575
+ nucleotideInsertions?: string[] | undefined;
576
+ aminoAcidInsertions?: string[] | undefined;
577
+ }>>;
578
+ denominatorFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
579
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
580
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
581
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
582
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
583
+ }, "strip", default_2.ZodTypeAny, {
584
+ nucleotideMutations?: string[] | undefined;
585
+ aminoAcidMutations?: string[] | undefined;
586
+ nucleotideInsertions?: string[] | undefined;
587
+ aminoAcidInsertions?: string[] | undefined;
588
+ }, {
589
+ nucleotideMutations?: string[] | undefined;
590
+ aminoAcidMutations?: string[] | undefined;
591
+ nucleotideInsertions?: string[] | undefined;
592
+ aminoAcidInsertions?: string[] | undefined;
593
+ }>>;
594
+ generationTime: default_2.ZodNumber;
595
+ views: default_2.ZodArray<default_2.ZodLiteral<"line">, "many">;
596
+ lapisDateField: default_2.ZodString;
597
+ yAxisMaxLinear: default_2.ZodUnion<[default_2.ZodLiteral<"maxInData">, default_2.ZodLiteral<"limitTo1">, default_2.ZodNumber]>;
598
+ yAxisMaxLogarithmic: default_2.ZodUnion<[default_2.ZodLiteral<"maxInData">, default_2.ZodLiteral<"limitTo1">, default_2.ZodNumber]>;
599
+ }, "strip", default_2.ZodTypeAny, {
600
+ height: string;
601
+ width: string;
602
+ views: "line"[];
603
+ denominatorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
604
+ nucleotideMutations?: string[] | undefined;
605
+ aminoAcidMutations?: string[] | undefined;
606
+ nucleotideInsertions?: string[] | undefined;
607
+ aminoAcidInsertions?: string[] | undefined;
608
+ };
609
+ lapisDateField: string;
610
+ yAxisMaxLinear: number | "maxInData" | "limitTo1";
611
+ yAxisMaxLogarithmic: number | "maxInData" | "limitTo1";
612
+ numeratorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
613
+ nucleotideMutations?: string[] | undefined;
614
+ aminoAcidMutations?: string[] | undefined;
615
+ nucleotideInsertions?: string[] | undefined;
616
+ aminoAcidInsertions?: string[] | undefined;
617
+ };
618
+ generationTime: number;
619
+ }, {
620
+ height: string;
621
+ width: string;
622
+ views: "line"[];
623
+ denominatorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
624
+ nucleotideMutations?: string[] | undefined;
625
+ aminoAcidMutations?: string[] | undefined;
626
+ nucleotideInsertions?: string[] | undefined;
627
+ aminoAcidInsertions?: string[] | undefined;
628
+ };
629
+ lapisDateField: string;
630
+ yAxisMaxLinear: number | "maxInData" | "limitTo1";
631
+ yAxisMaxLogarithmic: number | "maxInData" | "limitTo1";
632
+ numeratorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
633
+ nucleotideMutations?: string[] | undefined;
634
+ aminoAcidMutations?: string[] | undefined;
635
+ nucleotideInsertions?: string[] | undefined;
636
+ aminoAcidInsertions?: string[] | undefined;
637
+ };
638
+ generationTime: number;
639
+ }>;
640
+
641
+ export declare type RelativeGrowthAdvantageView = default_2.infer<typeof relativeGrowthAdvantageViewSchema>;
642
+
643
+ declare const relativeGrowthAdvantageViewSchema: default_2.ZodLiteral<"line">;
644
+
121
645
  export declare type SequenceType = default_2.infer<typeof sequenceTypeSchema>;
122
646
 
123
647
  declare const sequenceTypeSchema: default_2.ZodUnion<[default_2.ZodLiteral<"nucleotide">, default_2.ZodLiteral<"amino acid">]>;
124
648
 
649
+ export declare type StatisticsProps = default_2.infer<typeof statisticsPropsSchema>;
650
+
651
+ declare const statisticsPropsSchema: default_2.ZodObject<{
652
+ width: default_2.ZodString;
653
+ height: default_2.ZodString;
654
+ numeratorFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
655
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
656
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
657
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
658
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
659
+ }, "strip", default_2.ZodTypeAny, {
660
+ nucleotideMutations?: string[] | undefined;
661
+ aminoAcidMutations?: string[] | undefined;
662
+ nucleotideInsertions?: string[] | undefined;
663
+ aminoAcidInsertions?: string[] | undefined;
664
+ }, {
665
+ nucleotideMutations?: string[] | undefined;
666
+ aminoAcidMutations?: string[] | undefined;
667
+ nucleotideInsertions?: string[] | undefined;
668
+ aminoAcidInsertions?: string[] | undefined;
669
+ }>>;
670
+ denominatorFilter: default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
671
+ nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
672
+ aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
673
+ nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
674
+ aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
675
+ }, "strip", default_2.ZodTypeAny, {
676
+ nucleotideMutations?: string[] | undefined;
677
+ aminoAcidMutations?: string[] | undefined;
678
+ nucleotideInsertions?: string[] | undefined;
679
+ aminoAcidInsertions?: string[] | undefined;
680
+ }, {
681
+ nucleotideMutations?: string[] | undefined;
682
+ aminoAcidMutations?: string[] | undefined;
683
+ nucleotideInsertions?: string[] | undefined;
684
+ aminoAcidInsertions?: string[] | undefined;
685
+ }>>;
686
+ }, "strip", default_2.ZodTypeAny, {
687
+ height: string;
688
+ width: string;
689
+ denominatorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
690
+ nucleotideMutations?: string[] | undefined;
691
+ aminoAcidMutations?: string[] | undefined;
692
+ nucleotideInsertions?: string[] | undefined;
693
+ aminoAcidInsertions?: string[] | undefined;
694
+ };
695
+ numeratorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
696
+ nucleotideMutations?: string[] | undefined;
697
+ aminoAcidMutations?: string[] | undefined;
698
+ nucleotideInsertions?: string[] | undefined;
699
+ aminoAcidInsertions?: string[] | undefined;
700
+ };
701
+ }, {
702
+ height: string;
703
+ width: string;
704
+ denominatorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
705
+ nucleotideMutations?: string[] | undefined;
706
+ aminoAcidMutations?: string[] | undefined;
707
+ nucleotideInsertions?: string[] | undefined;
708
+ aminoAcidInsertions?: string[] | undefined;
709
+ };
710
+ numeratorFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
711
+ nucleotideMutations?: string[] | undefined;
712
+ aminoAcidMutations?: string[] | undefined;
713
+ nucleotideInsertions?: string[] | undefined;
714
+ aminoAcidInsertions?: string[] | undefined;
715
+ };
716
+ }>;
717
+
125
718
  export declare type TemporalGranularity = default_2.infer<typeof temporalGranularitySchema>;
126
719
 
127
720
  declare const temporalGranularitySchema: default_2.ZodUnion<[default_2.ZodLiteral<"day">, default_2.ZodLiteral<"week">, default_2.ZodLiteral<"month">, default_2.ZodLiteral<"year">]>;
@@ -242,7 +835,7 @@ declare global {
242
835
 
243
836
  declare global {
244
837
  interface HTMLElementTagNameMap {
245
- 'gs-aggregate': AggregateComponent;
838
+ 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
246
839
  }
247
840
  }
248
841
 
@@ -250,7 +843,7 @@ declare global {
250
843
  declare global {
251
844
  namespace JSX {
252
845
  interface IntrinsicElements {
253
- 'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
846
+ 'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
254
847
  }
255
848
  }
256
849
  }
@@ -258,7 +851,7 @@ declare global {
258
851
 
259
852
  declare global {
260
853
  interface HTMLElementTagNameMap {
261
- 'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
854
+ 'gs-aggregate': AggregateComponent;
262
855
  }
263
856
  }
264
857
 
@@ -266,7 +859,7 @@ declare global {
266
859
  declare global {
267
860
  namespace JSX {
268
861
  interface IntrinsicElements {
269
- 'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
862
+ 'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
270
863
  }
271
864
  }
272
865
  }
@@ -274,7 +867,7 @@ declare global {
274
867
 
275
868
  declare global {
276
869
  interface HTMLElementTagNameMap {
277
- 'gs-sequences-by-location': SequencesByLocationComponent;
870
+ 'gs-mutations-over-time': MutationsOverTimeComponent;
278
871
  }
279
872
  }
280
873
 
@@ -282,7 +875,7 @@ declare global {
282
875
  declare global {
283
876
  namespace JSX {
284
877
  interface IntrinsicElements {
285
- 'gs-sequences-by-location': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
878
+ 'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
286
879
  }
287
880
  }
288
881
  }
@@ -290,7 +883,7 @@ declare global {
290
883
 
291
884
  declare global {
292
885
  interface HTMLElementTagNameMap {
293
- 'gs-mutations-over-time': MutationsOverTimeComponent;
886
+ 'gs-sequences-by-location': SequencesByLocationComponent;
294
887
  }
295
888
  }
296
889
 
@@ -298,7 +891,7 @@ declare global {
298
891
  declare global {
299
892
  namespace JSX {
300
893
  interface IntrinsicElements {
301
- 'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
894
+ 'gs-sequences-by-location': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
302
895
  }
303
896
  }
304
897
  }
@@ -322,10 +915,11 @@ declare global {
322
915
 
323
916
  declare global {
324
917
  interface HTMLElementTagNameMap {
325
- 'gs-location-filter': LocationFilterComponent;
918
+ 'gs-date-range-selector': DateRangeSelectorComponent;
326
919
  }
327
920
  interface HTMLElementEventMap {
328
- 'gs-location-changed': CustomEvent<Record<string, string>>;
921
+ 'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
922
+ 'gs-date-range-option-changed': DateRangeOptionChangedEvent;
329
923
  }
330
924
  }
331
925
 
@@ -333,7 +927,7 @@ declare global {
333
927
  declare global {
334
928
  namespace JSX {
335
929
  interface IntrinsicElements {
336
- 'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
930
+ 'gs-date-range-selector': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
337
931
  }
338
932
  }
339
933
  }
@@ -341,11 +935,10 @@ declare global {
341
935
 
342
936
  declare global {
343
937
  interface HTMLElementTagNameMap {
344
- 'gs-date-range-selector': DateRangeSelectorComponent;
938
+ 'gs-location-filter': LocationFilterComponent;
345
939
  }
346
940
  interface HTMLElementEventMap {
347
- 'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
348
- 'gs-date-range-option-changed': DateRangeOptionChangedEvent;
941
+ 'gs-location-changed': CustomEvent<Record<string, string>>;
349
942
  }
350
943
  }
351
944
 
@@ -353,7 +946,7 @@ declare global {
353
946
  declare global {
354
947
  namespace JSX {
355
948
  interface IntrinsicElements {
356
- 'gs-date-range-selector': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
949
+ 'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
357
950
  }
358
951
  }
359
952
  }
@@ -383,7 +976,7 @@ declare global {
383
976
  'gs-mutation-filter': MutationFilterComponent;
384
977
  }
385
978
  interface HTMLElementEventMap {
386
- 'gs-mutation-filter-changed': CustomEvent<SelectedMutationFilterStrings>;
979
+ 'gs-mutation-filter-changed': CustomEvent<MutationsFilter>;
387
980
  }
388
981
  }
389
982