@praxisui/core 9.0.0-beta.61 → 9.0.0-beta.62
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-09T14:19:11.232Z",
|
|
4
4
|
"packageName": "@praxisui/core",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.62",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 4,
|
|
@@ -14089,6 +14089,8 @@ class RelatedResourceSurfaceResolverService {
|
|
|
14089
14089
|
...(payload.widget.inputs || {}),
|
|
14090
14090
|
configPersistenceStrategy: 'volatile',
|
|
14091
14091
|
resourcePath: this.normalizeResourcePath(relatedResource.childResourcePath),
|
|
14092
|
+
apiEndpointKey: request.apiEndpointKey ?? null,
|
|
14093
|
+
apiUrlEntry: request.apiUrlEntry ?? null,
|
|
14092
14094
|
tableId: request.tableId || this.buildStableTableId(surface, relatedResource, parentResourceId),
|
|
14093
14095
|
config: this.buildTableConfig(request.tableConfig, request.emptyState),
|
|
14094
14096
|
queryContext,
|
|
@@ -14872,12 +14874,12 @@ class SurfaceOpenMaterializerService {
|
|
|
14872
14874
|
return String(surface?.['path'] || '').trim();
|
|
14873
14875
|
}
|
|
14874
14876
|
normalizeResourcePath(value) {
|
|
14875
|
-
|
|
14877
|
+
let raw = String(value || '').trim();
|
|
14876
14878
|
if (!raw)
|
|
14877
14879
|
return '';
|
|
14878
14880
|
if (/^https?:\/\//i.test(raw)) {
|
|
14879
14881
|
try {
|
|
14880
|
-
|
|
14882
|
+
raw = decodeURIComponent(new URL(raw).pathname);
|
|
14881
14883
|
}
|
|
14882
14884
|
catch {
|
|
14883
14885
|
return '';
|
|
@@ -37520,6 +37522,8 @@ class PraxisRelatedResourceOutletComponent {
|
|
|
37520
37522
|
tableConfig: this.tableConfig(),
|
|
37521
37523
|
emptyState: this.emptyState(),
|
|
37522
37524
|
queryContext: this.queryContext(),
|
|
37525
|
+
apiEndpointKey: this.apiEndpointKey(),
|
|
37526
|
+
apiUrlEntry: this.apiUrlEntry(),
|
|
37523
37527
|
});
|
|
37524
37528
|
}, ...(ngDevMode ? [{ debugName: "resolution" }] : /* istanbul ignore next */ []));
|
|
37525
37529
|
renderResolution = computed(() => {
|
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.62",
|
|
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",
|
package/types/praxisui-core.d.ts
CHANGED
|
@@ -9726,6 +9726,8 @@ interface RelatedResourceSurfaceResolverRequest {
|
|
|
9726
9726
|
tableConfig?: Record<string, unknown> | null;
|
|
9727
9727
|
emptyState?: Record<string, unknown> | null;
|
|
9728
9728
|
queryContext?: RelatedResourceQueryContext | null;
|
|
9729
|
+
apiEndpointKey?: ApiEndpoint | null;
|
|
9730
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
9729
9731
|
}
|
|
9730
9732
|
interface RelatedResourceSurfaceResolution {
|
|
9731
9733
|
state: RelatedResourceResolutionState;
|