@genspectrum/dashboard-components 0.9.0 → 0.10.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 +5 -5
- package/dist/assets/{mutationOverTimeWorker-DuWGESoO.js.map → mutationOverTimeWorker-CvZg52rf.js.map} +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/components.js +66 -36
- package/dist/components.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/src/preact/components/confidence-interval-selector.tsx +1 -1
- package/src/preact/components/no-data-display.tsx +2 -2
- package/src/preact/mutationFilter/parseMutation.spec.ts +30 -0
- package/src/preact/mutationFilter/sequenceTypeFromSegment.ts +3 -2
- package/src/preact/mutationsOverTime/mutations-over-time-grid.tsx +2 -3
- package/src/preact/prevalenceOverTime/prevalence-over-time.stories.tsx +4 -4
- package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +11 -1
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.stories.tsx +91 -0
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.tsx +6 -0
- package/src/query/queryRelativeGrowthAdvantage.ts +61 -24
- package/src/utils/mutations.ts +3 -3
- package/src/web-components/visualization/gs-prevalence-over-time.stories.ts +1 -1
- package/src/web-components/visualization/gs-prevalence-over-time.tsx +2 -2
- package/standalone-bundle/assets/{mutationOverTimeWorker-MVSt1FVw.js.map → mutationOverTimeWorker-CypX_PYM.js.map} +1 -1
- package/standalone-bundle/dashboard-components.js +2343 -2316
- package/standalone-bundle/dashboard-components.js.map +1 -1
- package/standalone-bundle/style.css +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -739,8 +739,8 @@ export declare class PrevalenceOverTimeComponent extends PreactLitAdapterWithGri
|
|
|
739
739
|
views: ('bar' | 'line' | 'bubble' | 'table')[];
|
|
740
740
|
/**
|
|
741
741
|
* A list of methods to calculate the confidence interval.
|
|
742
|
-
* The option `none` is always available and disables confidence intervals.
|
|
743
742
|
* Pass an empty array to disable the confidence interval selector.
|
|
743
|
+
* The first entry will be selected by default.
|
|
744
744
|
*/
|
|
745
745
|
confidenceIntervalMethods: ('wilson' | 'none')[];
|
|
746
746
|
/**
|