SVG Table Type Reference(Solid.js)
This page provides a comprehensive reference for all the types used in the SVG Table library for Solid. Click on a type name to jump to its description.
Table of Contents
- ElementType
- TableProps
- RowProps
- RowPropsAsObj
- RowPropsWithoutCells
- RowPropsWithChildren
- CellProps
- CellPropsAsObj
- CellPropsWithoutContent
- CellPropsWithChildren
- CellStyle
- ContentProps
- TableInCellProps
- RetFromContentFunc
- ContentAsFunc
- TablePropsWithoutRows
- TablePropsWithChildren
- SVGRenderElement
Type Definitions
-
ElementType
type ElementType = Node;
Represents the basic element type used in the SVG Table library for Solid.
-
TableProps
Properties for defining a table, including dimensions, rows, and optional styling.
-
RowProps
type RowProps = TableProps['rows'][number];
Properties for defining a row within a table, including cells and optional styling.
- RowPropsAsObj
- RowPropsWithoutCells
- RowPropsWithChildren
-
CellProps
type CellProps = RowPropsAsObj['cells'][number];
Properties for defining a cell within a table, including content and optional styling.
- CellPropsAsObj
- CellPropsWithoutContent
- CellPropsWithChildren
- CellStyle
-
ContentProps
type ContentProps = CellPropsAsObj['content'];
- TableInCellProps
- RetFromContentFunc
- ContentAsFunc
- TablePropsWithoutRows
- TablePropsWithChildren
- SVGRenderElement