@superdoc/react 2.1.0 → 2.1.1-next.1

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 +1 -1
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -113,7 +113,7 @@ export declare type SuperDocContentErrorEvent = Parameters<NonNullable<SuperDocC
113
113
  /**
114
114
  * SuperDocEditor component with forwardRef - Initializes SuperDoc instance and handles cleanup.
115
115
  */
116
- declare const SuperDocEditor: ForwardRefExoticComponent<SuperDocEditorProps & RefAttributes<SuperDocRef>>;
116
+ declare const SuperDocEditor: ForwardRefExoticComponent<Omit<SuperDocEditorProps, "ref"> & RefAttributes<SuperDocRef>>;
117
117
  export { SuperDocEditor }
118
118
  export default SuperDocEditor;
119
119
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdoc/react",
3
- "version": "2.1.0",
3
+ "version": "2.1.1-next.1",
4
4
  "description": "Official React wrapper for the SuperDoc document editor",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -27,12 +27,12 @@
27
27
  ],
28
28
  "license": "AGPL-3.0",
29
29
  "dependencies": {
30
- "superdoc": "2.6.0"
30
+ "superdoc": "2.6.1-next.1"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "react": ">=16.8.0",
34
34
  "react-dom": ">=16.8.0",
35
- "superdoc": "2.6.0"
35
+ "superdoc": "2.6.1-next.1"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@testing-library/react": "^16.3.0",