@praxisui/dialog 5.0.0-beta.0 → 7.0.0-beta.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 +11 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -55,6 +55,17 @@ last_updated: "2026-03-07"
|
|
|
55
55
|
- Keep dialog behavior aligned with host theming, accessibility and metadata contracts
|
|
56
56
|
- Replace ad hoc overlay implementations with a governed Praxis pattern
|
|
57
57
|
|
|
58
|
+
The diagram below shows the intended ownership model: the host triggers the dialog service, Praxis Dialog applies presets and accessibility semantics, and the final overlay stays aligned with host theme and policy.
|
|
59
|
+
|
|
60
|
+
```mermaid
|
|
61
|
+
flowchart LR
|
|
62
|
+
host["host component"] --> service["PraxisDialog service"]
|
|
63
|
+
presets["global presets"] --> service
|
|
64
|
+
registry["component/template registry"] --> service
|
|
65
|
+
service --> overlay["accessible overlay runtime"]
|
|
66
|
+
overlay --> result["afterClosed / host action"]
|
|
67
|
+
```
|
|
68
|
+
|
|
58
69
|
## Install
|
|
59
70
|
|
|
60
71
|
```bash
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dialog",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-beta.0",
|
|
4
4
|
"description": "Dialog helpers and components for Praxis UI with Angular Material integration.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
8
|
"@angular/cdk": "^20.0.0",
|
|
9
9
|
"@angular/forms": "^20.0.0",
|
|
10
|
-
"@praxisui/core": "^
|
|
10
|
+
"@praxisui/core": "^7.0.0-beta.0"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"tslib": "^2.3.0"
|