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
package/src/ATable/ATable.js
CHANGED
|
@@ -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",
|