@praxisui/core 8.0.0-beta.51 → 8.0.0-beta.52
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.
- package/package.json +1 -1
- package/types/praxisui-core.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/core",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.52",
|
|
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
|
@@ -11803,11 +11803,12 @@ interface RecordRelatedSurfaceContext {
|
|
|
11803
11803
|
operationId: RecordRelatedSurfaceOperationId;
|
|
11804
11804
|
source: RecordRelatedSurfaceEndpoint;
|
|
11805
11805
|
target: RecordRelatedSurfaceEndpoint;
|
|
11806
|
+
resourceSurface?: ResourceSurfaceCatalogItem;
|
|
11806
11807
|
statePath?: string;
|
|
11807
11808
|
description?: string | null;
|
|
11808
11809
|
}
|
|
11809
11810
|
interface RecordRelatedSurfaceContextPack {
|
|
11810
|
-
source: 'dynamic-page-composition';
|
|
11811
|
+
source: 'dynamic-page-composition' | 'resource-capabilities' | 'mixed';
|
|
11811
11812
|
surfaces: RecordRelatedSurfaceContext[];
|
|
11812
11813
|
}
|
|
11813
11814
|
|