@maykonpaulo/maestro-admin 0.1.0 → 0.1.1-next.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 +2 -0
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @maykonpaulo/maestro-admin
|
|
2
2
|
|
|
3
|
+
> 📖 **[Guia completo — criar o admin de qualquer sistema com o Maestro](https://github.com/maykonpaulo/maestro/blob/main/docs/guia-criar-admin.md)** — passo a passo, do zero ao admin no ar, para qualquer banco.
|
|
4
|
+
|
|
3
5
|
The **generic, metadata-driven admin UI** for Maestro, per [ADR 0008 — Camada Turnkey](../../docs/adr/0008-turnkey-server-and-admin-ui.md).
|
|
4
6
|
|
|
5
7
|
Point it at a running [`@maykonpaulo/maestro-server`](../server) and it reads `GET /metadata` and **auto-builds the whole admin**: a navigation sidebar, a list table, a detail view and create/update forms **for every entity/collection** — no per-entity code. It respects each entity's `capabilities` (a read-only collection shows no New/Edit/Delete) and the server's RBAC (a 403 surfaces as an error, never a broken screen).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maykonpaulo/maestro-admin",
|
|
3
|
-
"version": "0.1.0",
|
|
3
|
+
"version": "0.1.1-next.0",
|
|
4
4
|
"description": "Generic, metadata-driven admin UI for @maykonpaulo/maestro-core (via @maykonpaulo/maestro-server). Reads GET /metadata and auto-builds navigation, tables, detail views and create/update forms for every entity/collection — no per-entity code. Ships as a runnable React app and as exported components (ADR 0008).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -46,6 +46,12 @@
|
|
|
46
46
|
"vite": "^6.0.0",
|
|
47
47
|
"vitest": "^2.0.0"
|
|
48
48
|
},
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "https://github.com/maykonpaulo/maestro.git",
|
|
52
|
+
"directory": "packages/admin"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/maykonpaulo/maestro#readme",
|
|
49
55
|
"scripts": {
|
|
50
56
|
"dev": "vite",
|
|
51
57
|
"build": "tsup",
|