@praxisui/core 9.0.0-beta.82 → 9.0.0-beta.84
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-20T15:03:50.126Z",
|
|
4
4
|
"packageName": "@praxisui/core",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.84",
|
|
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
|
|
10756
|
-
|
|
10757
|
-
|
|
10758
|
-
|
|
10759
|
-
|
|
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
|
|
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.
|
|
3
|
+
"version": "9.0.0-beta.84",
|
|
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",
|