@praxisui/core 8.0.0-beta.62 → 8.0.0-beta.63

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.
@@ -12034,7 +12034,8 @@ class SurfaceOpenMaterializerService {
12034
12034
  }
12035
12035
  shouldMaterializeItemReadProjection(payload) {
12036
12036
  const surface = payload.context?.['surface'];
12037
- return (surface?.['kind'] === 'READ_PROJECTION' &&
12037
+ const kind = String(surface?.['kind'] || '').toUpperCase();
12038
+ return ((kind === 'READ_PROJECTION' || kind === 'VIEW') &&
12038
12039
  surface?.['scope'] === 'ITEM' &&
12039
12040
  String(surface?.['method'] || '').toUpperCase() === 'GET');
12040
12041
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "8.0.0-beta.62",
3
+ "version": "8.0.0-beta.63",
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",