aloha-vue 1.0.76 → 1.0.78

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aloha-vue",
3
3
  "description": "Project aloha",
4
- "version": "1.0.76",
4
+ "version": "1.0.78",
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"
@@ -114,7 +114,7 @@ export default {
114
114
  return h("div", {
115
115
  class: "a_table__top_panel",
116
116
  }, [
117
- !this.isLabelVisible ?
117
+ this.isLabelVisible ?
118
118
  this.$slots.tableLabel ? this.$slots.tableLabel({
119
119
  countAllRows: this.countAllRows,
120
120
  }) :
@@ -97,6 +97,11 @@ export default {
97
97
  }
98
98
  inputRef.value.value = value;
99
99
  }
100
+ if (type.value === "number") {
101
+ if (value !== "") {
102
+ value = +value;
103
+ }
104
+ }
100
105
  changeModel({
101
106
  model: value,
102
107
  });