@superdoc/react 2.0.1 → 2.1.0-next.2
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.
- package/dist/index.d.ts +1 -1
- 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.0.
|
|
3
|
+
"version": "2.1.0-next.2",
|
|
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.
|
|
30
|
+
"superdoc": "2.6.0-next.3"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=16.8.0",
|
|
34
34
|
"react-dom": ">=16.8.0",
|
|
35
|
-
"superdoc": "2.
|
|
35
|
+
"superdoc": "2.6.0-next.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@testing-library/react": "^16.3.0",
|