@genspectrum/dashboard-components 0.11.1 → 0.11.2
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 +3 -3
- package/dist/assets/mutationOverTimeWorker-Cr-NmYEs.js.map +1 -0
- package/dist/components.d.ts +11 -11
- package/dist/components.js +112 -14
- package/dist/components.js.map +1 -1
- package/dist/style.css +19 -0
- package/dist/util.d.ts +11 -11
- package/package.json +1 -1
- package/src/preact/map/sequences-by-location-map.tsx +98 -10
- package/src/preact/map/sequences-by-location.tsx +1 -0
- package/src/web-components/visualization/gs-sequences-by-location.stories.ts +4 -4
- package/src/web-components/visualization/gs-sequences-by-location.tsx +1 -1
- package/standalone-bundle/assets/mutationOverTimeWorker-DIQRmxvC.js.map +1 -0
- package/standalone-bundle/dashboard-components.js +2234 -2153
- package/standalone-bundle/dashboard-components.js.map +1 -1
- package/standalone-bundle/style.css +1 -1
- package/dist/assets/mutationOverTimeWorker-BjjkMGzd.js.map +0 -1
- package/standalone-bundle/assets/mutationOverTimeWorker-DoUBht2e.js.map +0 -1
package/dist/components.d.ts
CHANGED
|
@@ -1317,7 +1317,7 @@ declare global {
|
|
|
1317
1317
|
|
|
1318
1318
|
declare global {
|
|
1319
1319
|
interface HTMLElementTagNameMap {
|
|
1320
|
-
'gs-
|
|
1320
|
+
'gs-mutations-over-time': MutationsOverTimeComponent;
|
|
1321
1321
|
}
|
|
1322
1322
|
}
|
|
1323
1323
|
|
|
@@ -1325,7 +1325,7 @@ declare global {
|
|
|
1325
1325
|
declare global {
|
|
1326
1326
|
namespace JSX {
|
|
1327
1327
|
interface IntrinsicElements {
|
|
1328
|
-
'gs-
|
|
1328
|
+
'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1329
1329
|
}
|
|
1330
1330
|
}
|
|
1331
1331
|
}
|
|
@@ -1333,7 +1333,7 @@ declare global {
|
|
|
1333
1333
|
|
|
1334
1334
|
declare global {
|
|
1335
1335
|
interface HTMLElementTagNameMap {
|
|
1336
|
-
'gs-
|
|
1336
|
+
'gs-sequences-by-location': SequencesByLocationComponent;
|
|
1337
1337
|
}
|
|
1338
1338
|
}
|
|
1339
1339
|
|
|
@@ -1341,7 +1341,7 @@ declare global {
|
|
|
1341
1341
|
declare global {
|
|
1342
1342
|
namespace JSX {
|
|
1343
1343
|
interface IntrinsicElements {
|
|
1344
|
-
'gs-
|
|
1344
|
+
'gs-sequences-by-location': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1345
1345
|
}
|
|
1346
1346
|
}
|
|
1347
1347
|
}
|
|
@@ -1365,10 +1365,11 @@ declare global {
|
|
|
1365
1365
|
|
|
1366
1366
|
declare global {
|
|
1367
1367
|
interface HTMLElementTagNameMap {
|
|
1368
|
-
'gs-
|
|
1368
|
+
'gs-date-range-selector': DateRangeSelectorComponent;
|
|
1369
1369
|
}
|
|
1370
1370
|
interface HTMLElementEventMap {
|
|
1371
|
-
'gs-
|
|
1371
|
+
'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
|
|
1372
|
+
'gs-date-range-option-changed': DateRangeOptionChangedEvent;
|
|
1372
1373
|
}
|
|
1373
1374
|
}
|
|
1374
1375
|
|
|
@@ -1376,7 +1377,7 @@ declare global {
|
|
|
1376
1377
|
declare global {
|
|
1377
1378
|
namespace JSX {
|
|
1378
1379
|
interface IntrinsicElements {
|
|
1379
|
-
'gs-
|
|
1380
|
+
'gs-date-range-selector': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1380
1381
|
}
|
|
1381
1382
|
}
|
|
1382
1383
|
}
|
|
@@ -1384,11 +1385,10 @@ declare global {
|
|
|
1384
1385
|
|
|
1385
1386
|
declare global {
|
|
1386
1387
|
interface HTMLElementTagNameMap {
|
|
1387
|
-
'gs-
|
|
1388
|
+
'gs-location-filter': LocationFilterComponent;
|
|
1388
1389
|
}
|
|
1389
1390
|
interface HTMLElementEventMap {
|
|
1390
|
-
'gs-
|
|
1391
|
-
'gs-date-range-option-changed': DateRangeOptionChangedEvent;
|
|
1391
|
+
'gs-location-changed': CustomEvent<Record<string, string>>;
|
|
1392
1392
|
}
|
|
1393
1393
|
}
|
|
1394
1394
|
|
|
@@ -1396,7 +1396,7 @@ declare global {
|
|
|
1396
1396
|
declare global {
|
|
1397
1397
|
namespace JSX {
|
|
1398
1398
|
interface IntrinsicElements {
|
|
1399
|
-
'gs-
|
|
1399
|
+
'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
1400
1400
|
}
|
|
1401
1401
|
}
|
|
1402
1402
|
}
|