@praxisui/core 9.0.0-beta.68 → 9.0.0-beta.69

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-10T12:18:12.398Z",
3
+ "generatedAt": "2026-07-10T17:26:58.705Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.0-beta.68",
5
+ "packageVersion": "9.0.0-beta.69",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 4,
@@ -2943,7 +2943,21 @@ class SchemaNormalizerService {
2943
2943
  field.resourcePath = ui.resourcePath;
2944
2944
  }
2945
2945
  if (ui.optionSource !== undefined) {
2946
- field.optionSource = this.parseOptionSource(ui.optionSource);
2946
+ const optionSource = this.parseOptionSource(ui.optionSource);
2947
+ if (optionSource) {
2948
+ // Java metadata publishes cascade context beside optionSource. Keep the
2949
+ // runtime contract canonical by materializing it inside optionSource.
2950
+ const dependsOn = this.parseNonBlankStringArray(ui.dependsOn);
2951
+ if (!optionSource.dependsOn?.length && dependsOn.length) {
2952
+ optionSource.dependsOn = dependsOn;
2953
+ }
2954
+ const dependencyFilterMap = this.parseStringRecord(ui.dependencyFilterMap);
2955
+ if (!optionSource.dependencyFilterMap &&
2956
+ dependencyFilterMap) {
2957
+ optionSource.dependencyFilterMap = dependencyFilterMap;
2958
+ }
2959
+ field.optionSource = optionSource;
2960
+ }
2947
2961
  }
2948
2962
  if (ui.valueField !== undefined) {
2949
2963
  field.valueField = ui.valueField;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.0-beta.68",
3
+ "version": "9.0.0-beta.69",
4
4
  "description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",