@praxisui/core 9.0.0-beta.82 → 9.0.0-beta.83

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-20T13:31:18.568Z",
3
+ "generatedAt": "2026-07-20T14:11:58.169Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.0-beta.82",
5
+ "packageVersion": "9.0.0-beta.83",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 4,
@@ -10752,11 +10752,15 @@ function normalizeOptionSource(optionSource) {
10752
10752
  if (!optionSource?.key) {
10753
10753
  return undefined;
10754
10754
  }
10755
- const dependsOn = Array.isArray(optionSource.dependsOn)
10756
- ? optionSource.dependsOn
10757
- .map((value) => (typeof value === 'string' ? value.trim() : ''))
10758
- .filter((value, index, values) => value.length > 0 && values.indexOf(value) === index)
10759
- : undefined;
10755
+ const rawDependsOnValue = optionSource.dependsOn;
10756
+ const rawDependsOn = Array.isArray(rawDependsOnValue)
10757
+ ? rawDependsOnValue
10758
+ : typeof rawDependsOnValue === 'string'
10759
+ ? rawDependsOnValue.split(',')
10760
+ : [];
10761
+ const dependsOn = rawDependsOn
10762
+ .map((value) => (typeof value === 'string' ? value.trim() : ''))
10763
+ .filter((value, index, values) => value.length > 0 && values.indexOf(value) === index);
10760
10764
  const dependencyFilterMap = optionSource.dependencyFilterMap &&
10761
10765
  typeof optionSource.dependencyFilterMap === 'object'
10762
10766
  ? Object.entries(optionSource.dependencyFilterMap)
@@ -10772,7 +10776,7 @@ function normalizeOptionSource(optionSource) {
10772
10776
  const normalized = {
10773
10777
  ...optionSource,
10774
10778
  resourcePath: normalizeEndpoint$1(optionSource.resourcePath),
10775
- dependsOn: dependsOn?.length ? dependsOn : undefined,
10779
+ dependsOn: dependsOn.length ? dependsOn : undefined,
10776
10780
  };
10777
10781
  if (dependencyFilterMap && Object.keys(dependencyFilterMap).length) {
10778
10782
  normalized.dependencyFilterMap = dependencyFilterMap;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.0-beta.82",
3
+ "version": "9.0.0-beta.83",
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",