aloha-vue 1.2.24 → 1.2.25

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/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "Vue.js"
15
15
  ],
16
16
  "homepage": "https://github.com/ilia-brykin/aloha/#README.md",
17
- "version": "1.2.24",
17
+ "version": "1.2.25",
18
18
  "author": {
19
19
  "name": "Ilia Brykin",
20
20
  "email": "brykin.ilia@gmail.com"
@@ -3,6 +3,8 @@ import {
3
3
  resolveComponent,
4
4
  } from "vue";
5
5
 
6
+ import ATranslation from "../../ATranslation/ATranslation";
7
+
6
8
  import DataAPI from "./compostionAPI/DataAPI";
7
9
  import ComponentAPI from "./compostionAPI/ComponentAPI";
8
10
  import ChangeModelAPI from "./compostionAPI/ChangeModelAPI";
@@ -173,9 +175,11 @@ export default {
173
175
  class: "a_fieldset",
174
176
  style: styleWithSearch,
175
177
  }, [
176
- h("legend", {
178
+ h(ATranslation, {
179
+ tag: "legend",
177
180
  class: "a_legend",
178
- }, group.groupLabel),
181
+ html: group.groupLabel,
182
+ }),
179
183
  !!(this.dataGrouped[group.allGroupKeys] || []).length && h("div", {
180
184
  class: {
181
185
  a_btn_group: this.isButtonGroup,