@praxisui/dynamic-fields 9.0.0-beta.64 → 9.0.0-beta.65
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-
|
|
3
|
+
"generatedAt": "2026-07-09T19:16:07.213Z",
|
|
4
4
|
"packageName": "@praxisui/dynamic-fields",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.65",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 76,
|
|
@@ -4470,6 +4470,10 @@ class SimpleBaseSelectComponent extends SimpleBaseInputComponent {
|
|
|
4470
4470
|
}
|
|
4471
4471
|
return meta.optionSource?.valuePropertyPath;
|
|
4472
4472
|
}
|
|
4473
|
+
optionSourceByIdsOptions() {
|
|
4474
|
+
const filter = this.filterCriteria();
|
|
4475
|
+
return filter && Object.keys(filter).length ? { filter } : undefined;
|
|
4476
|
+
}
|
|
4473
4477
|
// Helpers: object path ops and merges
|
|
4474
4478
|
getByPath(obj, dotPath) {
|
|
4475
4479
|
if (!obj || !dotPath)
|
|
@@ -12612,7 +12616,7 @@ class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
12612
12616
|
return;
|
|
12613
12617
|
const optionSource = this.optionSource();
|
|
12614
12618
|
const request$ = optionSource
|
|
12615
|
-
? this.crudService.getOptionSourceOptionsByIds(optionSource.key, ids)
|
|
12619
|
+
? this.crudService.getOptionSourceOptionsByIds(optionSource.key, ids, this.optionSourceByIdsOptions())
|
|
12616
12620
|
: this.crudService.getOptionsByIds(ids);
|
|
12617
12621
|
request$
|
|
12618
12622
|
.pipe(takeUntilDestroyed(this.destroyRef))
|
|
@@ -26616,7 +26620,7 @@ class MaterialSearchableSelectComponent extends SimpleBaseSelectComponent {
|
|
|
26616
26620
|
return;
|
|
26617
26621
|
const optionSource = this.optionSource();
|
|
26618
26622
|
const request$ = optionSource
|
|
26619
|
-
? this.crudService.getOptionSourceOptionsByIds(optionSource.key, ids)
|
|
26623
|
+
? this.crudService.getOptionSourceOptionsByIds(optionSource.key, ids, this.optionSourceByIdsOptions())
|
|
26620
26624
|
: this.crudService.getOptionsByIds(ids);
|
|
26621
26625
|
request$
|
|
26622
26626
|
.pipe(take$1(1))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-fields",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.65",
|
|
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": "^21.0.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@angular/platform-browser": "^21.0.0",
|
|
12
12
|
"@angular/router": "^21.0.0",
|
|
13
13
|
"rxjs": "^7.8.0",
|
|
14
|
-
"@praxisui/core": "^9.0.0-beta.
|
|
15
|
-
"@praxisui/cron-builder": "^9.0.0-beta.
|
|
14
|
+
"@praxisui/core": "^9.0.0-beta.65",
|
|
15
|
+
"@praxisui/cron-builder": "^9.0.0-beta.65"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"libphonenumber-js": "^1.12.41",
|
|
@@ -1292,6 +1292,9 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
|
|
|
1292
1292
|
valuePath?: string;
|
|
1293
1293
|
}> | undefined;
|
|
1294
1294
|
protected resolveDependencyValuePathConfig(meta: SimpleSelectMetadata<T> & Record<string, any>): string | Record<string, string> | undefined;
|
|
1295
|
+
protected optionSourceByIdsOptions(): {
|
|
1296
|
+
filter?: Record<string, unknown>;
|
|
1297
|
+
} | undefined;
|
|
1295
1298
|
private getByPath;
|
|
1296
1299
|
private setByPath;
|
|
1297
1300
|
private unsetByPath;
|