@genspectrum/dashboard-components 0.16.3 → 0.17.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/custom-elements.json +86 -61
- package/dist/{LineageFilterChangedEvent-COWV-Y0k.js → LineageFilterChangedEvent-DkvWdq_G.js} +2 -2
- package/dist/LineageFilterChangedEvent-DkvWdq_G.js.map +1 -0
- package/dist/assets/{mutationOverTimeWorker-DJcZmEH9.js.map → mutationOverTimeWorker-CPfQDLe6.js.map} +1 -1
- package/dist/components.d.ts +64 -51
- package/dist/components.js +1134 -937
- package/dist/components.js.map +1 -1
- package/dist/style.css +81 -9
- package/dist/util.d.ts +76 -34
- package/dist/util.js +1 -1
- package/package.json +2 -1
- package/src/preact/components/annotated-mutation.stories.tsx +2 -1
- package/src/preact/components/annotated-mutation.tsx +6 -2
- package/src/preact/components/clearable-select.stories.tsx +75 -0
- package/src/preact/components/clearable-select.tsx +76 -0
- package/src/preact/components/downshift-combobox.tsx +9 -7
- package/src/preact/dateRangeFilter/computeInitialValues.spec.ts +31 -33
- package/src/preact/dateRangeFilter/computeInitialValues.ts +2 -15
- package/src/preact/dateRangeFilter/date-picker.tsx +66 -0
- package/src/preact/dateRangeFilter/date-range-filter.stories.tsx +69 -31
- package/src/preact/dateRangeFilter/date-range-filter.tsx +136 -139
- package/src/preact/dateRangeFilter/dateRangeOption.ts +11 -11
- package/src/preact/mutationComparison/mutation-comparison-table.tsx +14 -1
- package/src/preact/mutationComparison/mutation-comparison-venn.tsx +39 -8
- package/src/preact/mutationComparison/mutation-comparison.stories.tsx +36 -12
- package/src/preact/mutationComparison/mutation-comparison.tsx +2 -0
- package/src/preact/mutations/mutations.stories.tsx +3 -9
- package/src/preact/mutationsOverTime/mutations-over-time.stories.tsx +3 -8
- package/src/preact/shared/WithClassName/WithClassName.ts +1 -0
- package/src/preact/shared/icons/DeleteIcon.tsx +3 -0
- package/src/preact/shared/stories/expectMutationAnnotation.ts +13 -0
- package/src/preact/shared/stories/expectOptionSelected.tsx +7 -0
- package/src/utilEntrypoint.ts +3 -1
- package/src/web-components/MutationAnnotations.mdx +33 -0
- package/src/web-components/ResizeContainer.mdx +1 -1
- package/src/web-components/errorHandling.mdx +1 -1
- package/src/web-components/gs-app.ts +2 -2
- package/src/web-components/input/gs-date-range-filter.stories.ts +38 -32
- package/src/web-components/input/gs-date-range-filter.tsx +8 -2
- package/src/web-components/input/gs-lineage-filter.tsx +1 -1
- package/src/web-components/input/gs-location-filter.tsx +1 -1
- package/src/web-components/input/gs-mutation-filter.tsx +1 -1
- package/src/web-components/input/gs-text-filter.tsx +1 -1
- package/src/web-components/visualization/gs-aggregate.tsx +2 -2
- package/src/web-components/visualization/gs-mutation-comparison.stories.ts +18 -1
- package/src/web-components/visualization/gs-mutation-comparison.tsx +24 -10
- package/src/web-components/visualization/gs-mutations-over-time.stories.ts +2 -1
- package/src/web-components/visualization/gs-mutations-over-time.tsx +5 -2
- package/src/web-components/visualization/gs-mutations.stories.ts +2 -1
- package/src/web-components/visualization/gs-mutations.tsx +5 -2
- package/src/web-components/visualization/gs-number-sequences-over-time.tsx +2 -2
- package/src/web-components/visualization/gs-prevalence-over-time.tsx +2 -2
- package/src/web-components/visualization/gs-relative-growth-advantage.tsx +2 -2
- package/src/web-components/visualization/gs-sequences-by-location.tsx +2 -2
- package/src/web-components/visualization/gs-statistics.tsx +2 -2
- package/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx +2 -2
- package/standalone-bundle/assets/mutationOverTimeWorker-CERZSdcA.js.map +1 -1
- package/standalone-bundle/dashboard-components.js +13293 -12635
- package/standalone-bundle/dashboard-components.js.map +1 -1
- package/standalone-bundle/style.css +1 -1
- package/dist/LineageFilterChangedEvent-COWV-Y0k.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"readme": "",
|
|
4
4
|
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "src/web-components/MutationAnnotations.mdx",
|
|
8
|
+
"declarations": [],
|
|
9
|
+
"exports": []
|
|
10
|
+
},
|
|
5
11
|
{
|
|
6
12
|
"kind": "javascript-module",
|
|
7
13
|
"path": "src/web-components/PreactLitAdapter.tsx",
|
|
@@ -231,7 +237,7 @@
|
|
|
231
237
|
"text": "{\n name: string;\n description: string;\n symbol: string;\n nucleotideMutations: string[];\n aminoAcidMutations: string[];\n }[]"
|
|
232
238
|
},
|
|
233
239
|
"default": "[]",
|
|
234
|
-
"description": "Supply lists of mutations that are especially relevant for the current organism.\
|
|
240
|
+
"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.",
|
|
235
241
|
"attribute": "mutationAnnotations"
|
|
236
242
|
}
|
|
237
243
|
],
|
|
@@ -251,7 +257,7 @@
|
|
|
251
257
|
"text": "{\n name: string;\n description: string;\n symbol: string;\n nucleotideMutations: string[];\n aminoAcidMutations: string[];\n }[]"
|
|
252
258
|
},
|
|
253
259
|
"default": "[]",
|
|
254
|
-
"description": "Supply lists of mutations that are especially relevant for the current organism.\
|
|
260
|
+
"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.",
|
|
255
261
|
"fieldName": "mutationAnnotations"
|
|
256
262
|
}
|
|
257
263
|
],
|
|
@@ -331,7 +337,7 @@
|
|
|
331
337
|
"type": {
|
|
332
338
|
"text": "Meta<Required<DateRangeFilterProps>>"
|
|
333
339
|
},
|
|
334
|
-
"default": "{ title: 'Input/DateRangeFilter', component: 'gs-date-range-filter', parameters: withComponentDocs({ actions: { handles: ['gs-date-range-filter-changed', 'gs-date-range-option-changed', ...previewHandles], }, fetchMock: {}, componentDocs: { opensShadowDom: true, expectsChildren: false, codeExample, }, }), argTypes: { value: { control: { type: 'object'
|
|
340
|
+
"default": "{ title: 'Input/DateRangeFilter', component: 'gs-date-range-filter', parameters: withComponentDocs({ actions: { handles: ['gs-date-range-filter-changed', 'gs-date-range-option-changed', ...previewHandles], }, fetchMock: {}, componentDocs: { opensShadowDom: true, expectsChildren: false, codeExample, }, }), argTypes: { value: { control: { type: 'object' }, }, lapisDateField: { control: { type: 'text' } }, dateRangeOptions: { control: { type: 'object' }, }, earliestDate: { control: { type: 'text' }, }, width: { control: { type: 'text' }, }, placeholder: { control: { type: 'text' }, }, }, args: { dateRangeOptions: [ dateRangeOptionPresets.lastMonth, dateRangeOptionPresets.last3Months, dateRangeOptionPresets.allTimes, { label: '2021', dateFrom: '2021-01-01', dateTo: '2021-12-31' }, customDateRange, ], earliestDate: '1970-01-01', value: dateRangeOptionPresets.lastMonth.label, lapisDateField: 'aDateColumn', width: '100%', placeholder: 'Date range', }, tags: ['autodocs'], }"
|
|
335
341
|
},
|
|
336
342
|
{
|
|
337
343
|
"kind": "variable",
|
|
@@ -339,7 +345,7 @@
|
|
|
339
345
|
"type": {
|
|
340
346
|
"text": "StoryObj<Required<DateRangeFilterProps>>"
|
|
341
347
|
},
|
|
342
|
-
"default": "{ render: (args) => html` <gs-app lapis=\"${LAPIS_URL}\"> <div class=\"max-w-screen-lg\"> <gs-date-range-filter .dateRangeOptions=${args.dateRangeOptions} .earliestDate=${args.earliestDate} .value=${args.value} .width=${args.width} .lapisDateField=${args.lapisDateField} ></gs-date-range-filter> </div> </gs-app>`, }"
|
|
348
|
+
"default": "{ render: (args) => html` <gs-app lapis=\"${LAPIS_URL}\"> <div class=\"max-w-screen-lg\"> <gs-date-range-filter .dateRangeOptions=${args.dateRangeOptions} .earliestDate=${args.earliestDate} .value=${args.value} .width=${args.width} .lapisDateField=${args.lapisDateField} .placeholder=${args.placeholder} ></gs-date-range-filter> </div> </gs-app>`, }"
|
|
343
349
|
},
|
|
344
350
|
{
|
|
345
351
|
"kind": "variable",
|
|
@@ -347,7 +353,7 @@
|
|
|
347
353
|
"type": {
|
|
348
354
|
"text": "StoryObj<Required<DateRangeFilterProps>>"
|
|
349
355
|
},
|
|
350
|
-
"default": "{ render: (args) => html` <gs-app lapis=\"${LAPIS_URL}\"> <div class=\"max-w-screen-lg\"> <gs-date-range-filter .dateRangeOptions=${args.dateRangeOptions} earliestDate=\"${args.earliestDate}\" value=\"${args.value}\" width=\"${args.width}\" lapisDateField=\"${args.lapisDateField}\" ></gs-date-range-filter> </div> </gs-app>`, play: async ({ canvasElement }) => { const canvas = await withinShadowRoot(canvasElement, 'gs-date-range-filter');
|
|
356
|
+
"default": "{ render: (args) => html` <gs-app lapis=\"${LAPIS_URL}\"> <div class=\"max-w-screen-lg\"> <gs-date-range-filter .dateRangeOptions=${args.dateRangeOptions} earliestDate=\"${args.earliestDate}\" value=\"${args.value}\" width=\"${args.width}\" lapisDateField=\"${args.lapisDateField}\" placeholder=\"${args.placeholder}\" ></gs-date-range-filter> </div> </gs-app>`, play: async ({ canvasElement }) => { await waitFor(async () => { const canvas = await withinShadowRoot(canvasElement, 'gs-date-range-filter'); const placeholderOption = canvas.getByRole('combobox').querySelector('option:checked'); await expect(placeholderOption).toHaveTextContent('Last month'); }); }, argTypes: { value: { control: { type: 'text', }, }, }, }"
|
|
351
357
|
},
|
|
352
358
|
{
|
|
353
359
|
"kind": "variable",
|
|
@@ -363,7 +369,7 @@
|
|
|
363
369
|
"type": {
|
|
364
370
|
"text": "StoryObj<Required<DateRangeFilterProps>>"
|
|
365
371
|
},
|
|
366
|
-
"default": "{ ...Default, play: async ({ canvasElement, step }) => { const canvas = await withinShadowRoot(canvasElement, 'gs-date-range-filter'); const filterChangedListenerMock = fn(); const optionChangedListenerMock = fn(); await step('Setup event listener mock', () => { canvasElement.addEventListener('gs-date-range-filter-changed', filterChangedListenerMock); canvasElement.addEventListener('gs-date-range-option-changed', optionChangedListenerMock); }); await step('Expect last 6 months to be selected', async () => { await
|
|
372
|
+
"default": "{ ...Default, play: async ({ canvasElement, step }) => { const canvas = await withinShadowRoot(canvasElement, 'gs-date-range-filter'); const filterChangedListenerMock = fn(); const optionChangedListenerMock = fn(); await step('Setup event listener mock', () => { canvasElement.addEventListener('gs-date-range-filter-changed', filterChangedListenerMock); canvasElement.addEventListener('gs-date-range-option-changed', optionChangedListenerMock); }); await step('Expect last 6 months to be selected', async () => { await waitFor(async () => { const placeholderOption = canvas.getByRole('combobox').querySelector('option:checked'); await expect(placeholderOption).toHaveTextContent('Last month'); }); await waitFor(async () => { await expect(dateToPicker(canvas)).toHaveValue(toYYYYMMDD(new Date())); }); }); await step('Expect event to be fired when selecting a different value', async () => { await userEvent.selectOptions(selectField(canvas), 'CustomDateRange'); await userEvent.click(canvas.getByText('CustomDateRange')); await waitFor(async () => { await expect(dateToPicker(canvas)).toHaveValue(customDateRange.dateTo); await expect(filterChangedListenerMock).toHaveBeenCalledWith( expect.objectContaining({ detail: { aDateColumnFrom: customDateRange.dateFrom, aDateColumnTo: customDateRange.dateTo, }, }), ); await expect(optionChangedListenerMock).toHaveBeenCalledWith( expect.objectContaining({ detail: customDateRange.label, }), ); }); }); }, }"
|
|
367
373
|
}
|
|
368
374
|
],
|
|
369
375
|
"exports": [
|
|
@@ -445,7 +451,7 @@
|
|
|
445
451
|
"text": "string | { dateFrom?: string; dateTo?: string } | undefined"
|
|
446
452
|
},
|
|
447
453
|
"default": "undefined",
|
|
448
|
-
"description": "The value to use for this date range selector.\n- If it is a string, then it must be a valid label from the `dateRangeOptions`.\n- If it is an object, then it accepts dates in the format `YYYY-MM-DD` for the keys `dateFrom` and `dateTo`.\n Keys that are not set will default to the `earliestDate` or the current date respectively.\n
|
|
454
|
+
"description": "The value to use for this date range selector.\n- If it is a string, then it must be a valid label from the `dateRangeOptions`.\n- If it is an object, then it accepts dates in the format `YYYY-MM-DD` for the keys `dateFrom` and `dateTo`.\n Keys that are not set will default to the `earliestDate` or the current date respectively.\n\nThe `detail` of the `gs-date-range-option-changed` event can be used for this attribute,\nif you want to control this component in your JS application.",
|
|
449
455
|
"attribute": "value"
|
|
450
456
|
},
|
|
451
457
|
{
|
|
@@ -455,9 +461,19 @@
|
|
|
455
461
|
"text": "string"
|
|
456
462
|
},
|
|
457
463
|
"default": "'100%'",
|
|
458
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
464
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
459
465
|
"attribute": "width"
|
|
460
466
|
},
|
|
467
|
+
{
|
|
468
|
+
"kind": "field",
|
|
469
|
+
"name": "placeholder",
|
|
470
|
+
"type": {
|
|
471
|
+
"text": "string | undefined"
|
|
472
|
+
},
|
|
473
|
+
"default": "undefined",
|
|
474
|
+
"description": "The placeholder to display on the select dropdown.",
|
|
475
|
+
"attribute": "placeholder"
|
|
476
|
+
},
|
|
461
477
|
{
|
|
462
478
|
"kind": "field",
|
|
463
479
|
"name": "lapisDateField",
|
|
@@ -510,7 +526,7 @@
|
|
|
510
526
|
"text": "string | { dateFrom?: string; dateTo?: string } | undefined"
|
|
511
527
|
},
|
|
512
528
|
"default": "undefined",
|
|
513
|
-
"description": "The value to use for this date range selector.\n- If it is a string, then it must be a valid label from the `dateRangeOptions`.\n- If it is an object, then it accepts dates in the format `YYYY-MM-DD` for the keys `dateFrom` and `dateTo`.\n Keys that are not set will default to the `earliestDate` or the current date respectively.\n
|
|
529
|
+
"description": "The value to use for this date range selector.\n- If it is a string, then it must be a valid label from the `dateRangeOptions`.\n- If it is an object, then it accepts dates in the format `YYYY-MM-DD` for the keys `dateFrom` and `dateTo`.\n Keys that are not set will default to the `earliestDate` or the current date respectively.\n\nThe `detail` of the `gs-date-range-option-changed` event can be used for this attribute,\nif you want to control this component in your JS application.",
|
|
514
530
|
"fieldName": "value"
|
|
515
531
|
},
|
|
516
532
|
{
|
|
@@ -519,9 +535,18 @@
|
|
|
519
535
|
"text": "string"
|
|
520
536
|
},
|
|
521
537
|
"default": "'100%'",
|
|
522
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
538
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
523
539
|
"fieldName": "width"
|
|
524
540
|
},
|
|
541
|
+
{
|
|
542
|
+
"name": "placeholder",
|
|
543
|
+
"type": {
|
|
544
|
+
"text": "string | undefined"
|
|
545
|
+
},
|
|
546
|
+
"default": "undefined",
|
|
547
|
+
"description": "The placeholder to display on the select dropdown.",
|
|
548
|
+
"fieldName": "placeholder"
|
|
549
|
+
},
|
|
525
550
|
{
|
|
526
551
|
"name": "lapisDateField",
|
|
527
552
|
"type": {
|
|
@@ -703,7 +728,7 @@
|
|
|
703
728
|
"text": "string"
|
|
704
729
|
},
|
|
705
730
|
"default": "'100%'",
|
|
706
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
731
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
707
732
|
"attribute": "width"
|
|
708
733
|
}
|
|
709
734
|
],
|
|
@@ -759,7 +784,7 @@
|
|
|
759
784
|
"text": "string"
|
|
760
785
|
},
|
|
761
786
|
"default": "'100%'",
|
|
762
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
787
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
763
788
|
"fieldName": "width"
|
|
764
789
|
}
|
|
765
790
|
],
|
|
@@ -924,7 +949,7 @@
|
|
|
924
949
|
"text": "string"
|
|
925
950
|
},
|
|
926
951
|
"default": "'100%'",
|
|
927
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
952
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
928
953
|
"attribute": "width"
|
|
929
954
|
},
|
|
930
955
|
{
|
|
@@ -981,7 +1006,7 @@
|
|
|
981
1006
|
"text": "string"
|
|
982
1007
|
},
|
|
983
1008
|
"default": "'100%'",
|
|
984
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1009
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
985
1010
|
"fieldName": "width"
|
|
986
1011
|
},
|
|
987
1012
|
{
|
|
@@ -1119,7 +1144,7 @@
|
|
|
1119
1144
|
"text": "string"
|
|
1120
1145
|
},
|
|
1121
1146
|
"default": "'100%'",
|
|
1122
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1147
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1123
1148
|
"attribute": "width"
|
|
1124
1149
|
}
|
|
1125
1150
|
],
|
|
@@ -1148,7 +1173,7 @@
|
|
|
1148
1173
|
"text": "string"
|
|
1149
1174
|
},
|
|
1150
1175
|
"default": "'100%'",
|
|
1151
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1176
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1152
1177
|
"fieldName": "width"
|
|
1153
1178
|
}
|
|
1154
1179
|
],
|
|
@@ -1291,7 +1316,7 @@
|
|
|
1291
1316
|
"text": "string"
|
|
1292
1317
|
},
|
|
1293
1318
|
"default": "'100%'",
|
|
1294
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1319
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1295
1320
|
"attribute": "width"
|
|
1296
1321
|
}
|
|
1297
1322
|
],
|
|
@@ -1347,7 +1372,7 @@
|
|
|
1347
1372
|
"text": "string"
|
|
1348
1373
|
},
|
|
1349
1374
|
"default": "'100%'",
|
|
1350
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1375
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1351
1376
|
"fieldName": "width"
|
|
1352
1377
|
}
|
|
1353
1378
|
],
|
|
@@ -1649,7 +1674,7 @@
|
|
|
1649
1674
|
"text": "string"
|
|
1650
1675
|
},
|
|
1651
1676
|
"default": "'100%'",
|
|
1652
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1677
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1653
1678
|
"attribute": "width"
|
|
1654
1679
|
},
|
|
1655
1680
|
{
|
|
@@ -1659,7 +1684,7 @@
|
|
|
1659
1684
|
"text": "string | undefined"
|
|
1660
1685
|
},
|
|
1661
1686
|
"default": "undefined",
|
|
1662
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1687
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1663
1688
|
"attribute": "height"
|
|
1664
1689
|
},
|
|
1665
1690
|
{
|
|
@@ -1737,7 +1762,7 @@
|
|
|
1737
1762
|
"text": "string"
|
|
1738
1763
|
},
|
|
1739
1764
|
"default": "'100%'",
|
|
1740
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1765
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1741
1766
|
"fieldName": "width"
|
|
1742
1767
|
},
|
|
1743
1768
|
{
|
|
@@ -1746,7 +1771,7 @@
|
|
|
1746
1771
|
"text": "string | undefined"
|
|
1747
1772
|
},
|
|
1748
1773
|
"default": "undefined",
|
|
1749
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1774
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1750
1775
|
"fieldName": "height"
|
|
1751
1776
|
},
|
|
1752
1777
|
{
|
|
@@ -1891,7 +1916,7 @@
|
|
|
1891
1916
|
"declarations": [
|
|
1892
1917
|
{
|
|
1893
1918
|
"kind": "class",
|
|
1894
|
-
"description": "## Context\n\nThis component allows to compare mutations between two different datasets.\nThe datasets are selected by LAPIS filters.\n\nIt only shows substitutions and deletions, it does not show insertions.\n\n## Views\n\n### Table View\n\nThe table view shows mutations and the proportions with which the mutation occurs in the respective data subsets.\nIt only shows mutations that are present in at least one of the data subsets\nand where the proportion is within the selected proportion interval for at least one data subset.\n\n### Venn View\n\nThe Venn view shows the overlap of mutations between the datasets in a Venn diagram.\nA dataset is considered to have a certain mutation, if the proportion of the mutation in the dataset is within the\nselected proportion interval.\nThus, changing the proportion interval may change a mutations from being \"common\" between the datasets\nto being \"for one dataset only\".",
|
|
1919
|
+
"description": "## Context\n\nThis component allows to compare mutations between two different datasets.\nThe datasets are selected by LAPIS filters.\n\nIt only shows substitutions and deletions, it does not show insertions.\n\nThis component supports mutations annotations.\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.\n\n## Views\n\n### Table View\n\nThe table view shows mutations and the proportions with which the mutation occurs in the respective data subsets.\nIt only shows mutations that are present in at least one of the data subsets\nand where the proportion is within the selected proportion interval for at least one data subset.\n\n### Venn View\n\nThe Venn view shows the overlap of mutations between the datasets in a Venn diagram.\nA dataset is considered to have a certain mutation, if the proportion of the mutation in the dataset is within the\nselected proportion interval.\nThus, changing the proportion interval may change a mutations from being \"common\" between the datasets\nto being \"for one dataset only\".",
|
|
1895
1920
|
"name": "MutationComparisonComponent",
|
|
1896
1921
|
"members": [
|
|
1897
1922
|
{
|
|
@@ -1931,7 +1956,7 @@
|
|
|
1931
1956
|
"text": "string"
|
|
1932
1957
|
},
|
|
1933
1958
|
"default": "'100%'",
|
|
1934
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1959
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1935
1960
|
"attribute": "width"
|
|
1936
1961
|
},
|
|
1937
1962
|
{
|
|
@@ -1941,7 +1966,7 @@
|
|
|
1941
1966
|
"text": "string | undefined"
|
|
1942
1967
|
},
|
|
1943
1968
|
"default": "undefined",
|
|
1944
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
1969
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1945
1970
|
"attribute": "height"
|
|
1946
1971
|
},
|
|
1947
1972
|
{
|
|
@@ -1989,7 +2014,7 @@
|
|
|
1989
2014
|
"text": "string"
|
|
1990
2015
|
},
|
|
1991
2016
|
"default": "'100%'",
|
|
1992
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2017
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
1993
2018
|
"fieldName": "width"
|
|
1994
2019
|
},
|
|
1995
2020
|
{
|
|
@@ -1998,7 +2023,7 @@
|
|
|
1998
2023
|
"text": "string | undefined"
|
|
1999
2024
|
},
|
|
2000
2025
|
"default": "undefined",
|
|
2001
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2026
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2002
2027
|
"fieldName": "height"
|
|
2003
2028
|
},
|
|
2004
2029
|
{
|
|
@@ -2164,7 +2189,7 @@
|
|
|
2164
2189
|
"declarations": [
|
|
2165
2190
|
{
|
|
2166
2191
|
"kind": "class",
|
|
2167
|
-
"description": "## Context\n\nThis component displays mutations (substitutions and deletions) over time for a dataset selected by a LAPIS filter.\nThe shown date range is determined by the date field in the LAPIS filter.\nIf the date field is not set, the date range is determined by all available dates in the dataset.\n\n## Views\n\n### Grid View\n\nThe grid view shows the proportion for each mutation over date ranges.\n\nThe grid limits the number of rows and columns for browser performance reasons as\ntoo much data might make the browser unresponsive.\n\nThe number of columns is limited to 200.\nIf this number are exceeded, an error message will be shown.\nIt is your responsibility to make sure that this does not happen.\nDepending on the selected date range in the `lapisFilter`, you can adapt the granularity accordingly\n(e.g. use months instead of days).\n\nThe number of rows is limited to 100.\nIf there are more, the component will only show 100 mutations and notify the user.\n\nUsers can filter the displayed rows by mean proportion via a slider in the toolbar.\nThe mean proportion of each row is calculated by LAPIS over the whole data range that the component displays.\nThe initial mean proportion can be set via `initialMeanProportionInterval`.",
|
|
2192
|
+
"description": "## Context\n\nThis component displays mutations (substitutions and deletions) over time for a dataset selected by a LAPIS filter.\nThe shown date range is determined by the date field in the LAPIS filter.\nIf the date field is not set, the date range is determined by all available dates in the dataset.\n\nThis component supports mutations annotations.\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.\n\n## Views\n\n### Grid View\n\nThe grid view shows the proportion for each mutation over date ranges.\n\nThe grid limits the number of rows and columns for browser performance reasons as\ntoo much data might make the browser unresponsive.\n\nThe number of columns is limited to 200.\nIf this number are exceeded, an error message will be shown.\nIt is your responsibility to make sure that this does not happen.\nDepending on the selected date range in the `lapisFilter`, you can adapt the granularity accordingly\n(e.g. use months instead of days).\n\nThe number of rows is limited to 100.\nIf there are more, the component will only show 100 mutations and notify the user.\n\nUsers can filter the displayed rows by mean proportion via a slider in the toolbar.\nThe mean proportion of each row is calculated by LAPIS over the whole data range that the component displays.\nThe initial mean proportion can be set via `initialMeanProportionInterval`.",
|
|
2168
2193
|
"name": "MutationsOverTimeComponent",
|
|
2169
2194
|
"members": [
|
|
2170
2195
|
{
|
|
@@ -2204,7 +2229,7 @@
|
|
|
2204
2229
|
"text": "string"
|
|
2205
2230
|
},
|
|
2206
2231
|
"default": "'100%'",
|
|
2207
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2232
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2208
2233
|
"attribute": "width"
|
|
2209
2234
|
},
|
|
2210
2235
|
{
|
|
@@ -2214,7 +2239,7 @@
|
|
|
2214
2239
|
"text": "string | undefined"
|
|
2215
2240
|
},
|
|
2216
2241
|
"default": "undefined",
|
|
2217
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2242
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2218
2243
|
"attribute": "height"
|
|
2219
2244
|
},
|
|
2220
2245
|
{
|
|
@@ -2292,7 +2317,7 @@
|
|
|
2292
2317
|
"text": "string"
|
|
2293
2318
|
},
|
|
2294
2319
|
"default": "'100%'",
|
|
2295
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2320
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2296
2321
|
"fieldName": "width"
|
|
2297
2322
|
},
|
|
2298
2323
|
{
|
|
@@ -2301,7 +2326,7 @@
|
|
|
2301
2326
|
"text": "string | undefined"
|
|
2302
2327
|
},
|
|
2303
2328
|
"default": "undefined",
|
|
2304
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2329
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2305
2330
|
"fieldName": "height"
|
|
2306
2331
|
},
|
|
2307
2332
|
{
|
|
@@ -2478,7 +2503,7 @@
|
|
|
2478
2503
|
"declarations": [
|
|
2479
2504
|
{
|
|
2480
2505
|
"kind": "class",
|
|
2481
|
-
"description": "## Context\n\nThis component displays mutations (substitutions, deletions and insertions) for a dataset selected by a LAPIS filter.\n\n## Views\n\n### Table View\n\nThe table view shows all substitutions and deletions for the dataset.\nIt shows the type (substitution or deletion), the total count of the mutation\nand the proportion of the mutation in the dataset.\nThe proportion is relative to the total number of sequences matching\nthe specified sequence filters with non-ambiguous reads at that position.\n\nThe proportion interval filter can be used to filter the displayed mutations on client side.\n\n#### Jaccard Similarity\n\nIf the `baselineLapisFilter` attribute is set,\nthe [Jaccard similarity](https://en.wikipedia.org/wiki/Jaccard_index) is computed for each mutation.\nIt is computed as `variantWithMutationCount / (variantCount + mutationCount - variantWithMutationCount)`,\n- `variantCount` is the number of sequences of the variant (i.e. the number of sequences that match the `lapisFilter`),\n- `mutationCount` is the number of sequences with the mutation\n (i.e. the number of sequences matching the `baselineLapisFilter` that have the mutation),\n- `variantWithMutationCount` is the number of sequences that belong to the variant and have the mutation\n (i.e. the `count` value that is shown in the table).\n\nTypically, this is useful when you query mutations of a certain \"variant\"\n(i.e. a certain lineage or a certain set of mutations).\nThen the `baselineLapisFilter` should be the `lapisFilter` but without the lineage or mutations.\n\nFor example:\nYou are interested in a certain lineage in a certain country: `lapisFilter={country: 'Switzerland', linage: 'XY.1.2.3'}`.\nThen the \"baseline\" should be the same filter but without the lineage: `baselineLapisFilter={country: 'Switzerland'}`.\n\nComputing the Jaccard similarity is not always meaningful, because you might not have a \"variant\"\n(e.g. when you only query for a certain country).\nIn this case you can simply omit the `baselineLapisFilter`.\n\n### Grid View\n\nThe grid view shows the proportion of each sequence symbol (nucleotide or amino acid) for each position that has a mutation.\nOnly positions with at least one mutation in the selected proportion interval are shown.\n\n### Insertions View\n\nThe insertions view shows the count of all insertions for the dataset.",
|
|
2506
|
+
"description": "## Context\n\nThis component displays mutations (substitutions, deletions and insertions) for a dataset selected by a LAPIS filter.\n\nThis component supports mutations annotations.\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-mutation-annotations--docs for more information.\n\n## Views\n\n### Table View\n\nThe table view shows all substitutions and deletions for the dataset.\nIt shows the type (substitution or deletion), the total count of the mutation\nand the proportion of the mutation in the dataset.\nThe proportion is relative to the total number of sequences matching\nthe specified sequence filters with non-ambiguous reads at that position.\n\nThe proportion interval filter can be used to filter the displayed mutations on client side.\n\n#### Jaccard Similarity\n\nIf the `baselineLapisFilter` attribute is set,\nthe [Jaccard similarity](https://en.wikipedia.org/wiki/Jaccard_index) is computed for each mutation.\nIt is computed as `variantWithMutationCount / (variantCount + mutationCount - variantWithMutationCount)`,\n- `variantCount` is the number of sequences of the variant (i.e. the number of sequences that match the `lapisFilter`),\n- `mutationCount` is the number of sequences with the mutation\n (i.e. the number of sequences matching the `baselineLapisFilter` that have the mutation),\n- `variantWithMutationCount` is the number of sequences that belong to the variant and have the mutation\n (i.e. the `count` value that is shown in the table).\n\nTypically, this is useful when you query mutations of a certain \"variant\"\n(i.e. a certain lineage or a certain set of mutations).\nThen the `baselineLapisFilter` should be the `lapisFilter` but without the lineage or mutations.\n\nFor example:\nYou are interested in a certain lineage in a certain country: `lapisFilter={country: 'Switzerland', linage: 'XY.1.2.3'}`.\nThen the \"baseline\" should be the same filter but without the lineage: `baselineLapisFilter={country: 'Switzerland'}`.\n\nComputing the Jaccard similarity is not always meaningful, because you might not have a \"variant\"\n(e.g. when you only query for a certain country).\nIn this case you can simply omit the `baselineLapisFilter`.\n\n### Grid View\n\nThe grid view shows the proportion of each sequence symbol (nucleotide or amino acid) for each position that has a mutation.\nOnly positions with at least one mutation in the selected proportion interval are shown.\n\n### Insertions View\n\nThe insertions view shows the count of all insertions for the dataset.",
|
|
2482
2507
|
"name": "MutationsComponent",
|
|
2483
2508
|
"members": [
|
|
2484
2509
|
{
|
|
@@ -2528,7 +2553,7 @@
|
|
|
2528
2553
|
"text": "string"
|
|
2529
2554
|
},
|
|
2530
2555
|
"default": "'100%'",
|
|
2531
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2556
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2532
2557
|
"attribute": "width"
|
|
2533
2558
|
},
|
|
2534
2559
|
{
|
|
@@ -2538,7 +2563,7 @@
|
|
|
2538
2563
|
"text": "string | undefined"
|
|
2539
2564
|
},
|
|
2540
2565
|
"default": "undefined",
|
|
2541
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2566
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2542
2567
|
"attribute": "height"
|
|
2543
2568
|
},
|
|
2544
2569
|
{
|
|
@@ -2595,7 +2620,7 @@
|
|
|
2595
2620
|
"text": "string"
|
|
2596
2621
|
},
|
|
2597
2622
|
"default": "'100%'",
|
|
2598
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2623
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2599
2624
|
"fieldName": "width"
|
|
2600
2625
|
},
|
|
2601
2626
|
{
|
|
@@ -2604,7 +2629,7 @@
|
|
|
2604
2629
|
"text": "string | undefined"
|
|
2605
2630
|
},
|
|
2606
2631
|
"default": "undefined",
|
|
2607
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2632
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2608
2633
|
"fieldName": "height"
|
|
2609
2634
|
},
|
|
2610
2635
|
{
|
|
@@ -2810,7 +2835,7 @@
|
|
|
2810
2835
|
"text": "string"
|
|
2811
2836
|
},
|
|
2812
2837
|
"default": "'100%'",
|
|
2813
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2838
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2814
2839
|
"attribute": "width"
|
|
2815
2840
|
},
|
|
2816
2841
|
{
|
|
@@ -2820,7 +2845,7 @@
|
|
|
2820
2845
|
"text": "string | undefined"
|
|
2821
2846
|
},
|
|
2822
2847
|
"default": "undefined",
|
|
2823
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2848
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2824
2849
|
"attribute": "height"
|
|
2825
2850
|
},
|
|
2826
2851
|
{
|
|
@@ -2888,7 +2913,7 @@
|
|
|
2888
2913
|
"text": "string"
|
|
2889
2914
|
},
|
|
2890
2915
|
"default": "'100%'",
|
|
2891
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2916
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2892
2917
|
"fieldName": "width"
|
|
2893
2918
|
},
|
|
2894
2919
|
{
|
|
@@ -2897,7 +2922,7 @@
|
|
|
2897
2922
|
"text": "string | undefined"
|
|
2898
2923
|
},
|
|
2899
2924
|
"default": "undefined",
|
|
2900
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
2925
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
2901
2926
|
"fieldName": "height"
|
|
2902
2927
|
},
|
|
2903
2928
|
{
|
|
@@ -3151,7 +3176,7 @@
|
|
|
3151
3176
|
"text": "string"
|
|
3152
3177
|
},
|
|
3153
3178
|
"default": "'100%'",
|
|
3154
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3179
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3155
3180
|
"attribute": "width"
|
|
3156
3181
|
},
|
|
3157
3182
|
{
|
|
@@ -3161,7 +3186,7 @@
|
|
|
3161
3186
|
"text": "string | undefined"
|
|
3162
3187
|
},
|
|
3163
3188
|
"default": "undefined",
|
|
3164
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3189
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3165
3190
|
"attribute": "height"
|
|
3166
3191
|
},
|
|
3167
3192
|
{
|
|
@@ -3266,7 +3291,7 @@
|
|
|
3266
3291
|
"text": "string"
|
|
3267
3292
|
},
|
|
3268
3293
|
"default": "'100%'",
|
|
3269
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3294
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3270
3295
|
"fieldName": "width"
|
|
3271
3296
|
},
|
|
3272
3297
|
{
|
|
@@ -3275,7 +3300,7 @@
|
|
|
3275
3300
|
"text": "string | undefined"
|
|
3276
3301
|
},
|
|
3277
3302
|
"default": "undefined",
|
|
3278
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3303
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3279
3304
|
"fieldName": "height"
|
|
3280
3305
|
},
|
|
3281
3306
|
{
|
|
@@ -3454,7 +3479,7 @@
|
|
|
3454
3479
|
"text": "string"
|
|
3455
3480
|
},
|
|
3456
3481
|
"default": "'100%'",
|
|
3457
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3482
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3458
3483
|
"attribute": "width"
|
|
3459
3484
|
},
|
|
3460
3485
|
{
|
|
@@ -3464,7 +3489,7 @@
|
|
|
3464
3489
|
"text": "string | undefined"
|
|
3465
3490
|
},
|
|
3466
3491
|
"default": "undefined",
|
|
3467
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3492
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3468
3493
|
"attribute": "height"
|
|
3469
3494
|
},
|
|
3470
3495
|
{
|
|
@@ -3541,7 +3566,7 @@
|
|
|
3541
3566
|
"text": "string"
|
|
3542
3567
|
},
|
|
3543
3568
|
"default": "'100%'",
|
|
3544
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3569
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3545
3570
|
"fieldName": "width"
|
|
3546
3571
|
},
|
|
3547
3572
|
{
|
|
@@ -3550,7 +3575,7 @@
|
|
|
3550
3575
|
"text": "string | undefined"
|
|
3551
3576
|
},
|
|
3552
3577
|
"default": "undefined",
|
|
3553
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3578
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3554
3579
|
"fieldName": "height"
|
|
3555
3580
|
},
|
|
3556
3581
|
{
|
|
@@ -3768,7 +3793,7 @@
|
|
|
3768
3793
|
"text": "string"
|
|
3769
3794
|
},
|
|
3770
3795
|
"default": "'100%'",
|
|
3771
|
-
"description": "The width of the component.\nNot that the map in the map view is not responsive\n(i.e. does not adjust its size when the component is resized).\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3796
|
+
"description": "The width of the component.\nNot that the map in the map view is not responsive\n(i.e. does not adjust its size when the component is resized).\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3772
3797
|
"attribute": "width"
|
|
3773
3798
|
},
|
|
3774
3799
|
{
|
|
@@ -3778,7 +3803,7 @@
|
|
|
3778
3803
|
"text": "string | undefined"
|
|
3779
3804
|
},
|
|
3780
3805
|
"default": "undefined",
|
|
3781
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3806
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3782
3807
|
"attribute": "height"
|
|
3783
3808
|
},
|
|
3784
3809
|
{
|
|
@@ -3875,7 +3900,7 @@
|
|
|
3875
3900
|
"text": "string"
|
|
3876
3901
|
},
|
|
3877
3902
|
"default": "'100%'",
|
|
3878
|
-
"description": "The width of the component.\nNot that the map in the map view is not responsive\n(i.e. does not adjust its size when the component is resized).\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3903
|
+
"description": "The width of the component.\nNot that the map in the map view is not responsive\n(i.e. does not adjust its size when the component is resized).\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3879
3904
|
"fieldName": "width"
|
|
3880
3905
|
},
|
|
3881
3906
|
{
|
|
@@ -3884,7 +3909,7 @@
|
|
|
3884
3909
|
"text": "string | undefined"
|
|
3885
3910
|
},
|
|
3886
3911
|
"default": "undefined",
|
|
3887
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
3912
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
3888
3913
|
"fieldName": "height"
|
|
3889
3914
|
},
|
|
3890
3915
|
{
|
|
@@ -4036,7 +4061,7 @@
|
|
|
4036
4061
|
"text": "string"
|
|
4037
4062
|
},
|
|
4038
4063
|
"default": "'100%'",
|
|
4039
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4064
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4040
4065
|
"attribute": "width"
|
|
4041
4066
|
},
|
|
4042
4067
|
{
|
|
@@ -4046,7 +4071,7 @@
|
|
|
4046
4071
|
"text": "string | undefined"
|
|
4047
4072
|
},
|
|
4048
4073
|
"default": "undefined",
|
|
4049
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4074
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4050
4075
|
"attribute": "height"
|
|
4051
4076
|
}
|
|
4052
4077
|
],
|
|
@@ -4075,7 +4100,7 @@
|
|
|
4075
4100
|
"text": "string"
|
|
4076
4101
|
},
|
|
4077
4102
|
"default": "'100%'",
|
|
4078
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4103
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4079
4104
|
"fieldName": "width"
|
|
4080
4105
|
},
|
|
4081
4106
|
{
|
|
@@ -4084,7 +4109,7 @@
|
|
|
4084
4109
|
"text": "string | undefined"
|
|
4085
4110
|
},
|
|
4086
4111
|
"default": "undefined",
|
|
4087
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4112
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4088
4113
|
"fieldName": "height"
|
|
4089
4114
|
}
|
|
4090
4115
|
],
|
|
@@ -4292,7 +4317,7 @@
|
|
|
4292
4317
|
"text": "string"
|
|
4293
4318
|
},
|
|
4294
4319
|
"default": "'100%'",
|
|
4295
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4320
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4296
4321
|
"attribute": "width"
|
|
4297
4322
|
},
|
|
4298
4323
|
{
|
|
@@ -4302,7 +4327,7 @@
|
|
|
4302
4327
|
"text": "string | undefined"
|
|
4303
4328
|
},
|
|
4304
4329
|
"default": "undefined",
|
|
4305
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4330
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4306
4331
|
"attribute": "height"
|
|
4307
4332
|
},
|
|
4308
4333
|
{
|
|
@@ -4341,7 +4366,7 @@
|
|
|
4341
4366
|
"text": "string"
|
|
4342
4367
|
},
|
|
4343
4368
|
"default": "'100%'",
|
|
4344
|
-
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4369
|
+
"description": "The width of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4345
4370
|
"fieldName": "width"
|
|
4346
4371
|
},
|
|
4347
4372
|
{
|
|
@@ -4350,7 +4375,7 @@
|
|
|
4350
4375
|
"text": "string | undefined"
|
|
4351
4376
|
},
|
|
4352
4377
|
"default": "undefined",
|
|
4353
|
-
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/
|
|
4378
|
+
"description": "The height of the component.\n\nVisit https://genspectrum.github.io/dashboard-components/?path=/docs/concepts-size-of-components--docs for more information.",
|
|
4354
4379
|
"fieldName": "height"
|
|
4355
4380
|
},
|
|
4356
4381
|
{
|
package/dist/{LineageFilterChangedEvent-COWV-Y0k.js → LineageFilterChangedEvent-DkvWdq_G.js}
RENAMED
|
@@ -52,7 +52,7 @@ const dateRangeValueSchema = z.union([
|
|
|
52
52
|
dateFrom: z.string().date().optional(),
|
|
53
53
|
dateTo: z.string().date().optional()
|
|
54
54
|
})
|
|
55
|
-
]);
|
|
55
|
+
]).optional();
|
|
56
56
|
class DateRangeOptionChangedEvent extends CustomEvent {
|
|
57
57
|
constructor(detail) {
|
|
58
58
|
super("gs-date-range-option-changed", {
|
|
@@ -148,4 +148,4 @@ export {
|
|
|
148
148
|
temporalGranularitySchema as t,
|
|
149
149
|
views as v
|
|
150
150
|
};
|
|
151
|
-
//# sourceMappingURL=LineageFilterChangedEvent-
|
|
151
|
+
//# sourceMappingURL=LineageFilterChangedEvent-DkvWdq_G.js.map
|