UNPKG

svelte-5-ui-lib

Version:

Svelte 5 UI Lib is a UI library built from scratch to leverage Svelte 5's runes system, creating smooth, reactive components.

11 lines (10 loc) 1.1 kB
import type { TableProps, TableCtxType, TableHeadProps, HeadItemType, TableColrType, TableBodyRowProps, TableBodyCellProps, BodyRow, CellValue, TableBodyProps, TableHeadCellProps, TableSearchProps, TableSearchType, TableItemType } from './type'; import Table from './Table.svelte'; import TableBody from './TableBody.svelte'; import TableBodyCell from './TableBodyCell.svelte'; import TableBodyRow from './TableBodyRow.svelte'; import TableHeadCell from './TableHeadCell.svelte'; import TableHead from './TableHead.svelte'; import TableSearch from './TableSearch.svelte'; import { table, tablebodyrow, tablehead, tablebodycell, tableheadcell } from './theme'; export { Table, table, TableBody, TableBodyCell, tablebodycell, TableBodyRow, tablebodyrow, TableHeadCell, tableheadcell, TableHead, tablehead, TableSearch, type TableProps, type TableCtxType, type TableHeadProps, type HeadItemType, type TableColrType, type TableBodyRowProps, type TableBodyCellProps, type BodyRow, type CellValue, type TableBodyProps, type TableHeadCellProps, type TableSearchProps, type TableSearchType, type TableItemType };