UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

28 lines (27 loc) 1.7 kB
import { SlotMarker } from "../utils/types/Slots.js"; import { ObjectPaths } from "./utils.js"; import { UniqueRow } from "./row.js"; import { CellAlignment, Column, ColumnWidth, createColumnHelper } from "./column.js"; import { DataTable, DataTableProps } from "./DataTable.js"; import { ErrorDialog } from "./ErrorDialog.js"; import { Table as Table$1, TableActions, TableActionsProps, TableBody, TableBodyProps, TableCell, TableCellPlaceholder, TableCellProps, TableContainer, TableContainerProps, TableDivider, TableHead, TableHeadProps, TableHeader, TableHeaderProps, TableProps, TableRow, TableRowProps, TableSkeleton, TableSkeletonProps, TableSubtitle, TableSubtitleProps, TableTitle, TableTitleProps } from "./Table.js"; import { Pagination } from "./Pagination.js"; //#region src/DataTable/index.d.ts declare const Table: typeof Table$1 & SlotMarker & { Container: typeof TableContainer; Title: typeof TableTitle; Subtitle: typeof TableSubtitle; Actions: typeof TableActions; Divider: typeof TableDivider; Skeleton: typeof TableSkeleton; Head: typeof TableHead; Body: typeof TableBody; Header: typeof TableHeader; Row: typeof TableRow; Cell: typeof TableCell; CellPlaceholder: typeof TableCellPlaceholder; Pagination: typeof Pagination; ErrorDialog: typeof ErrorDialog; }; //#endregion export { type CellAlignment, type Column, type ColumnWidth, DataTable, type DataTableProps, type ObjectPaths, Table, type TableActionsProps, type TableBodyProps, type TableCellProps, type TableContainerProps, type TableHeadProps, type TableHeaderProps, type TableProps, type TableRowProps, type TableSubtitleProps, type TableTitleProps, type UniqueRow, createColumnHelper };