@sjcrh/proteinpaint-types 2.109.0 → 2.109.1-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/package.json +1 -1
- package/src/dataset.ts +10 -0
package/package.json
CHANGED
package/src/dataset.ts
CHANGED
|
@@ -1379,6 +1379,16 @@ type MassNav = {
|
|
|
1379
1379
|
* maybe used for other tabs as well.
|
|
1380
1380
|
*/
|
|
1381
1381
|
html?: string
|
|
1382
|
+
/** declare data release. should only use for "about" */
|
|
1383
|
+
dataRelease?: {
|
|
1384
|
+
/** data release version */
|
|
1385
|
+
version: string
|
|
1386
|
+
/** link to data release page */
|
|
1387
|
+
link: string
|
|
1388
|
+
}
|
|
1389
|
+
/** html string, can include links to other
|
|
1390
|
+
* pages (e.g., tutorials, google group) */
|
|
1391
|
+
additionalInfo?: string
|
|
1382
1392
|
/** "active" items, shown as clickable buttons in about tab. click an item to launch a plot */
|
|
1383
1393
|
activeItems?: {
|
|
1384
1394
|
items: ActiveItem[]
|