File tree Expand file tree Collapse file tree
components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/ReferenceAssemblyStep/components/AssemblyData/components/AssemblySelector/hooks/UseTable
views/OrganismView/components/Main/components
packages/shared/components/Table
components/TableCell/components/NTagCell Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { SelectCell } from "@/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/ReferenceAssemblyStep/components/AssemblyData/components/AssemblySelector/components/Table/components/TableCell/components/SelectCell/selectCell" ;
12import {
23 buildNTagProps ,
34 renderNTagCell ,
4- } from "@/components/common/Table/components/TableCell/components/NTagCell/utils" ;
5- import { SelectCell } from "@/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/ReferenceAssemblyStep/components/AssemblyData/components/AssemblySelector/components/Table/components/TableCell/components/SelectCell/selectCell" ;
5+ } from "@repo/shared/components/Table/components/TableCell/components/NTagCell/utils" ;
66import { ColumnDef , SortingColumnDef } from "@tanstack/react-table" ;
77import { getAssemblyIsolate , getAssemblySerotype } from "./accessorFn" ;
88import { CATEGORY_CONFIGS } from "./categoryConfigs" ;
Original file line number Diff line number Diff line change 1- import { Table } from "@/components/common/Table/table" ;
21import { StyledSectionTitle } from "@/views/OrganismView/components/Main/main.styles" ;
32import { Toolbar } from "@/views/OrganismView/components/Main/table/components/Toolbar/toolbar" ;
43import { useTable } from "@/views/OrganismView/components/Main/table/hooks/UseTable/hook" ;
@@ -7,6 +6,7 @@ import { ALERT_PROPS } from "@databiosphere/findable-ui/lib/components/common/Al
76import { FluidPaper } from "@databiosphere/findable-ui/lib/components/common/Paper/components/FluidPaper/fluidPaper" ;
87import { TYPOGRAPHY_PROPS } from "@databiosphere/findable-ui/lib/styles/common/mui/typography" ;
98import { Alert , Stack } from "@mui/material" ;
9+ import { Table } from "@repo/shared/components/Table/table" ;
1010import { RowData } from "@tanstack/react-table" ;
1111import { JSX } from "react" ;
1212import { EmptyState } from "../EmptyState/emptyState" ;
Original file line number Diff line number Diff line change 1- import { Table } from "@/components/common/Table/table" ;
21import { StyledSectionTitle } from "@/views/OrganismView/components/Main/main.styles" ;
32import { useTable } from "@/views/OrganismView/components/Main/table/hooks/UseTable/hook" ;
43import { useShowPangenome } from "@/views/OrganismView/hooks/UseShowPangenome/hook" ;
@@ -13,6 +12,7 @@ import {
1312 Toolbar ,
1413 Typography ,
1514} from "@mui/material" ;
15+ import { Table } from "@repo/shared/components/Table/table" ;
1616import { JSX } from "react" ;
1717import { StyledFluidPaper } from "./pangenomeSection.styles" ;
1818import { COLUMNS } from "./table/columns" ;
Original file line number Diff line number Diff line change 11import { NTagCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/NTagCell/nTagCell" ;
2- import { CellContext , RowData } from "@tanstack/react-table" ;
3- import { ComponentProps , JSX } from "react" ;
2+ import type { CellContext , RowData } from "@tanstack/react-table" ;
3+ import type { ComponentProps } from "react" ;
4+ import { JSX } from "react" ;
45
56/**
67 * Builds props for NTagCell component.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import { useVirtualization } from "@databiosphere/findable-ui/lib/components/Tab
44import { GridTable } from "@databiosphere/findable-ui/lib/components/Table/table.styles" ;
55import { getColumnTrackSizing } from "@databiosphere/findable-ui/lib/components/TableCreator/options/columnTrackSizing/utils" ;
66import { TableContainer } from "@mui/material" ;
7- import { RowData } from "@tanstack/react-table" ;
7+ import type { RowData } from "@tanstack/react-table" ;
88import { JSX } from "react" ;
99import { useRowDirection } from "./hooks/UseRowDirection/hook" ;
10- import { Props } from "./types" ;
10+ import type { Props } from "./types" ;
1111
1212/**
1313 * Renders a virtualized table for a TanStack Table instance, with responsive
Original file line number Diff line number Diff line change 1- import { RowData , Table } from "@tanstack/react-table" ;
1+ import type { RowData , Table } from "@tanstack/react-table" ;
22
33export interface Props < T extends RowData > {
44 table : Table < T > ;
You can’t perform that action at this time.
0 commit comments