lytenyte-grid
Installation
SKILL.md
LyteNyte Grid is a headless React data grid with two editions:
- Core —
@1771technologies/lytenyte-core(Apache 2.0, free, no license required) - PRO —
@1771technologies/lytenyte-pro(commercial, superset of Core)
PRO licensing: PRO can be installed and used freely for evaluation — no license key is needed to try it. A watermark ("used for evaluation") appears when no key is set. A license key is required to remove the watermark for production deployments. License validation is offline; no network request is made. If the user is building/prototyping and hasn't set up a license yet, that is fine — they can add it before shipping.
Quick Start
// or @1771technologies/lytenyte-core if already installed
import { Grid, useClientDataSource } from "@1771technologies/lytenyte-pro";
import "@1771technologies/lytenyte-pro/grid-full.css";
interface GridSpec {
readonly data: { name: string; price: number };
}