@genspectrum/dashboard-components 0.18.3 → 0.18.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.
- package/dist/components.d.ts +279 -0
- package/dist/components.js +63 -30
- package/dist/components.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/util.d.ts +279 -0
- package/package.json +2 -2
- package/src/preact/components/segment-selector.stories.tsx +12 -5
- package/src/preact/components/segment-selector.tsx +11 -7
- package/src/preact/mutationComparison/mutation-comparison.tsx +5 -1
- package/src/preact/mutations/mutations.tsx +5 -1
- package/src/preact/mutationsOverTime/mutations-over-time-grid.tsx +1 -1
- package/src/preact/mutationsOverTime/mutations-over-time.tsx +5 -1
- package/src/preact/sequencesByLocation/__mockData__/worldAtlas.json +1 -1
- package/src/preact/shared/tanstackTable/pagination.tsx +24 -17
- package/src/preact/wastewater/mutationsOverTime/wastewater-mutations-over-time.stories.tsx +3 -3
- package/src/preact/wastewater/mutationsOverTime/wastewater-mutations-over-time.tsx +5 -1
- package/standalone-bundle/dashboard-components.js +1999 -1967
- package/standalone-bundle/dashboard-components.js.map +1 -1
- package/standalone-bundle/style.css +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -1399,6 +1399,285 @@ export declare class WastewaterMutationsOverTimeComponent extends PreactLitAdapt
|
|
|
1399
1399
|
export { }
|
|
1400
1400
|
|
|
1401
1401
|
|
|
1402
|
+
declare global {
|
|
1403
|
+
interface HTMLElementEventMap {
|
|
1404
|
+
'gs-error': ErrorEvent;
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
declare global {
|
|
1410
|
+
interface HTMLElementTagNameMap {
|
|
1411
|
+
'gs-app': AppComponent;
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
|
|
1416
|
+
declare global {
|
|
1417
|
+
namespace JSX {
|
|
1418
|
+
interface IntrinsicElements {
|
|
1419
|
+
'gs-app': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
declare global {
|
|
1426
|
+
interface HTMLElementTagNameMap {
|
|
1427
|
+
'gs-mutation-comparison-component': MutationComparisonComponent;
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
declare global {
|
|
1433
|
+
namespace JSX {
|
|
1434
|
+
interface IntrinsicElements {
|
|
1435
|
+
'gs-mutation-comparison-component': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1436
|
+
}
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
declare global {
|
|
1442
|
+
interface HTMLElementTagNameMap {
|
|
1443
|
+
'gs-mutations-component': MutationsComponent;
|
|
1444
|
+
}
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
declare global {
|
|
1449
|
+
namespace JSX {
|
|
1450
|
+
interface IntrinsicElements {
|
|
1451
|
+
'gs-mutations-component': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
|
|
1457
|
+
declare global {
|
|
1458
|
+
interface HTMLElementTagNameMap {
|
|
1459
|
+
'gs-prevalence-over-time': PrevalenceOverTimeComponent;
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
declare global {
|
|
1465
|
+
namespace JSX {
|
|
1466
|
+
interface IntrinsicElements {
|
|
1467
|
+
'gs-prevalence-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
declare global {
|
|
1474
|
+
interface HTMLElementTagNameMap {
|
|
1475
|
+
'gs-relative-growth-advantage': RelativeGrowthAdvantageComponent;
|
|
1476
|
+
}
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
declare global {
|
|
1481
|
+
namespace JSX {
|
|
1482
|
+
interface IntrinsicElements {
|
|
1483
|
+
'gs-relative-growth-advantage': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1484
|
+
}
|
|
1485
|
+
}
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
|
|
1489
|
+
declare global {
|
|
1490
|
+
interface HTMLElementTagNameMap {
|
|
1491
|
+
'gs-aggregate': AggregateComponent;
|
|
1492
|
+
}
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
declare global {
|
|
1497
|
+
namespace JSX {
|
|
1498
|
+
interface IntrinsicElements {
|
|
1499
|
+
'gs-aggregate': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
declare global {
|
|
1506
|
+
interface HTMLElementTagNameMap {
|
|
1507
|
+
'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
|
|
1512
|
+
declare global {
|
|
1513
|
+
namespace JSX {
|
|
1514
|
+
interface IntrinsicElements {
|
|
1515
|
+
'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1516
|
+
}
|
|
1517
|
+
}
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
|
|
1521
|
+
declare global {
|
|
1522
|
+
interface HTMLElementTagNameMap {
|
|
1523
|
+
'gs-mutations-over-time': MutationsOverTimeComponent;
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
declare global {
|
|
1529
|
+
namespace JSX {
|
|
1530
|
+
interface IntrinsicElements {
|
|
1531
|
+
'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
declare global {
|
|
1538
|
+
interface HTMLElementTagNameMap {
|
|
1539
|
+
'gs-sequences-by-location': SequencesByLocationComponent;
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
|
|
1544
|
+
declare global {
|
|
1545
|
+
namespace JSX {
|
|
1546
|
+
interface IntrinsicElements {
|
|
1547
|
+
'gs-sequences-by-location': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1548
|
+
}
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
|
|
1553
|
+
declare global {
|
|
1554
|
+
interface HTMLElementTagNameMap {
|
|
1555
|
+
'gs-statistics': StatisticsComponent;
|
|
1556
|
+
}
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
|
|
1560
|
+
declare global {
|
|
1561
|
+
namespace JSX {
|
|
1562
|
+
interface IntrinsicElements {
|
|
1563
|
+
'gs-statistics': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1564
|
+
}
|
|
1565
|
+
}
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
declare global {
|
|
1570
|
+
interface HTMLElementTagNameMap {
|
|
1571
|
+
'gs-wastewater-mutations-over-time': WastewaterMutationsOverTimeComponent;
|
|
1572
|
+
}
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
|
|
1576
|
+
declare global {
|
|
1577
|
+
namespace JSX {
|
|
1578
|
+
interface IntrinsicElements {
|
|
1579
|
+
'gs-wastewater-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
|
|
1585
|
+
declare global {
|
|
1586
|
+
interface HTMLElementTagNameMap {
|
|
1587
|
+
'gs-date-range-filter': DateRangeFilterComponent;
|
|
1588
|
+
}
|
|
1589
|
+
interface HTMLElementEventMap {
|
|
1590
|
+
'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
|
|
1591
|
+
'gs-date-range-option-changed': DateRangeOptionChangedEvent;
|
|
1592
|
+
}
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
declare global {
|
|
1597
|
+
namespace JSX {
|
|
1598
|
+
interface IntrinsicElements {
|
|
1599
|
+
'gs-date-range-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
declare global {
|
|
1606
|
+
interface HTMLElementTagNameMap {
|
|
1607
|
+
'gs-location-filter': LocationFilterComponent;
|
|
1608
|
+
}
|
|
1609
|
+
interface HTMLElementEventMap {
|
|
1610
|
+
'gs-location-changed': LocationChangedEvent;
|
|
1611
|
+
}
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
declare global {
|
|
1616
|
+
namespace JSX {
|
|
1617
|
+
interface IntrinsicElements {
|
|
1618
|
+
'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1619
|
+
}
|
|
1620
|
+
}
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
declare global {
|
|
1625
|
+
interface HTMLElementTagNameMap {
|
|
1626
|
+
'gs-text-filter': TextFilterComponent;
|
|
1627
|
+
}
|
|
1628
|
+
interface HTMLElementEventMap {
|
|
1629
|
+
'gs-text-filter-changed': TextFilterChangedEvent;
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
declare global {
|
|
1635
|
+
namespace JSX {
|
|
1636
|
+
interface IntrinsicElements {
|
|
1637
|
+
'gs-text-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
|
|
1643
|
+
declare global {
|
|
1644
|
+
interface HTMLElementTagNameMap {
|
|
1645
|
+
'gs-mutation-filter': MutationFilterComponent;
|
|
1646
|
+
}
|
|
1647
|
+
interface HTMLElementEventMap {
|
|
1648
|
+
'gs-mutation-filter-changed': CustomEvent<MutationsFilter>;
|
|
1649
|
+
}
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
declare global {
|
|
1654
|
+
namespace JSX {
|
|
1655
|
+
interface IntrinsicElements {
|
|
1656
|
+
'gs-mutation-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
|
|
1662
|
+
declare global {
|
|
1663
|
+
interface HTMLElementTagNameMap {
|
|
1664
|
+
'gs-lineage-filter': LineageFilterComponent;
|
|
1665
|
+
}
|
|
1666
|
+
interface HTMLElementEventMap {
|
|
1667
|
+
'gs-lineage-filter-changed': LineageFilterChangedEvent;
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
|
|
1672
|
+
declare global {
|
|
1673
|
+
namespace JSX {
|
|
1674
|
+
interface IntrinsicElements {
|
|
1675
|
+
'gs-lineage-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
|
|
1402
1681
|
declare module 'chart.js' {
|
|
1403
1682
|
interface CartesianScaleTypeRegistry {
|
|
1404
1683
|
logit: {
|