@praxisui/dynamic-form 3.0.0-beta.2 → 3.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/index.d.ts
CHANGED
|
@@ -1146,6 +1146,9 @@ declare class PraxisFilterForm implements OnChanges, OnDestroy {
|
|
|
1146
1146
|
submit: EventEmitter<{
|
|
1147
1147
|
formData: Record<string, any>;
|
|
1148
1148
|
}>;
|
|
1149
|
+
requestSearch: EventEmitter<{
|
|
1150
|
+
formData: Record<string, any>;
|
|
1151
|
+
}>;
|
|
1149
1152
|
validityChange: EventEmitter<boolean>;
|
|
1150
1153
|
form: FormGroup<Record<string, any>>;
|
|
1151
1154
|
private valueChangesSub?;
|
|
@@ -1161,7 +1164,7 @@ declare class PraxisFilterForm implements OnChanges, OnDestroy {
|
|
|
1161
1164
|
trackByRow(i: number, _row: FormRow): string;
|
|
1162
1165
|
trackByColumn(i: number, col: FormColumn): string;
|
|
1163
1166
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisFilterForm, never>;
|
|
1164
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisFilterForm, "praxis-filter-form", never, { "config": { "alias": "config"; "required": true; }; "formId": { "alias": "formId"; "required": false; }; "resourcePath": { "alias": "resourcePath"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, { "formReady": "formReady"; "valueChange": "valueChange"; "submit": "submit"; "validityChange": "validityChange"; }, never, never, true, never>;
|
|
1167
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisFilterForm, "praxis-filter-form", never, { "config": { "alias": "config"; "required": true; }; "formId": { "alias": "formId"; "required": false; }; "resourcePath": { "alias": "resourcePath"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, { "formReady": "formReady"; "valueChange": "valueChange"; "submit": "submit"; "requestSearch": "requestSearch"; "validityChange": "validityChange"; }, never, never, true, never>;
|
|
1165
1168
|
}
|
|
1166
1169
|
|
|
1167
1170
|
/** Tokens for theme colors used across the layout editor. */
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-form",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.4",
|
|
4
4
|
"description": "Angular dynamic form engine for Praxis UI: metadata-driven forms, hooks, and services integrating @praxisui/* packages.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
8
|
"@angular/cdk": "^20.0.0",
|
|
9
|
-
"@praxisui/settings-panel": "^3.0.0-beta.
|
|
10
|
-
"@praxisui/visual-builder": "^3.0.0-beta.
|
|
11
|
-
"@praxisui/specification-core": "^3.0.0-beta.
|
|
12
|
-
"@praxisui/specification": "^3.0.0-beta.
|
|
13
|
-
"@praxisui/core": "^3.0.0-beta.
|
|
14
|
-
"@praxisui/cron-builder": "^3.0.0-beta.
|
|
9
|
+
"@praxisui/settings-panel": "^3.0.0-beta.4",
|
|
10
|
+
"@praxisui/visual-builder": "^3.0.0-beta.4",
|
|
11
|
+
"@praxisui/specification-core": "^3.0.0-beta.4",
|
|
12
|
+
"@praxisui/specification": "^3.0.0-beta.4",
|
|
13
|
+
"@praxisui/core": "^3.0.0-beta.4",
|
|
14
|
+
"@praxisui/cron-builder": "^3.0.0-beta.4"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.3.0",
|