npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@weasyprint-tsx/ui

v0.1.13

Published

Print-optimized Preact components for [weasyprint-tsx](../../README.md) documents.

Readme

@weasyprint-tsx/ui

Print-optimized Preact components for weasyprint-tsx documents.

import { H1, H2, Page, UL, LI, Table, Entry, BlockBox, Block } from "@weasyprint-tsx/ui";

Page layout

Page

Wraps a page section. Maps to a <section> element.

<Page page="cover">
  <H1>My Document</H1>
</Page>

| Prop | Type | Description | |------|------|-------------| | page | string | Value for the CSS page property (named page rule) |


PageBreak

Forces a page break at the current position.

<PageBreak />

No props.


Headings

H1H6

Render <h1><h6> with optional marker and color overrides. Headings participate in CSS counters for automatic numbering if you set them up in your stylesheet.

<H1>Title</H1>
<H2 color="#1e40af" fontSize="14pt">Section</H2>
<H3 marker="§">Subsection</H3>

| Prop | Type | Description | |------|------|-------------| | marker | string | Sets data-marker attribute (used by CSS ::before counter content) | | color | string | Inline text color | | fontSize | string | Inline font size | | ...rest | ComponentProps<"h1"> etc. | All standard HTML heading attributes |


Title

Generic heading that accepts a type prop.

<Title type="h2" color="red">Dynamic heading</Title>

| Prop | Type | Description | |------|------|-------------| | type | "h1" | "h2" | … | "h6" | Which heading element to render |


ResetCounter

Renders a hidden <div> that resets CSS counters. Use at the start of a section when you want numbered headings to restart.

<ResetCounter />

No props.


Lists

UL

Unordered list. Children should be <LI> elements.

<UL marker="→">
  <LI>Item one</LI>
  <LI>Item two</LI>
</UL>

| Prop | Type | Default | Description | |------|------|---------|-------------| | marker | string | "•" | Bullet character | | gap | string \| number | — | Gap between items | | pre | ComponentChildren | — | Content rendered before the list (e.g. a label) |


OL

Ordered list. Children should be <LI> elements.

<OL counterType="lower-roman" markerPost=".">
  <LI>First</LI>
  <LI>Second</LI>
</OL>

| Prop | Type | Default | Description | |------|------|---------|-------------| | start | number | 1 | Starting counter value | | counterType | "decimal" | "lower-alpha" | "upper-alpha" | "lower-roman" | "upper-roman" | "decimal" | Counter style | | markerPre | string | — | String prepended to the counter (e.g. "(") | | markerPost | string | "." | String appended to the counter | | gap | string \| number | — | Gap between items | | pre | ComponentChildren | — | Content rendered before the list |


LI

List item, used inside UL or OL.

<LI>Plain item</LI>
<LI marker="★">Custom marker</LI>

| Prop | Type | Description | |------|------|-------------| | marker | string | Override the list's default marker for this item | | count | number | Override the displayed counter value (OL only) |


Table

Table

Renders an HTML table. Children must be <Entry> components.

<Table orientation="col" headerBg="#1e40af" borderColor="#cbd5e1">
  <Entry content={["Alice", "Engineer", "Berlin"]} />
  <Entry content={["Bob", "Designer", "Paris"]} />
</Table>

| Prop | Type | Default | Description | |------|------|---------|-------------| | orientation | "col" | "row" | "col" | "col": first Entry is the header row. "row": first cell of each Entry is the row header. | | headerBg | string | — | Background color for header cells | | cellBg | string | — | Background color for data cells | | headerFontSize | string | — | Font size for header cells | | cellFontSize | string | — | Font size for data cells | | borderWidth | string | "1px" | Border width | | borderColor | string | "#000" | Border color | | contentClass | string | — | Extra class applied to all data cells | | headerClass | string | — | Extra class applied to all header cells |


Entry

Data row or column for Table. Renders nullTable reads its props directly.

<Entry content={["Name", "Role", "Location"]} headerBg="#e2e8f0" />

| Prop | Type | Description | |------|------|-------------| | content | ComponentChild[] | Array of cell values | | contentClass | string | Extra class for this Entry's data cells | | headerBg | string | Override header background for this Entry | | cellBg | string | Override cell background for this Entry | | headerFontSize | string | Override header font size | | cellFontSize | string | Override cell font size |


BlockBox / Block

Two-component system for multi-column / ratio-based layouts.

BlockBox

Container. Lays out <Block> children side by side.

<BlockBox gap="1cm" basis={50}>
  <Block ratio={2}>Wide column</Block>
  <Block ratio={1}>Narrow column</Block>
</BlockBox>

| Prop | Type | Default | Description | |------|------|---------|-------------| | gap | string | "0" | Gap between blocks | | basis | number | 100 | Flex basis percentage for equal-width fallback | | centered | boolean | false | Center block contents horizontally | | align | "top" | "middle" | "bottom" | "top" | Vertical alignment of blocks |

Block

A single column inside BlockBox.

| Prop | Type | Description | |------|------|-------------| | ratio | number | Relative width ratio compared to siblings | | centered | boolean | Center this block's content | | align | "top" | "middle" | "bottom" | Vertical alignment override |


DotLine

A repeating dot pattern, useful for fill lines in tables of contents or forms.

<DotLine width="100%" />
<DotLine inline num={3} color="#94a3b8" />

| Prop | Type | Default | Description | |------|------|---------|-------------| | num | number | 1 | Number of dot-line rows | | width | number \| string | "100%" | Width of the dot line | | inline | boolean | false | Render as inline element | | color | string | — | Dot color | | lineHeight | string | — | Line height of each dot row |


CodeBlock

Syntax-highlighted code block using highlight.js.

<CodeBlock language="typescript" code={`const x: number = 42;`} />

| Prop | Type | Description | |------|------|-------------| | language | string | highlight.js language identifier (e.g. "typescript", "python", "bash") | | code | string | Source code string |

Renders with break-inside: avoid to prevent page breaks mid-block.


Equation

LaTeX equation rendering via KaTeX.

<Equation tex="E = mc^2" displayMode />
<Equation tex="\ce{H2O}" chemical />
<Equation tex="x &= a + b \\ y &= c + d" aligned displayMode />

| Prop | Type | Default | Description | |------|------|---------|-------------| | tex | string | — | LaTeX source | | displayMode | boolean | false | Render as block-level equation | | aligned | boolean | false | Wrap in \begin{aligned}…\end{aligned} | | chemical | boolean | false | Wrap in \ce{…} for chemical notation |


Chart

Renders a chart.js chart server-side as a base64-encoded PNG <img>.

Chart

import type { ChartConfiguration } from "chart.js";
import { Chart } from "@weasyprint-tsx/ui";

const config: ChartConfiguration = {
  type: "bar",
  data: {
    labels: ["Jan", "Feb", "Mar"],
    datasets: [{ label: "Sales", data: [12, 8, 21] }],
  },
};

<Chart config={config} width={600} height={300} />

| Prop | Type | Default | Description | |------|------|---------|-------------| | config | ChartConfiguration | — | chart.js configuration object | | width | number | 800 | Canvas width in pixels | | height | number | 500 | Canvas height in pixels | | ...rest | Omit<ComponentProps<"img">, "src"> | — | All standard <img> attributes except src |


chartFunction

Samples a numeric function into a data array for chart datasets. Produces sample + 1 values evaluated at n * step for n in 0..sample.

chartFunction(func, options?)

| Param | Type | Default | Description | |-------|------|---------|-------------| | func | (n: number) => number | — | Function to sample | | options.step | number | 1 | Multiplier applied to the index before calling func | | options.sample | number | 100 | Number of intervals (yields sample + 1 points) |

import { Chart, chartFunction } from "@weasyprint-tsx/ui";

<Chart config={{
  type: "line",
  data: {
    labels: chartFunction(n => n, { step: 0.1 }),
    datasets: [{ label: "sin(x)", data: chartFunction(Math.sin, { step: 0.1 }) }],
  },
}} />

labelFunction

Same as chartFunction but the sampling function may return a number or string. Use to generate axis labels.

labelFunction(func, options?)

| Param | Type | Default | Description | |-------|------|---------|-------------| | func | (n: number) => number \| string | — | Function to sample | | options.step | number | 1 | Multiplier applied to the index | | options.sample | number | 100 | Number of intervals (yields sample + 1 values) |