@afeefa/vue-app 0.0.93 → 0.0.95

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- 0.0.93
1
+ 0.0.95
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.93",
3
+ "version": "0.0.95",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
7
7
  "devDependencies": {
8
- "core-js": "^3.21.1",
9
- "vue": "^2.6.14",
8
+ "core-js": "^3.25.5",
9
+ "vue": "^2.7.10",
10
10
  "vue-class-component": "^7.2.6",
11
11
  "vue-property-decorator": "^9.1.2"
12
12
  }
@@ -171,10 +171,6 @@ export default class ARichTextArea extends Vue {
171
171
  this.internalValue = this.value
172
172
  }
173
173
 
174
- changed () {
175
- console.log('Changed')
176
- }
177
-
178
174
  mounted () {
179
175
  this.editorFocus = !!this.focus
180
176
 
@@ -57,6 +57,9 @@ export default class ListColumnHeader extends Vue {
57
57
  if (this.orderValue) {
58
58
  return this.orderValue
59
59
  } else {
60
+ if (!this.filter.options[this.order]) {
61
+ console.warn(`Order filter ${this.order} not defined.`)
62
+ }
60
63
  const direction = this.filter.options[this.order][0]
61
64
  return direction || 'asc'
62
65
  }
@@ -71,10 +71,9 @@
71
71
  }
72
72
 
73
73
  .theme--light.v-btn:focus-visible {
74
- outline: 2px solid #1976d2;
74
+ outline: 2px solid #1976D2;
75
75
  }
76
76
 
77
-
78
77
  .theme--light.v-btn.v-btn--disabled.v-btn--has-bg {
79
78
  background-color: #EEEEEE !important;
80
79
  }