dochub-sdk 0.1.85 → 0.1.87

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.
@@ -21,7 +21,9 @@ export enum EditorEvents {
21
21
  /**
22
22
  * События контекста редактора
23
23
  */
24
+ contextAppend = '$edit-context-append', // Контекст добавлен
24
25
  contextUpdated = '$edit-context-updated', // Контекст претерпел изменения
26
+ contextRemoved = '$edit-context-removed', // Контекст удален
25
27
  /**
26
28
  * События редактора
27
29
  */
@@ -45,6 +47,7 @@ export enum DocHubEditorType {
45
47
  */
46
48
  export type DocHubEditorFileContext = {
47
49
  type: DocHubEditorType.file,
50
+ title?: string;
48
51
  meta: IDocHubFileEditorContext
49
52
  }
50
53
 
@@ -53,6 +56,7 @@ export type DocHubEditorFileContext = {
53
56
  */
54
57
  export type DocHubEditorObjectContext = {
55
58
  type: DocHubEditorType.object,
59
+ title?: string;
56
60
  meta: IDocHubObjectEditorContext
57
61
  }
58
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.85",
3
+ "version": "0.1.87",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",