aloha-vue 1.0.112 → 1.0.113

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/docs/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@popperjs/core": "2.11.6",
15
- "aloha-css": "1.0.53",
15
+ "aloha-css": "1.0.59",
16
16
  "fecha": "^4.2.3",
17
17
  "lodash-es": "^4.17.21",
18
18
  "tiny-emitter": "2.1.0",
package/docs/src/main.js CHANGED
@@ -12,10 +12,10 @@ import en from "./i18n/en.json";
12
12
  import hr from "./i18n/hr.json";
13
13
  import ru from "./i18n/ru.json";
14
14
 
15
- import deGlobal from "../src/i18n/de.json";
16
- import enGlobal from "../src/i18n/en.json";
17
- import hrGlobal from "../src/i18n/hr.json";
18
- import ruGlobal from "../src/i18n/ru.json";
15
+ import deGlobal from "../../src/i18n/de.json";
16
+ import enGlobal from "../../src/i18n/en.json";
17
+ import hrGlobal from "../../src/i18n/hr.json";
18
+ import ruGlobal from "../../src/i18n/ru.json";
19
19
 
20
20
  const APP = createApp(App);
21
21
  const TRANSLATIONS = {
@@ -25,7 +25,7 @@ export default {
25
25
  class: "a_justify_content_end",
26
26
  },
27
27
  {
28
- label: "Aloha frei",
28
+ label: "Aloha frei dsfdsfdsf sdfdsfdsfdsfsd",
29
29
  id: "aloha1",
30
30
  path: "aloha",
31
31
  sortId: "aloha",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aloha-vue",
3
3
  "description": "Project aloha",
4
- "version": "1.0.112",
4
+ "version": "1.0.113",
5
5
  "author": "Ilia Brykin",
6
6
  "scripts": {
7
7
  "build-icons": "node scriptsNode/iconsSvgToJs.js bootstrap3 && node scriptsNode/iconsSvgToJs.js bootstrap-1-9-1"
@@ -42,15 +42,15 @@ export default {
42
42
  default: "border",
43
43
  },
44
44
  size: {
45
- type: String,
45
+ type: [String, Number],
46
46
  required: false,
47
- default: "1",
48
- validator: size => ["1", "2", "3", "4", "5", "6"].indexOf(size) !== -1,
47
+ default: 6,
48
+ validator: size => ["1", "2", "3", "4", "5", "6", "7"].indexOf(`${ size }`) !== -1,
49
49
  },
50
50
  },
51
51
  computed: {
52
52
  classAlign() {
53
- return `text-${ this.align }`;
53
+ return `a_text_${ this.align }`;
54
54
  },
55
55
 
56
56
  classForBox() {
@@ -58,7 +58,7 @@ export default {
58
58
  },
59
59
 
60
60
  classTextSize() {
61
- return `fs-${ this.size }`;
61
+ return `a_fs_${ this.size }`;
62
62
  },
63
63
 
64
64
  boxChildren() {
@@ -75,6 +75,7 @@ export default {
75
75
 
76
76
  boxTextLeft() {
77
77
  return h(ATranslation, {
78
+ tag: "span",
78
79
  class: ["a_cloak__text a_cloak__text_left", this.classTextSize],
79
80
  text: this.text,
80
81
  extra: this.extraTranslate,
@@ -83,6 +84,7 @@ export default {
83
84
 
84
85
  boxTextRight() {
85
86
  return h(ATranslation, {
87
+ tag: "span",
86
88
  class: ["a_cloak__text a_cloak__text_right", this.classTextSize],
87
89
  text: this.text,
88
90
  extra: this.extraTranslate,
@@ -235,7 +235,7 @@ export default {
235
235
  class: "a_dropdown__item_text a_table__th__dropdown_item a_text_nowrap",
236
236
  }, [
237
237
  h("div", {
238
- class: "a_table__th__dropdown_item__child",
238
+ class: "a_table__th__dropdown_item__child a_text_wrap",
239
239
  }, [
240
240
  h(this.tagIconParent, this.attributesIconParent, [
241
241
  h(AIcon, {
@@ -81,7 +81,7 @@ export default {
81
81
  }, [
82
82
  this.isColumnsScrollInvisibleDropdownVisible && h(ADropdown, {
83
83
  buttonClass: "a_btn a_btn_link",
84
- dropdownClass: "a_p_0",
84
+ dropdownClass: "a_p_0 a_overflow_x_hidden",
85
85
  dropdownTag: "div",
86
86
  isCaret: false,
87
87
  placement: "bottom-end",
@@ -98,7 +98,7 @@ export default {
98
98
  ],
99
99
  dropdown: () => [
100
100
  h("dl", {
101
- class: "a_list_dl",
101
+ class: "a_list_dl a_list_dl_dt_right",
102
102
  }, [
103
103
  this.columnsScrollInvisible.map((column, columnIndex) => {
104
104
  return h(ATableListItem, {
@@ -148,6 +148,7 @@
148
148
  position: relative;
149
149
  flex-grow: 1;
150
150
  padding-right: 25px;
151
+ display: flex;
151
152
  }
152
153
  .a_table__th__dropdown_item__btn_arrow {
153
154
  position: absolute;
@@ -9,3 +9,4 @@
9
9
  @import "components/ATable";
10
10
  @import "components/ATabs";
11
11
  @import "components/AMenu";
12
+ @import "components/ACloak";