aloha-vue 1.2.129 → 1.2.131
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
|
@@ -121,8 +121,6 @@ export default {
|
|
|
121
121
|
h("div", {
|
|
122
122
|
class: [
|
|
123
123
|
"a_table__cell__child",
|
|
124
|
-
this.column.class,
|
|
125
|
-
this.column.classHeader,
|
|
126
124
|
],
|
|
127
125
|
}, [
|
|
128
126
|
this.columnGroupNames && h(ATranslation, {
|
|
@@ -133,6 +131,8 @@ export default {
|
|
|
133
131
|
h(AButton, {
|
|
134
132
|
class: [
|
|
135
133
|
"a_table__th__btn",
|
|
134
|
+
this.column.class,
|
|
135
|
+
this.column.classHeader,
|
|
136
136
|
{
|
|
137
137
|
"a_btn a_btn_link a_table__th__btn_sort": this.isSortable,
|
|
138
138
|
a_table__th__btn_sequence: this.sequenceNumberSort,
|
|
@@ -168,6 +168,15 @@
|
|
|
168
168
|
text-align: inherit;
|
|
169
169
|
display: flex;
|
|
170
170
|
align-items: center;
|
|
171
|
+
&.a_text_right {
|
|
172
|
+
justify-content: flex-end;
|
|
173
|
+
}
|
|
174
|
+
&.a_text_left {
|
|
175
|
+
justify-content: flex-start;
|
|
176
|
+
}
|
|
177
|
+
&.a_text_center {
|
|
178
|
+
justify-content: center;
|
|
179
|
+
}
|
|
171
180
|
}
|
|
172
181
|
.a_table__th__btn_sort {
|
|
173
182
|
padding-right: 15px;
|
|
@@ -354,7 +354,7 @@ export default {
|
|
|
354
354
|
},
|
|
355
355
|
|
|
356
356
|
showClearIcon() {
|
|
357
|
-
return !this.disabled && this.clearable &&
|
|
357
|
+
return !this.disabled && this.clearable && this.text;
|
|
358
358
|
},
|
|
359
359
|
|
|
360
360
|
innerShortcuts() {
|
|
@@ -79,6 +79,7 @@ export default function ATinymceAPI(props, context, {
|
|
|
79
79
|
modelValueLocal = modelValue.value;
|
|
80
80
|
tinymce.init({
|
|
81
81
|
branding: branding.value,
|
|
82
|
+
browser_spellcheck: true,
|
|
82
83
|
content_css: false,
|
|
83
84
|
content_langs: contentLangs.value,
|
|
84
85
|
content_style: contentStyle.value,
|