@superdoc-dev/react 1.0.0-next.8 → 1.0.0-next.9

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -112,6 +112,8 @@ export declare type SuperDocEditorUpdateEvent = Parameters<NonNullable<SuperDocC
112
112
  /** Event passed to onException callback */
113
113
  export declare interface SuperDocExceptionEvent {
114
114
  error: Error;
115
+ editor?: Editor | null;
116
+ code?: string;
115
117
  }
116
118
 
117
119
  /** SuperDoc instance type - from superdoc package */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdoc-dev/react",
3
- "version": "1.0.0-next.8",
3
+ "version": "1.0.0-next.9",
4
4
  "description": "Official React wrapper for the SuperDoc document editor",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",