@praxisui/crud 9.0.4-rc.29 → 9.0.4-rc.30

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-08-05T00:54:29.592Z",
3
+ "generatedAt": "2026-08-05T01:36:08.693Z",
4
4
  "packageName": "@praxisui/crud",
5
- "packageVersion": "9.0.4-rc.29",
5
+ "packageVersion": "9.0.4-rc.30",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 2,
@@ -156,8 +156,9 @@ class CrudLauncherService {
156
156
  contextIdentity,
157
157
  };
158
158
  if (mode === 'drawer' && runtime?.surfaceRuntime?.push) {
159
+ const frameId = this.buildSurfaceFrameId(actionForLaunch);
159
160
  const frameRef = await runtime.surfaceRuntime.push({
160
- id: this.buildSurfaceFrameId(actionForLaunch),
161
+ id: frameId,
161
162
  title: this.resolveSurfaceFrameTitle(actionForLaunch, merged.metadata),
162
163
  titleIcon: stringOrUndefined$1(actionForLaunch['icon']),
163
164
  subtitle: this.resolveSurfaceFrameSubtitle(actionForLaunch, merged.metadata),
@@ -166,10 +167,11 @@ class CrudLauncherService {
166
167
  inputs: { data: dialogData },
167
168
  },
168
169
  });
169
- if (frameRef) {
170
- this.bindSurfaceFrameLifecycle(frameRef, drawerCallbacks);
171
- return { mode };
170
+ if (!frameRef) {
171
+ throw new Error(`Active surface session rejected nested CRUD frame "${frameId}".`);
172
172
  }
173
+ this.bindSurfaceFrameLifecycle(frameRef, drawerCallbacks);
174
+ return { mode };
173
175
  }
174
176
  if (mode === 'drawer' && this.drawerAdapter) {
175
177
  await Promise.resolve(this.drawerAdapter.open({
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@praxisui/crud",
3
- "version": "9.0.4-rc.29",
3
+ "version": "9.0.4-rc.30",
4
4
  "description": "CRUD building blocks for Praxis UI: integrates dynamic forms and tables with unified configuration and services.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
- "@praxisui/dynamic-form": "^9.0.4-rc.29",
9
- "@praxisui/table": "^9.0.4-rc.29",
10
- "@praxisui/core": "^9.0.4-rc.29",
11
- "@praxisui/dynamic-fields": "^9.0.4-rc.29",
12
- "@praxisui/settings-panel": "^9.0.4-rc.29",
8
+ "@praxisui/dynamic-form": "^9.0.4-rc.30",
9
+ "@praxisui/table": "^9.0.4-rc.30",
10
+ "@praxisui/core": "^9.0.4-rc.30",
11
+ "@praxisui/dynamic-fields": "^9.0.4-rc.30",
12
+ "@praxisui/settings-panel": "^9.0.4-rc.30",
13
13
  "@angular/cdk": "^21.0.0",
14
14
  "@angular/forms": "^21.0.0",
15
15
  "@angular/material": "^21.0.0",
16
16
  "@angular/router": "^21.0.0",
17
- "@praxisui/ai": "^9.0.4-rc.29",
17
+ "@praxisui/ai": "^9.0.4-rc.30",
18
18
  "rxjs": "~7.8.0"
19
19
  },
20
20
  "dependencies": {