@praxisui/core 9.0.0-beta.34 → 9.0.0-beta.35
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-03T17:45:06.072Z",
|
|
4
4
|
"packageName": "@praxisui/core",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.35",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 3,
|
|
@@ -6572,15 +6572,17 @@ function resolveRendererFromFieldPresentation(def) {
|
|
|
6572
6572
|
}
|
|
6573
6573
|
if (presenter === 'iconvalue') {
|
|
6574
6574
|
const rendererIcon = icon || firstNonEmptyString(def.icon);
|
|
6575
|
-
|
|
6575
|
+
const affixes = resolveSemanticPresentationAffixes(presentation);
|
|
6576
|
+
const hasAffixes = !!(affixes.prefix || affixes.suffix);
|
|
6577
|
+
if (!rendererIcon && !hasAffixes)
|
|
6576
6578
|
return undefined;
|
|
6577
6579
|
return {
|
|
6578
6580
|
type: 'icon',
|
|
6579
6581
|
icon: {
|
|
6580
|
-
name: rendererIcon,
|
|
6582
|
+
...(rendererIcon && !hasAffixes ? { name: rendererIcon } : {}),
|
|
6581
6583
|
textField: def.name,
|
|
6582
6584
|
...(tooltipText ? { ariaLabel: tooltipText } : {}),
|
|
6583
|
-
...
|
|
6585
|
+
...affixes,
|
|
6584
6586
|
},
|
|
6585
6587
|
};
|
|
6586
6588
|
}
|
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.35",
|
|
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",
|