@praxisui/visual-builder 8.0.0-beta.98 → 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 +10 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -25,7 +25,7 @@ Visual rule builder for Praxis UI with JSON Logic as the canonical contract, con
25
25
  ## Installation
26
26
 
27
27
  ```bash
28
- npm install @praxisui/visual-builder
28
+ npm install @praxisui/visual-builder@beta
29
29
  ```
30
30
 
31
31
  ## Quick Start
@@ -33,9 +33,12 @@ npm install @praxisui/visual-builder
33
33
  ### Context Variable Management
34
34
 
35
35
  ```typescript
36
+ import { Component } from '@angular/core';
36
37
  import { ContextVariableManagerComponent } from '@praxisui/visual-builder';
37
38
 
38
39
  @Component({
40
+ standalone: true,
41
+ imports: [ContextVariableManagerComponent],
39
42
  template: `
40
43
  <praxis-context-variable-manager
41
44
  [(contextVariables)]="contextVariables"
@@ -52,9 +55,12 @@ export class VariableManagementComponent {
52
55
  ### Visual Rule Editor
53
56
 
54
57
  ```typescript
58
+ import { Component } from '@angular/core';
55
59
  import { RuleEditorComponent } from '@praxisui/visual-builder';
56
60
 
57
61
  @Component({
62
+ standalone: true,
63
+ imports: [RuleEditorComponent],
58
64
  template: `
59
65
  <praxis-rule-editor
60
66
  [config]="builderConfig"
@@ -79,9 +85,12 @@ export class EmbeddedRuleEditor {
79
85
  Use condition mode when a host owns the action/effect contract and only needs a visual JSON Logic expression.
80
86
 
81
87
  ```typescript
88
+ import { Component } from '@angular/core';
82
89
  import { PraxisVisualBuilder } from '@praxisui/visual-builder';
83
90
 
84
91
  @Component({
92
+ standalone: true,
93
+ imports: [PraxisVisualBuilder],
85
94
  template: `
86
95
  <praxis-visual-builder
87
96
  mode="condition"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/visual-builder",
3
- "version": "8.0.0-beta.98",
3
+ "version": "9.0.0-beta.0",
4
4
  "description": "Visual rule and expression builder for Praxis UI with JSON Logic authoring, validation and context variables.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
@@ -8,11 +8,11 @@
8
8
  "@angular/cdk": "^21.0.0",
9
9
  "@angular/material": "^21.0.0",
10
10
  "@angular/forms": "^21.0.0",
11
- "@praxisui/settings-panel": "^8.0.0-beta.98",
11
+ "@praxisui/settings-panel": "^9.0.0-beta.0",
12
12
  "@angular/platform-browser-dynamic": "^21.0.0",
13
- "@praxisui/ai": "^8.0.0-beta.98",
14
- "@praxisui/core": "^8.0.0-beta.98",
15
- "@praxisui/metadata-editor": "^8.0.0-beta.98",
13
+ "@praxisui/ai": "^9.0.0-beta.0",
14
+ "@praxisui/core": "^9.0.0-beta.0",
15
+ "@praxisui/metadata-editor": "^9.0.0-beta.0",
16
16
  "rxjs": "~7.8.0"
17
17
  },
18
18
  "dependencies": {