dochub-sdk 0.1.172 → 0.1.175

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,11 +10,14 @@ export class DocHubComponentProto extends Vue {
10
10
  */
11
11
  remountLangPackage() {
12
12
  this.lang = DocHub.lang.getConst(this.getLangPackageID());
13
+ this.onLangSwitch();
13
14
  }
14
15
 
15
16
  mounted() {
16
17
  // Монтируем языковой пакет
17
18
  this.remountLangPackage();
19
+ // Подключаем контроль за переключением языка
20
+ DocHub.eventBus.$on(DocHubLangEvents.changeLang, this.remountLangPackage);
18
21
  }
19
22
 
20
23
  destroyed() {
@@ -30,4 +33,9 @@ export class DocHubComponentProto extends Vue {
30
33
  return 'dochub';
31
34
  }
32
35
 
36
+ /**
37
+ * Событие переключения языкового пакета
38
+ */
39
+ onLangSwitch() {}
40
+
33
41
  }
@@ -87,6 +87,13 @@ export class DocHubDocumentProto extends DocHubComponentProto implements IDocHub
87
87
  return {};
88
88
  }
89
89
 
90
+ /**
91
+ * Обрабатываем событие переключения языкового пакета
92
+ */
93
+ onLangSwitch() {
94
+ this.onRefresh();
95
+ }
96
+
90
97
  /**
91
98
  * Для переопределения
92
99
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.172",
3
+ "version": "0.1.175",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",