@praxisui/dynamic-fields 8.0.0-beta.30 → 8.0.0-beta.31
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.
|
@@ -56629,7 +56629,7 @@ function createEntry(input) {
|
|
|
56629
56629
|
friendlyName,
|
|
56630
56630
|
description,
|
|
56631
56631
|
tags: input.tags,
|
|
56632
|
-
|
|
56632
|
+
intentExamples: input.intentExamples ?? input.tags,
|
|
56633
56633
|
valueShape: input.valueShape,
|
|
56634
56634
|
recommendedWhen: input.recommendedWhen,
|
|
56635
56635
|
avoidWhen: input.avoidWhen,
|
|
@@ -57710,7 +57710,7 @@ const DYNAMIC_FIELDS_PLAYGROUND_CATALOG = [
|
|
|
57710
57710
|
track: 'primary-form',
|
|
57711
57711
|
family: 'selection',
|
|
57712
57712
|
tags: ['selection', 'remote', 'lookup', 'entity', 'option-source'],
|
|
57713
|
-
|
|
57713
|
+
intentExamples: ['RESOURCE_ENTITY', 'by-ids', 'selection policy', 'rehydration'],
|
|
57714
57714
|
valueShape: 'entity id | EntityRef',
|
|
57715
57715
|
recommendedWhen: ['business entity identity', 'rehydration by id', 'selection policy', 'dependent lookup'],
|
|
57716
57716
|
avoidWhen: ['simple static option list', 'free text suggestion'],
|
|
@@ -57783,7 +57783,7 @@ const DYNAMIC_FIELDS_PLAYGROUND_CATALOG = [
|
|
|
57783
57783
|
track: 'primary-form',
|
|
57784
57784
|
family: 'trees-lists',
|
|
57785
57785
|
tags: ['collection', 'array', 'repeatable', 'form-array'],
|
|
57786
|
-
|
|
57786
|
+
intentExamples: ['FormArray', 'nested fields', 'repeatable group'],
|
|
57787
57787
|
valueShape: 'Array<Record<string, unknown>>',
|
|
57788
57788
|
recommendedWhen: ['repeatable object list', 'nested metadata-driven fields', 'line items or contacts'],
|
|
57789
57789
|
avoidWhen: ['single object', 'simple multi-select options'],
|
package/index.d.ts
CHANGED
|
@@ -6751,7 +6751,7 @@ interface DynamicFieldCatalogEntry {
|
|
|
6751
6751
|
friendlyName: string;
|
|
6752
6752
|
description: string;
|
|
6753
6753
|
tags: string[];
|
|
6754
|
-
|
|
6754
|
+
intentExamples: string[];
|
|
6755
6755
|
valueShape: string;
|
|
6756
6756
|
recommendedWhen: string[];
|
|
6757
6757
|
avoidWhen: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-fields",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.31",
|
|
4
4
|
"description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.1.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@angular/platform-browser": "^20.1.0",
|
|
12
12
|
"@angular/router": "^20.1.0",
|
|
13
13
|
"rxjs": "^7.8.0",
|
|
14
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
15
|
-
"@praxisui/cron-builder": "^8.0.0-beta.
|
|
14
|
+
"@praxisui/core": "^8.0.0-beta.31",
|
|
15
|
+
"@praxisui/cron-builder": "^8.0.0-beta.31"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"libphonenumber-js": "^1.12.41",
|