aloha-vue 1.0.205 → 1.0.207
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
|
@@ -192,11 +192,12 @@ export default {
|
|
|
192
192
|
class: [
|
|
193
193
|
"a_table__cell__child",
|
|
194
194
|
this.column.class,
|
|
195
|
+
this.column.classHeader,
|
|
195
196
|
],
|
|
196
197
|
}, [
|
|
197
198
|
h(this.componentLocal, this.attributesForButton, [
|
|
198
199
|
h(ATranslation, {
|
|
199
|
-
|
|
200
|
+
html: this.column.label,
|
|
200
201
|
tag: "span",
|
|
201
202
|
}),
|
|
202
203
|
h("span", {
|
|
@@ -177,6 +177,7 @@ export default {
|
|
|
177
177
|
class: [
|
|
178
178
|
"a_table__cell__child",
|
|
179
179
|
this.column.class,
|
|
180
|
+
this.column.classRow,
|
|
180
181
|
],
|
|
181
182
|
}, (this.isSlot && this.$slots[this.slot]) ?
|
|
182
183
|
this.$slots[this.slot]({
|
|
@@ -189,7 +190,11 @@ export default {
|
|
|
189
190
|
(this.isLink && this.toLocal) ?
|
|
190
191
|
[
|
|
191
192
|
h(resolveComponent("RouterLink"), {
|
|
192
|
-
class: [
|
|
193
|
+
class: [
|
|
194
|
+
this.column.class,
|
|
195
|
+
this.classForLink,
|
|
196
|
+
this.column.classRow,
|
|
197
|
+
],
|
|
193
198
|
to: this.toLocal,
|
|
194
199
|
}, () => [
|
|
195
200
|
withDirectives(h("span"), [
|