@@ -19,10 +19,10 @@ import { z } from "zod";
|
||||
import { defaultPageSize,
|
||||
SortableCellHead,
|
||||
SortableDataTable,
|
||||
} from "/components/table/SortableDataTable.tsx";
|
||||
import { useMutateField } from "/hooks/useMutateField.tsx";
|
||||
import { useMutationWithToasts } from "/hooks/useMutationWithToasts.ts";
|
||||
import { useStateWithSchema } from "/hooks/useStateWithSchema.ts";
|
||||
} from "#/components/table/SortableDataTable.tsx";
|
||||
import { useMutateField } from "#/hooks/useMutateField.tsx";
|
||||
import { useMutationWithToasts } from "#/hooks/useMutationWithToasts.ts";
|
||||
import { useStateWithSchema } from "#/hooks/useStateWithSchema.ts";
|
||||
|
||||
type ColumnDefinition = { label: string; field: string } | string;
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { Avatar } from "@probo/ui";
|
||||
|
||||
import type { PeopleGraphQuery } from "/__generated__/core/PeopleGraphQuery.graphql.ts";
|
||||
import { GraphQLCell } from "/components/table/GraphQLCell.tsx";
|
||||
import { peopleQuery } from "/hooks/graph/PeopleGraph.ts";
|
||||
import type { PeopleGraphQuery } from "#/__generated__/core/PeopleGraphQuery.graphql.ts";
|
||||
import { GraphQLCell } from "#/components/table/GraphQLCell.tsx";
|
||||
import { peopleQuery } from "#/hooks/graph/PeopleGraph.ts";
|
||||
|
||||
type Props = {
|
||||
name: string;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { faviconUrl } from "@probo/helpers";
|
||||
import { Avatar, Badge, IconCrossLargeX } from "@probo/ui";
|
||||
|
||||
import type { VendorGraphSelectQuery } from "/__generated__/core/VendorGraphSelectQuery.graphql.ts";
|
||||
import { GraphQLCell } from "/components/table/GraphQLCell";
|
||||
import { vendorsSelectQuery } from "/hooks/graph/VendorGraph";
|
||||
import type { VendorGraphSelectQuery } from "#/__generated__/core/VendorGraphSelectQuery.graphql.ts";
|
||||
import { GraphQLCell } from "#/components/table/GraphQLCell";
|
||||
import { vendorsSelectQuery } from "#/hooks/graph/VendorGraph";
|
||||
|
||||
type Vendor = {
|
||||
id: string;
|
||||
|
||||
Reference in New Issue
Block a user