@genspectrum/dashboard-components 0.6.4 → 0.6.5

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.
@@ -501,11 +501,17 @@ export declare class MutationsComponent extends PreactLitAdapterWithGridJsStyles
501
501
  *
502
502
  * The grid view shows the proportion for each mutation over date ranges.
503
503
  *
504
- * The grid will show at max 100 rows and 200 columns for browser performance reasons.
505
- * More data might make the browser unresponsive.
506
- * If the numbers are exceeded, an error message will be shown.
507
- * In both cases, the `lapisFilter` should be narrowed down to reduce the number of mutations or date ranges.
508
- * The number of date ranges can also be reduced by selecting a larger granularity (months instead of weeks).
504
+ * The grid limits the number of rows columns for browser performance reasons.
505
+ * Too much data might make the browser unresponsive.
506
+ *
507
+ * The number of columns is limited to 200.
508
+ * If this number are exceeded, an error message will be shown.
509
+ * It is your responsibility to make sure that this does not happen.
510
+ * Depending on the selected date range in the `lapisFilter`, you can adapt the granularity accordingly
511
+ * (e.g. use months instead of days).
512
+ *
513
+ * The number of rows is limited to 100.
514
+ * If there are more, the component will only show 100 mutations and notify the user.
509
515
  */
510
516
  export declare class MutationsOverTimeComponent extends PreactLitAdapterWithGridJsStyles {
511
517
  /**
@@ -963,14 +969,14 @@ declare global {
963
969
 
964
970
  declare global {
965
971
  interface HTMLElementTagNameMap {
966
- 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
972
+ 'gs-mutations-component': MutationsComponent;
967
973
  }
968
974
  }
969
975
 
970
976
 
971
977
  declare global {
972
978
  interface HTMLElementTagNameMap {
973
- 'gs-mutations-component': MutationsComponent;
979
+ 'gs-prevalence-over-time': PrevalenceOverTimeComponent;
974
980
  }
975
981
  }
976
982
 
package/dist/style.css CHANGED
@@ -3029,6 +3029,9 @@ input.tab:checked + .tab-content,
3029
3029
  padding-top: 1rem;
3030
3030
  padding-bottom: 1rem;
3031
3031
  }
3032
+ .pl-2 {
3033
+ padding-left: 0.5rem;
3034
+ }
3032
3035
  .text-center {
3033
3036
  text-align: center;
3034
3037
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@genspectrum/dashboard-components",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "GenSpectrum web components for building dashboards",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-only",