@superdoc/react 2.5.0-next.5 → 2.5.0-next.6
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 +9 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ import { CSSProperties } from 'react';
|
|
|
7
7
|
import { ForwardRefExoticComponent } from 'react';
|
|
8
8
|
import { ReactNode } from 'react';
|
|
9
9
|
import { RefAttributes } from 'react';
|
|
10
|
+
import { SearchConfig } from 'superdoc';
|
|
11
|
+
import { SearchFloatingConfig } from 'superdoc';
|
|
12
|
+
import { SearchStrings } from 'superdoc';
|
|
10
13
|
import { SuperDoc } from 'superdoc';
|
|
11
14
|
import { SuperDocExceptionPayload } from 'superdoc';
|
|
12
15
|
import { ToolbarConfig } from 'superdoc';
|
|
@@ -98,6 +101,12 @@ declare interface ReactProps {
|
|
|
98
101
|
style?: CSSProperties;
|
|
99
102
|
}
|
|
100
103
|
|
|
104
|
+
export { SearchConfig }
|
|
105
|
+
|
|
106
|
+
export { SearchFloatingConfig }
|
|
107
|
+
|
|
108
|
+
export { SearchStrings }
|
|
109
|
+
|
|
101
110
|
declare type SuperDocActiveEditor = NonNullable<SuperDocInstance['activeEditor']>;
|
|
102
111
|
|
|
103
112
|
declare type SuperDocActiveEditorDoc = SuperDocActiveEditor extends {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdoc/react",
|
|
3
|
-
"version": "2.5.0-next.
|
|
3
|
+
"version": "2.5.0-next.6",
|
|
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.10.0-next.
|
|
30
|
+
"superdoc": "2.10.0-next.6"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=16.8.0",
|
|
34
34
|
"react-dom": ">=16.8.0",
|
|
35
|
-
"superdoc": "2.10.0-next.
|
|
35
|
+
"superdoc": "2.10.0-next.6"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@testing-library/react": "^16.3.0",
|