@claspo/editor 1.0.0 → 1.0.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.
- package/README.md +11 -1
- package/package.json +2 -1
- package/src/types.d.ts +1439 -0
package/README.md
CHANGED
|
@@ -28,4 +28,14 @@ const config: EditorConfigI = {
|
|
|
28
28
|
|
|
29
29
|
## Peer Dependencies
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
| Package | Version | Required |
|
|
32
|
+
|---------|---------|----------|
|
|
33
|
+
| `rxjs` | >= 6.0.0 | Optional - only if using Observable-based API methods |
|
|
34
|
+
| `@claspo/common` | 6.0.0 | Yes |
|
|
35
|
+
| `@claspo/document-connector` | 15.0.0 | Yes |
|
|
36
|
+
|
|
37
|
+
Install peer dependencies:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm install rxjs @claspo/common@6.0.0 @claspo/document-connector@15.0.0
|
|
41
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claspo/editor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "TypeScript type definitions for ClaspoEditor",
|
|
5
5
|
"types": "src/types.d.ts",
|
|
6
6
|
"files": ["src"],
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"generate-reexports": "echo 'DO NOT CALL IT, WILL REWRITE editor-config.interface.ts' && node scripts/generate-esng-reexports.js"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
+
"dts-bundle-generator": "^9.5.1",
|
|
16
17
|
"typedoc": "^0.28.0",
|
|
17
18
|
"typedoc-plugin-markdown": "^4.4.1"
|
|
18
19
|
},
|