@dashadmin/dash-app-common 1.3.26 → 1.3.28

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.
Files changed (2) hide show
  1. package/README.md +35 -0
  2. package/package.json +4 -4
package/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # @dashadmin/dash-app-common
2
+
3
+ > Common defaults and building blocks for Dash applications.
4
+
5
+ ## Overview
6
+
7
+ Pre-configured components, extensions, pages, filters and schemas shared across Dash applications so individual apps can start from sensible defaults instead of boilerplate.
8
+
9
+ ## Key exports & features
10
+
11
+ - Default pages & filters
12
+ - Reusable extensions
13
+ - Shared schema definitions
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ # From the public npm registry
19
+ npm install @dashadmin/dash-app-common
20
+
21
+ # Or the local Verdaccio registry (unscoped)
22
+ npm install dash-app-common --registry http://localhost:4873
23
+ ```
24
+
25
+ ## Internal Dash dependencies
26
+
27
+ `@dashadmin/dash-utils`, `@dashadmin/dash-admin`, `@dashadmin/dash-admin-state`, `@dashadmin/dash-components`, `@dashadmin/dash-constants`, `@dashadmin/dash-auth`, `@dashadmin/dash-axios-hook`, `@dashadmin/dash-dialog`, `@dashadmin/dash-auto-admin`
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-app-common",
3
- "version": "1.3.26",
3
+ "version": "1.3.28",
4
4
  "description": "Common defaults and utilities for Dash applications - provides pre-configured components, extensions, pages, filters, and schemas",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -44,11 +44,11 @@
44
44
  "@types/node": "latest",
45
45
  "@types/react": "latest",
46
46
  "@types/react-dom": "latest",
47
- "eslint": "latest",
48
- "typescript": "latest",
49
47
  "@dashadmin/dash-tsconfig": "workspace:*",
50
48
  "@dashadmin/dash-eslint": "workspace:*",
51
- "@dashadmin/dash-prettier": "workspace:*"
49
+ "@dashadmin/dash-prettier": "workspace:*",
50
+ "eslint": "latest",
51
+ "typescript": "latest"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "react": "latest",