@praxisui/visual-builder 3.0.0-beta.9 → 4.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.
- package/fesm2022/praxisui-visual-builder.mjs +4080 -3922
- package/index.d.ts +6 -3
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -2978,8 +2978,9 @@ declare class FieldConditionEditorComponent implements OnInit, OnChanges {
|
|
|
2978
2978
|
static ɵcmp: i0.ɵɵComponentDeclaration<FieldConditionEditorComponent, "praxis-field-condition-editor", never, { "config": { "alias": "config"; "required": false; }; "fieldSchemas": { "alias": "fieldSchemas"; "required": false; }; }, { "configChanged": "configChanged"; }, never, never, true, never>;
|
|
2979
2979
|
}
|
|
2980
2980
|
|
|
2981
|
-
declare class ConditionalValidatorEditorComponent implements OnInit, OnChanges {
|
|
2981
|
+
declare class ConditionalValidatorEditorComponent implements OnInit, OnChanges, OnDestroy {
|
|
2982
2982
|
private fb;
|
|
2983
|
+
private readonly i18n?;
|
|
2983
2984
|
config: ConditionalValidatorConfig | null;
|
|
2984
2985
|
fieldSchemas: Record<string, FieldSchema>;
|
|
2985
2986
|
configChanged: EventEmitter<ConditionalValidatorConfig>;
|
|
@@ -2998,7 +2999,7 @@ declare class ConditionalValidatorEditorComponent implements OnInit, OnChanges {
|
|
|
2998
2999
|
icon: string;
|
|
2999
3000
|
}>;
|
|
3000
3001
|
get showDisabledMessage(): boolean;
|
|
3001
|
-
constructor(fb: FormBuilder);
|
|
3002
|
+
constructor(fb: FormBuilder, i18n?: PraxisI18nService | undefined);
|
|
3002
3003
|
ngOnInit(): void;
|
|
3003
3004
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3004
3005
|
ngOnDestroy(): void;
|
|
@@ -3028,7 +3029,9 @@ declare class ConditionalValidatorEditorComponent implements OnInit, OnChanges {
|
|
|
3028
3029
|
private isConditionIncomplete;
|
|
3029
3030
|
private mapRuleTypeToValidatorType;
|
|
3030
3031
|
private mapValidatorTypeToRuleType;
|
|
3031
|
-
|
|
3032
|
+
private refreshValidatorTypeLabels;
|
|
3033
|
+
t(key: string, fallback: string): string;
|
|
3034
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConditionalValidatorEditorComponent, [null, { optional: true; }]>;
|
|
3032
3035
|
static ɵcmp: i0.ɵɵComponentDeclaration<ConditionalValidatorEditorComponent, "praxis-conditional-validator-editor", never, { "config": { "alias": "config"; "required": false; }; "fieldSchemas": { "alias": "fieldSchemas"; "required": false; }; }, { "configChanged": "configChanged"; }, never, never, true, never>;
|
|
3033
3036
|
}
|
|
3034
3037
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/visual-builder",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-beta.0",
|
|
4
4
|
"description": "Visual rule and expression builder for Praxis UI with mini-DSL support, validation and context variables.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"@angular/cdk": "^20.0.0",
|
|
9
9
|
"@angular/material": "^20.0.0",
|
|
10
10
|
"@angular/forms": "^20.0.0",
|
|
11
|
-
"@praxisui/specification-core": "^
|
|
12
|
-
"@praxisui/specification": "^
|
|
13
|
-
"@praxisui/settings-panel": "^
|
|
11
|
+
"@praxisui/specification-core": "^4.0.0-beta.0",
|
|
12
|
+
"@praxisui/specification": "^4.0.0-beta.0",
|
|
13
|
+
"@praxisui/settings-panel": "^4.0.0-beta.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"tslib": "^2.3.0",
|