@afeefa/vue-app 0.0.223 → 0.0.224

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.
@@ -1 +1 @@
1
- 0.0.223
1
+ 0.0.224
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.223",
3
+ "version": "0.0.224",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="listColumnHeader">
3
3
  <div
4
- :class="['content', {order}]"
4
+ :class="['content', {order, right}]"
5
5
  @click="toggleSort"
6
6
  >
7
7
  <div
@@ -42,7 +42,7 @@
42
42
  import { Component, Vue } from '@a-vue'
43
43
 
44
44
  @Component({
45
- props: ['text', 'icon', 'order']
45
+ props: ['text', 'icon', 'order', {right: false}]
46
46
  })
47
47
  export default class ListColumnHeader extends Vue {
48
48
  get orderValue () {
@@ -110,6 +110,10 @@ export default class ListColumnHeader extends Vue {
110
110
  user-select: none;
111
111
  cursor: pointer;
112
112
  }
113
+
114
+ &.right {
115
+ justify-content: end;
116
+ }
113
117
  }
114
118
 
115
119
  :deep(.v-icon) {