@praxisui/expansion 8.0.0-beta.99 → 9.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.
Files changed (2) hide show
  1. package/README.md +19 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -42,8 +42,9 @@ last_updated: "2026-03-07"
42
42
 
43
43
  ## Documentation
44
44
 
45
- - Official documentation: https://praxisui.dev
45
+ - Official documentation: https://praxisui.dev/components/expansion
46
46
  - Quickstart reference app: https://github.com/codexrodrigues/praxis-ui-quickstart
47
+ - Live Praxis UI demo: https://praxis-ui-4e602.web.app
47
48
  - Recommended for: accordion and panel layouts driven by metadata with editor integration
48
49
 
49
50
  ## When to use
@@ -56,6 +57,23 @@ Widget baseado em Angular Material (MatAccordion/MatExpansionPanel) com configur
56
57
 
57
58
  ## Instalação e Providers
58
59
 
60
+ ```bash
61
+ npm i @praxisui/expansion@beta
62
+ ```
63
+
64
+ Peer dependencies:
65
+ - `@angular/core` `^21.0.0`
66
+ - `@angular/common` `^21.0.0`
67
+ - `@angular/forms` `^21.0.0`
68
+ - `@angular/router` `^21.0.0`
69
+ - `@angular/cdk` `^21.0.0`
70
+ - `@angular/material` `^21.0.0`
71
+ - `@praxisui/core` `^9.0.0-beta.0`
72
+ - `@praxisui/dynamic-fields` `^9.0.0-beta.0`
73
+ - `@praxisui/settings-panel` `^9.0.0-beta.0`
74
+ - `@praxisui/ai` `^9.0.0-beta.0`
75
+ - `rxjs` `~7.8.0`
76
+
59
77
  - Registrar o metadata do componente:
60
78
 
61
79
  ```ts
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@praxisui/expansion",
3
- "version": "8.0.0-beta.99",
3
+ "version": "9.0.0-beta.0",
4
4
  "description": "Expansion panel (accordion) components for Praxis UI with metadata configuration and editor integration.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
8
  "@angular/material": "^21.0.0",
9
9
  "@angular/cdk": "^21.0.0",
10
- "@praxisui/core": "^8.0.0-beta.99",
11
- "@praxisui/dynamic-fields": "^8.0.0-beta.99",
12
- "@praxisui/settings-panel": "^8.0.0-beta.99",
10
+ "@praxisui/core": "^9.0.0-beta.0",
11
+ "@praxisui/dynamic-fields": "^9.0.0-beta.0",
12
+ "@praxisui/settings-panel": "^9.0.0-beta.0",
13
13
  "@angular/forms": "^21.0.0",
14
14
  "@angular/router": "^21.0.0",
15
- "@praxisui/ai": "^8.0.0-beta.99",
15
+ "@praxisui/ai": "^9.0.0-beta.0",
16
16
  "rxjs": "~7.8.0"
17
17
  },
18
18
  "dependencies": {