@praxisui/dialog 1.0.0-beta.61 → 1.0.0-beta.62

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 +9 -4
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -43,12 +43,17 @@ last_updated: "2026-03-07"
43
43
 
44
44
  > Unified dialog for Praxis built on Angular CDK. Provides a service API (MatDialog-like) and a tag mode (`<praxis-dialog>`) with theming, CSS-only animations, accessibility and metadata integration.
45
45
 
46
- ## 🔰 Exemplos / Quickstart
46
+ ## Documentation
47
47
 
48
- Para ver esta biblioteca em funcionamento em uma aplicação completa, utilize o projeto de exemplo (Quickstart):
48
+ - Official documentation: https://praxisui.dev
49
+ - Quickstart reference app: https://github.com/codexrodrigues/praxis-ui-quickstart
50
+ - Recommended for: Angular hosts that need an accessible overlay/dialog API aligned with Praxis theming and metadata workflows
49
51
 
50
- - Repositório: https://github.com/codexrodrigues/praxis-ui-quickstart
51
- - O Quickstart demonstra a integração das bibliotecas `@praxisui/*` em um app Angular, incluindo instalação, configuração e uso em telas reais.
52
+ ## When to use
53
+
54
+ - Open confirms, modals and side interactions with a consistent service API
55
+ - Keep dialog behavior aligned with host theming, accessibility and metadata contracts
56
+ - Replace ad hoc overlay implementations with a governed Praxis pattern
52
57
 
53
58
  ## Install
54
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dialog",
3
- "version": "1.0.0-beta.61",
3
+ "version": "1.0.0-beta.62",
4
4
  "description": "Dialog helpers and components for Praxis UI with Angular Material integration.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
@@ -19,7 +19,7 @@
19
19
  "type": "git",
20
20
  "url": "https://github.com/codexrodrigues/praxis-ui-angular"
21
21
  },
22
- "homepage": "https://github.com/codexrodrigues/praxis-ui-angular#readme",
22
+ "homepage": "https://praxisui.dev",
23
23
  "bugs": {
24
24
  "url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
25
25
  },
@@ -28,7 +28,8 @@
28
28
  "praxisui",
29
29
  "dialog",
30
30
  "material",
31
- "ui"
31
+ "overlay",
32
+ "modal"
32
33
  ],
33
34
  "sideEffects": false,
34
35
  "module": "fesm2022/praxisui-dialog.mjs",