aloha-vue 1.0.61 → 1.0.62

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.61",
4
+ "version": "1.0.62",
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"
@@ -72,6 +72,11 @@ export default {
72
72
  required: false,
73
73
  default: "h2",
74
74
  },
75
+ labelClass: {
76
+ type: [String, Object],
77
+ required: false,
78
+ default: undefined,
79
+ },
75
80
  limitsPerPage: {
76
81
  type: Array,
77
82
  required: false,
@@ -482,6 +487,7 @@ export default {
482
487
  countAllRows: this.countAllRowsLocal,
483
488
  label: this.label,
484
489
  labelTag: this.labelTag,
490
+ labelClass: this.labelClass,
485
491
  tableActions: this.tableActions,
486
492
  multipleActions: this.multipleActions,
487
493
  isQuickSearch: this.isQuickSearch,
@@ -30,6 +30,11 @@ export default {
30
30
  type: String,
31
31
  required: true,
32
32
  },
33
+ labelClass: {
34
+ type: [String, Object],
35
+ required: false,
36
+ default: undefined,
37
+ },
33
38
  tableActions: {
34
39
  type: Array,
35
40
  required: true,
@@ -109,7 +114,7 @@ export default {
109
114
  countAllRows: this.countAllRows,
110
115
  }) :
111
116
  h(this.labelTag, {
112
- class: "a_table__top_panel__label",
117
+ class: ["a_table__top_panel__label", this.labelClass],
113
118
  }, [
114
119
  h("span", {
115
120
  class: "a_table__top_panel__label__text",
@@ -149,6 +149,7 @@
149
149
  .a_table__th__dropdown__ul {
150
150
  list-style: none;
151
151
  margin: 0;
152
+ padding: 0;
152
153
  }
153
154
  .a_table__th__dropdown__ul_dragstart .a_table__th__dropdown__li > * {
154
155
  pointer-events: none;