@luminalityai/ui 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -8
- package/dist/index.js +342 -345
- package/dist/styles/index.css +2 -2
- package/dist/test/audit-matrix.stories.d.ts +23 -0
- package/dist/test/audit-matrix.stories.d.ts.map +1 -0
- package/dist/theme.css +174 -0
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -12,12 +12,12 @@ npm install @luminalityai/ui
|
|
|
12
12
|
|
|
13
13
|
### Peer dependencies
|
|
14
14
|
|
|
15
|
-
This package
|
|
15
|
+
This package declares the following peer dependencies (you must supply them):
|
|
16
16
|
|
|
17
|
-
- `react` ^19
|
|
18
|
-
- `react-dom` ^19
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
- `react` ^19
|
|
18
|
+
- `react-dom` ^19
|
|
19
|
+
|
|
20
|
+
Tailwind CSS v4 and `tailwindcss-animate` are bundled as regular dependencies (wired up in the package's stylesheet), so you do not need to install them yourself.
|
|
21
21
|
|
|
22
22
|
## Usage
|
|
23
23
|
|
|
@@ -33,6 +33,9 @@ Import the stylesheet in your CSS:
|
|
|
33
33
|
|
|
34
34
|
## Scripts
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
- `npm run
|
|
36
|
+
See the `scripts` block in [`package.json`](./package.json) for the authoritative list. The most common ones:
|
|
37
|
+
|
|
38
|
+
- `npm run build` — build the package to `dist/` with Vite (`vite build`; types emitted via `vite-plugin-dts`)
|
|
39
|
+
- `npm run check` — type-check without emitting (`tsc --noEmit`)
|
|
40
|
+
- `npm run lint` — run ESLint
|
|
41
|
+
- `npm test` — run the Vitest unit suite
|