@dashadmin/dash-auto-admin 1.3.26 → 1.3.29
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 +32 -6
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -1,9 +1,35 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @dashadmin/dash-auto-admin
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
yarn lint:fix - performs a prettier fix
|
|
5
|
-
yarn lint - perform an eslint check, including prettier rules
|
|
3
|
+
> Schema-driven auto-generation of admin CRUD views.
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
## Overview
|
|
8
6
|
|
|
9
|
-
|
|
7
|
+
Generates List, Create, Edit, Drawer and dynamic Form layouts (groups, tabs) from resource configuration, dramatically reducing hand-written CRUD screens.
|
|
8
|
+
|
|
9
|
+
## Key exports & features
|
|
10
|
+
|
|
11
|
+
- `DashAutoList`, `DashAutoCreate`, `DashAutoEdit`, `DashAutoDrawer`
|
|
12
|
+
- `DashAutoAdminForm` with form groups, tabs and layouts
|
|
13
|
+
- Config-driven fields and validation
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# From the public npm registry
|
|
19
|
+
npm install @dashadmin/dash-auto-admin
|
|
20
|
+
|
|
21
|
+
# Or the local Verdaccio registry (unscoped)
|
|
22
|
+
npm install dash-auto-admin --registry http://localhost:4873
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Internal Dash dependencies
|
|
26
|
+
|
|
27
|
+
`@dashadmin/dash-constants`, `@dashadmin/dash-dialog`
|
|
28
|
+
|
|
29
|
+
## Development & publishing
|
|
30
|
+
|
|
31
|
+
This package is part of the **dash-frontend-core** monorepo. See [`DEVELOPMENT.md`](../../DEVELOPMENT.md) for the source-modification workflow, local Verdaccio publishing, npm publishing and version-bump policy.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
_Part of the [Dash Framework](https://www.npmjs.com/org/dashadmin) · `@dashadmin` scope._
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dashadmin/dash-auto-admin",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.29",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -60,9 +60,11 @@
|
|
|
60
60
|
"@types/react-dom": "latest",
|
|
61
61
|
"@zerollup/ts-transform-paths": "latest",
|
|
62
62
|
"babel-loader": "latest",
|
|
63
|
+
"@dashadmin/dash-tsconfig": "workspace:*",
|
|
63
64
|
"eslint": "latest",
|
|
64
65
|
"eslint-config-airbnb": "latest",
|
|
65
66
|
"eslint-config-airbnb-typescript": "latest",
|
|
67
|
+
"@dashadmin/dash-eslint": "workspace:*",
|
|
66
68
|
"eslint-config-prettier": "latest",
|
|
67
69
|
"eslint-import-resolver-typescript": "latest",
|
|
68
70
|
"eslint-plugin-html": "latest",
|
|
@@ -73,6 +75,7 @@
|
|
|
73
75
|
"eslint-plugin-prettier": "latest",
|
|
74
76
|
"eslint-plugin-react": "latest",
|
|
75
77
|
"eslint-plugin-react-hooks": "latest",
|
|
78
|
+
"@dashadmin/dash-prettier": "workspace:*",
|
|
76
79
|
"react-dom": "latest",
|
|
77
80
|
"rollup": "latest",
|
|
78
81
|
"rollup-plugin-copy-assets": "latest",
|
|
@@ -86,14 +89,10 @@
|
|
|
86
89
|
"tsc": "latest",
|
|
87
90
|
"tsc-alias": "latest",
|
|
88
91
|
"ttypescript": "latest",
|
|
89
|
-
"typescript": "latest"
|
|
90
|
-
"@dashadmin/dash-tsconfig": "workspace:*",
|
|
91
|
-
"@dashadmin/dash-eslint": "workspace:*",
|
|
92
|
-
"@dashadmin/dash-prettier": "workspace:*"
|
|
92
|
+
"typescript": "latest"
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
|
-
"react-
|
|
96
|
-
"react-custom-scrollbars-2": "latest",
|
|
95
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
97
96
|
"react-dom": "latest"
|
|
98
97
|
},
|
|
99
98
|
"eslintConfig": {
|