@dashadmin/dash-dialog 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 +30 -0
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# @dashadmin/dash-dialog
|
|
2
|
+
|
|
3
|
+
> Dialog components for Dash (AppDialog and friends).
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Reusable dialog primitives such as `AppDialog` used for confirmations and modal content.
|
|
8
|
+
|
|
9
|
+
## Key exports & features
|
|
10
|
+
|
|
11
|
+
- `AppDialog` component
|
|
12
|
+
- Composable dialog primitives
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# From the public npm registry
|
|
18
|
+
npm install @dashadmin/dash-dialog
|
|
19
|
+
|
|
20
|
+
# Or the local Verdaccio registry (unscoped)
|
|
21
|
+
npm install dash-dialog --registry http://localhost:4873
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Development & publishing
|
|
25
|
+
|
|
26
|
+
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.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
_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-dialog",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.29",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"eslint-config-airbnb": "latest",
|
|
65
65
|
"eslint-config-airbnb-typescript": "latest",
|
|
66
66
|
"eslint-config-prettier": "latest",
|
|
67
|
+
"@dashadmin/dash-eslint": "workspace:*",
|
|
67
68
|
"eslint-import-resolver-typescript": "latest",
|
|
68
69
|
"eslint-plugin-html": "latest",
|
|
69
70
|
"eslint-plugin-import": "latest",
|
|
@@ -73,6 +74,7 @@
|
|
|
73
74
|
"eslint-plugin-prettier": "latest",
|
|
74
75
|
"eslint-plugin-react": "latest",
|
|
75
76
|
"eslint-plugin-react-hooks": "latest",
|
|
77
|
+
"@dashadmin/dash-prettier": "workspace:*",
|
|
76
78
|
"query-string": "latest",
|
|
77
79
|
"react-dom": "latest",
|
|
78
80
|
"rollup": "latest",
|
|
@@ -84,18 +86,15 @@
|
|
|
84
86
|
"rollup-plugin-postcss": "latest",
|
|
85
87
|
"rollup-plugin-sourcemaps": "latest",
|
|
86
88
|
"rollup-plugin-typescript2": "latest",
|
|
89
|
+
"@dashadmin/dash-tsconfig": "workspace:*",
|
|
87
90
|
"tsc": "latest",
|
|
88
91
|
"tsc-alias": "latest",
|
|
89
92
|
"ttypescript": "latest",
|
|
90
|
-
"typescript": "latest"
|
|
91
|
-
"@dashadmin/dash-eslint": "workspace:*",
|
|
92
|
-
"@dashadmin/dash-prettier": "workspace:*",
|
|
93
|
-
"@dashadmin/dash-tsconfig": "workspace:*"
|
|
93
|
+
"typescript": "latest"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
96
|
"react": "latest",
|
|
97
|
-
"react-
|
|
98
|
-
"react-custom-scrollbars-2": "latest",
|
|
97
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
99
98
|
"react-dom": "latest"
|
|
100
99
|
},
|
|
101
100
|
"eslintConfig": {
|