@praxisui/visual-builder 9.0.0-beta.1 → 9.0.0-beta.10
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 +15 -30
- package/fesm2022/praxisui-visual-builder.mjs +261 -233
- package/package.json +6 -13
- package/types/praxisui-visual-builder.d.ts +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/visual-builder",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.10",
|
|
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": "^9.0.0-beta.
|
|
11
|
+
"@praxisui/settings-panel": "^9.0.0-beta.10",
|
|
12
12
|
"@angular/platform-browser-dynamic": "^21.0.0",
|
|
13
|
-
"@praxisui/ai": "^9.0.0-beta.
|
|
14
|
-
"@praxisui/core": "^9.0.0-beta.
|
|
15
|
-
"@praxisui/metadata-editor": "^9.0.0-beta.
|
|
13
|
+
"@praxisui/ai": "^9.0.0-beta.10",
|
|
14
|
+
"@praxisui/core": "^9.0.0-beta.10",
|
|
15
|
+
"@praxisui/metadata-editor": "^9.0.0-beta.10",
|
|
16
16
|
"rxjs": "~7.8.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
@@ -23,14 +23,7 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "https://github.com/codexrodrigues/praxis-ui-angular"
|
|
29
|
-
},
|
|
30
|
-
"homepage": "https://praxisui.dev",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
|
|
33
|
-
},
|
|
26
|
+
"homepage": "https://praxisui.dev/docs/components",
|
|
34
27
|
"keywords": [
|
|
35
28
|
"angular",
|
|
36
29
|
"praxisui",
|
|
@@ -1272,8 +1272,8 @@ declare class RuleBuilderService {
|
|
|
1272
1272
|
private isPropertyRuleNode;
|
|
1273
1273
|
private containsPropertyRule;
|
|
1274
1274
|
/**
|
|
1275
|
-
*
|
|
1276
|
-
* focando em
|
|
1275
|
+
* Constrói um array de FormLayoutRule a partir do estado atual do builder,
|
|
1276
|
+
* focando em nós propertyRule ou nós com propriedades/targets definidos.
|
|
1277
1277
|
*/
|
|
1278
1278
|
private exportFormRulesFromState;
|
|
1279
1279
|
private toFormLayoutRule;
|
|
@@ -1297,6 +1297,7 @@ declare class RuleBuilderService {
|
|
|
1297
1297
|
private builderOperatorToJsonLogicOperator;
|
|
1298
1298
|
private jsonLogicOperatorToBuilderOperator;
|
|
1299
1299
|
private normalizeConditionValue;
|
|
1300
|
+
private buildConditionRightOperand;
|
|
1300
1301
|
private isJsonLogicExpressionCandidate;
|
|
1301
1302
|
private isVarExpression;
|
|
1302
1303
|
private extractVarPath;
|
|
@@ -2454,6 +2455,7 @@ declare class FieldConditionEditorComponent implements OnInit, OnChanges {
|
|
|
2454
2455
|
private normalizeFieldName;
|
|
2455
2456
|
private resolveFieldSchema;
|
|
2456
2457
|
private normalizeOperatorForForm;
|
|
2458
|
+
private normalizeValueTypeForVisualEditor;
|
|
2457
2459
|
getFieldIcon(type: string): string;
|
|
2458
2460
|
getOperatorLabel(operator: string): string;
|
|
2459
2461
|
getValuePlaceholder(): string;
|