dochub-sdk 0.1.58 → 0.1.60

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.
@@ -1,3 +1,15 @@
1
+ /**
2
+ * Режим функционирования
3
+ */
4
+ export enum DocHubEditMode {
5
+ editWeb = 'edit-web',
6
+ editIDE = 'edit-ide',
7
+ view = 'view'
8
+ }
9
+
10
+ /**
11
+ * События, которые должен обрабатывать редактор
12
+ */
1
13
  export enum EditorEvents {
2
14
  close = '$close', // Требует закрыть редактор
3
15
  save = '$save', // Требует произвести сохранение
package/interfaces/ui.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { IDocHubUIComponent } from './uicomponents';
2
+ import { }
2
3
 
3
4
  export enum DocHubUISlot {
4
5
  avatar = 'avatar',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.58",
3
+ "version": "0.1.60",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",