@praxisui/crud 9.0.0-beta.53 → 9.0.0-beta.54
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-07-08T21:
|
|
3
|
+
"generatedAt": "2026-07-08T21:38:45.010Z",
|
|
4
4
|
"packageName": "@praxisui/crud",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.54",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 2,
|
|
@@ -5009,6 +5009,7 @@ class DynamicFormDialogHostComponent {
|
|
|
5009
5009
|
layoutPolicy;
|
|
5010
5010
|
formConfig = {};
|
|
5011
5011
|
formActions;
|
|
5012
|
+
formConfigPersistenceStrategy = 'input-first';
|
|
5012
5013
|
mode = 'create';
|
|
5013
5014
|
backConfig;
|
|
5014
5015
|
idField = 'id';
|
|
@@ -5380,6 +5381,7 @@ class DynamicFormDialogHostComponent {
|
|
|
5380
5381
|
[submitMethod]="submitMethod"
|
|
5381
5382
|
[apiEndpointKey]="apiEndpointKey"
|
|
5382
5383
|
[apiUrlEntry]="apiUrlEntry"
|
|
5384
|
+
[configPersistenceStrategy]="formConfigPersistenceStrategy"
|
|
5383
5385
|
[layoutPolicy]="layoutPolicy"
|
|
5384
5386
|
[presentationModeGlobal]="mode === 'view' ? true : null"
|
|
5385
5387
|
[backConfig]="backConfig"
|
|
@@ -5446,6 +5448,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
5446
5448
|
[submitMethod]="submitMethod"
|
|
5447
5449
|
[apiEndpointKey]="apiEndpointKey"
|
|
5448
5450
|
[apiUrlEntry]="apiUrlEntry"
|
|
5451
|
+
[configPersistenceStrategy]="formConfigPersistenceStrategy"
|
|
5449
5452
|
[layoutPolicy]="layoutPolicy"
|
|
5450
5453
|
[presentationModeGlobal]="mode === 'view' ? true : null"
|
|
5451
5454
|
[backConfig]="backConfig"
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/crud",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.54",
|
|
4
4
|
"description": "CRUD building blocks for Praxis UI: integrates dynamic forms and tables with unified configuration and services.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
|
-
"@praxisui/dynamic-form": "^9.0.0-beta.
|
|
9
|
-
"@praxisui/table": "^9.0.0-beta.
|
|
10
|
-
"@praxisui/core": "^9.0.0-beta.
|
|
11
|
-
"@praxisui/dynamic-fields": "^9.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^9.0.0-beta.
|
|
8
|
+
"@praxisui/dynamic-form": "^9.0.0-beta.54",
|
|
9
|
+
"@praxisui/table": "^9.0.0-beta.54",
|
|
10
|
+
"@praxisui/core": "^9.0.0-beta.54",
|
|
11
|
+
"@praxisui/dynamic-fields": "^9.0.0-beta.54",
|
|
12
|
+
"@praxisui/settings-panel": "^9.0.0-beta.54",
|
|
13
13
|
"@angular/cdk": "^21.0.0",
|
|
14
14
|
"@angular/forms": "^21.0.0",
|
|
15
15
|
"@angular/material": "^21.0.0",
|
|
16
16
|
"@angular/router": "^21.0.0",
|
|
17
|
-
"@praxisui/ai": "^9.0.0-beta.
|
|
17
|
+
"@praxisui/ai": "^9.0.0-beta.54",
|
|
18
18
|
"rxjs": "~7.8.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
package/types/praxisui-crud.d.ts
CHANGED
|
@@ -373,6 +373,7 @@ declare class DynamicFormDialogHostComponent implements OnInit {
|
|
|
373
373
|
layoutPolicy?: DynamicFormLayoutPolicy | null;
|
|
374
374
|
formConfig: FormConfig;
|
|
375
375
|
formActions?: FormConfig['actions'];
|
|
376
|
+
readonly formConfigPersistenceStrategy = "input-first";
|
|
376
377
|
mode: 'create' | 'edit' | 'view';
|
|
377
378
|
backConfig?: BackConfig;
|
|
378
379
|
private idField;
|