Skip to content

Commit f20b158

Browse files
Fran McDadeFran McDade
Fran McDade
authored and
Fran McDade
committed
feat: update documentation link for nih tutorial button (#4101)
1 parent 77e2705 commit f20b158

File tree

59 files changed

+1075
-1021
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1075
-1021
lines changed

explorer/app/components/Detail/components/GeneratedMatricesTables/components/ArchivePreviewDialog/components/ArchivePreviewTable/archivePreviewTable.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { GridPaper } from "@databiosphere/findable-ui/lib/components/common/Paper/paper.styles";
22
import { Table } from "@databiosphere/findable-ui/lib/components/Detail/components/Table/table";
3-
import { ColumnDef } from "@tanstack/react-table";
3+
import { ColumnDef, RowData } from "@tanstack/react-table";
44
import { Dispatch, SetStateAction, useEffect } from "react";
55
import {
66
HCA_DCP_CATEGORY_KEY,
@@ -23,7 +23,10 @@ export interface ArchivePreviewTableProps {
2323
* Builds the table column definition model for the archive preview table.
2424
* @returns archive preview table column definition.
2525
*/
26-
function getArchivePreviewTableColumns<T extends object>(): ColumnDef<T>[] {
26+
function getArchivePreviewTableColumns<
27+
T extends RowData,
28+
TData = unknown
29+
>(): ColumnDef<T, TData>[] {
2730
return [
2831
{
2932
accessorKey: HCA_DCP_CATEGORY_KEY.FILE_NAME,

explorer/app/components/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ export { ManifestDownloadEntity } from "@databiosphere/findable-ui/lib/component
5353
export { ManifestDownloadForm } from "@databiosphere/findable-ui/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm";
5454
export { ManifestDownload } from "@databiosphere/findable-ui/lib/components/Export/components/ManifestDownload/manifestDownload";
5555
export { AzulFileDownload } from "@databiosphere/findable-ui/lib/components/Index/components/AzulFileDownload/azulFileDownload";
56-
export { Cell } from "@databiosphere/findable-ui/lib/components/Index/components/Cell/cell";
5756
export { Summaries } from "@databiosphere/findable-ui/lib/components/Index/components/Hero/components/Summaries/summaries";
58-
export { NTagCell } from "@databiosphere/findable-ui/lib/components/Index/components/NTagCell/nTagCell";
5957
export {
6058
BackPageContentMainColumn,
6159
BackPageContentSideColumn,
@@ -77,6 +75,8 @@ export { Details } from "@databiosphere/findable-ui/lib/components/Project/compo
7775
export { Publications } from "@databiosphere/findable-ui/lib/components/Project/components/Publications/publications";
7876
export { SupplementaryLinks } from "@databiosphere/findable-ui/lib/components/Project/components/SupplementaryLinks/supplementaryLinks";
7977
export { SupportRequest } from "@databiosphere/findable-ui/lib/components/Support/components/SupportRequest/supportRequest";
78+
export { BasicCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/BasicCell/basicCell";
79+
export { NTagCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/NTagCell/nTagCell";
8080
export { ExportMethodView } from "@databiosphere/findable-ui/lib/views/ExportMethodView/exportMethodView";
8181
export { Announcements } from "./common/Banner/components/Announcements/announcements";
8282
export { ButtonOutline } from "./common/Button/components/ButtonOutline/buttonOutline";

0 commit comments

Comments
 (0)