tekivex-ui 3.20.0 → 3.20.1
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 +33 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,6 +31,39 @@ npm install tekivex-ui
|
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
34
|
+
## The 14-package ecosystem at a glance
|
|
35
|
+
|
|
36
|
+
`tekivex-ui` is the main library, but the ecosystem ships 14 npm
|
|
37
|
+
packages total. **You typically need 1–3 of them, not 14.** Map below
|
|
38
|
+
groups by *the question that makes you install each one*. Full
|
|
39
|
+
reference: [ui.tekivex.com/ecosystem](https://ui.tekivex.com/ecosystem/).
|
|
40
|
+
|
|
41
|
+
| If you're building… | `npm install` |
|
|
42
|
+
|---|---|
|
|
43
|
+
| A React UI (most people start here) | `tekivex-ui` |
|
|
44
|
+
| A new React app from scratch | `npm create tekivex-app@latest my-app` |
|
|
45
|
+
| A node / edge service that needs the security primitives | `tekivex-security-core` |
|
|
46
|
+
| CI a11y + security audit step | `npx tekivex-audit .` |
|
|
47
|
+
| An Indian KYC form (Aadhaar / PAN / Voter ID / DL / INR / Tithi) | `tekivex-ui tekivex-india` |
|
|
48
|
+
| An address form with Country → State → District dropdowns | `tekivex-ui tekivex-india-admin` |
|
|
49
|
+
| A fintech / banking product | `tekivex-ui tekivex-finance` |
|
|
50
|
+
| A CMS / blog editor / document tool | `tekivex-ui tekivex-content` |
|
|
51
|
+
| In-browser PDF generation (no Puppeteer) | `tekivex-pdf` |
|
|
52
|
+
| Ready-made PDF templates (Invoice / Resume / Certificate / Biodata) | `tekivex-pdf tekivex-templates` |
|
|
53
|
+
| 3D / 360° / VR / AR in React | `tekivex-ui tekivex-3d` (peer dep: `three`) |
|
|
54
|
+
| Figma token + variant catalog for design handoff | `tekivex-figma-kit` |
|
|
55
|
+
| Copy ONE component's source into your existing app (shadcn-style) | `npx tekivex-add <component>` |
|
|
56
|
+
| Form primitives only (without the rest of `tekivex-ui`) | `tekivex-form` (already in `tekivex-ui`; install only if you're NOT using `tekivex-ui`) |
|
|
57
|
+
|
|
58
|
+
Why so many packages? **Independent versioning, smaller bundles,
|
|
59
|
+
opt-in peer deps.** A consumer wanting `tekivex-pdf` shouldn't have to
|
|
60
|
+
pull `three.js`. A consumer wanting `tekivex-india-admin` shouldn't
|
|
61
|
+
wait for a `tekivex-ui` release when LGD data refreshes. Each package
|
|
62
|
+
versions and ships on its own clock; this README always reflects the
|
|
63
|
+
current install matrix.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
34
67
|
## Project status — read before adopting
|
|
35
68
|
|
|
36
69
|
TekiVex UI is **pre-1.0** and currently maintained by a single developer
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tekivex-ui",
|
|
3
|
-
"version": "3.20.
|
|
3
|
+
"version": "3.20.1",
|
|
4
4
|
"description": "Production-grade React component library — 116 components (plus 4 experimental, opt-in), WCAG 2.1 AAA, WAI-ARIA 1.2, built-in security kernel with published threat model, built-in charts, headless primitives, zero-runtime CSS engine, 44-locale i18n, Indian KYC pack, agent runtime (Anthropic/OpenAI/Gemini/Ollama/MCP/A2A), TypeScript-first.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|