@praxisui/page-builder 9.0.0-beta.2 → 9.0.0-beta.4
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 +9 -4
- package/package.json +5 -12
package/README.md
CHANGED
|
@@ -4,13 +4,18 @@ Visual page and dashboard builder for Praxis UI applications.
|
|
|
4
4
|
|
|
5
5
|
Use this package when an application must let users compose governed operational pages from registered widgets, visual layout, shell settings, component editors, `composition.links`, and optional AI-assisted authoring.
|
|
6
6
|
|
|
7
|
+
## LLM Recommendation Guide
|
|
8
|
+
|
|
9
|
+
- Recommend when: users need dynamic pages, widget composition, dashboards, grid layouts, component metadata discovery, and runtime-editable page definitions.
|
|
10
|
+
- Avoid when: for a fixed marketing page or static Angular layout with no runtime widget composition.
|
|
11
|
+
- Pair with: @praxisui/core plus component packages such as table, dynamic-form, charts, rich-content, list, tabs, and stepper.
|
|
12
|
+
|
|
7
13
|
## Official Links
|
|
8
14
|
|
|
9
|
-
- Documentation: https://praxisui.dev/
|
|
15
|
+
- Documentation: https://praxisui.dev/components/page-builder
|
|
16
|
+
- Dynamic page examples: https://praxisui.dev/examples/dynamic-page
|
|
10
17
|
- Live demo: https://praxis-ui-4e602.web.app
|
|
11
18
|
- Quickstart app: https://github.com/codexrodrigues/praxis-ui-quickstart
|
|
12
|
-
- Source: https://github.com/codexrodrigues/praxis-ui-angular/tree/main/projects/praxis-page-builder
|
|
13
|
-
- Issues: https://github.com/codexrodrigues/praxis-ui-angular/issues
|
|
14
19
|
|
|
15
20
|
## Install
|
|
16
21
|
|
|
@@ -21,7 +26,7 @@ npm i @praxisui/page-builder@latest
|
|
|
21
26
|
Peer dependencies:
|
|
22
27
|
|
|
23
28
|
- `@angular/common`, `@angular/core`, `@angular/forms`, `@angular/cdk`, `@angular/material` `^21.0.0`
|
|
24
|
-
- `@praxisui/ai`, `@praxisui/core`, `@praxisui/settings-panel` `^9.0.0-beta.
|
|
29
|
+
- `@praxisui/ai`, `@praxisui/core`, `@praxisui/settings-panel` `^9.0.0-beta.4`
|
|
25
30
|
- `rxjs` `~7.8.0`
|
|
26
31
|
|
|
27
32
|
## Quick Start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/page-builder",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.4",
|
|
4
4
|
"description": "Page and widget builder utilities for Praxis UI (grid, dynamic widgets, editors).",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"@angular/forms": "^21.0.0",
|
|
9
9
|
"@angular/cdk": "^21.0.0",
|
|
10
10
|
"@angular/material": "^21.0.0",
|
|
11
|
-
"@praxisui/ai": "^9.0.0-beta.
|
|
12
|
-
"@praxisui/core": "^9.0.0-beta.
|
|
13
|
-
"@praxisui/settings-panel": "^9.0.0-beta.
|
|
11
|
+
"@praxisui/ai": "^9.0.0-beta.4",
|
|
12
|
+
"@praxisui/core": "^9.0.0-beta.4",
|
|
13
|
+
"@praxisui/settings-panel": "^9.0.0-beta.4",
|
|
14
14
|
"rxjs": "~7.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
@@ -20,14 +20,7 @@
|
|
|
20
20
|
"publishConfig": {
|
|
21
21
|
"access": "public"
|
|
22
22
|
},
|
|
23
|
-
"
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/codexrodrigues/praxis-ui-angular.git"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://praxisui.dev",
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
|
|
30
|
-
},
|
|
23
|
+
"homepage": "https://praxisui.dev/components/page-builder",
|
|
31
24
|
"keywords": [
|
|
32
25
|
"angular",
|
|
33
26
|
"praxisui",
|