@praxisui/dialog 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/dialog",
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": 1,
@@ -1301,9 +1301,10 @@ function providePraxisSurfaceGlobalActions() {
1301
1301
  const parentRuntime = resolveParentSurfaceRuntime(context);
1302
1302
  if (typeof parentRuntime?.['push'] === 'function') {
1303
1303
  const frameRef = await parentRuntime['push'](frame);
1304
- if (frameRef) {
1305
- return frameRef;
1304
+ if (!frameRef) {
1305
+ throw new Error(`Active surface session rejected nested drawer frame "${frame.id}".`);
1306
1306
  }
1307
+ return frameRef;
1307
1308
  }
1308
1309
  const ref = surfaceDrawer.open({
1309
1310
  ...frame,
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@praxisui/dialog",
3
- "version": "9.0.4-rc.29",
3
+ "version": "9.0.4-rc.30",
4
4
  "description": "Dialog helpers and components for Praxis UI with Angular Material integration.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
8
  "@angular/cdk": "^21.0.0",
9
9
  "@angular/forms": "^21.0.0",
10
- "@praxisui/core": "^9.0.4-rc.29",
10
+ "@praxisui/core": "^9.0.4-rc.30",
11
11
  "@angular/material": "^21.0.0",
12
12
  "@angular/platform-browser": "^21.0.0",
13
13
  "rxjs": "~7.8.0"