RubyGems
npm
Organizations
Log in
Sign up
npm
@afeefa/vue-app
Versions diffs
0.0.118 → 0.0.120
@afeefa/vue-app 0.0.118 → 0.0.120
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (5)
hide
show
package/.afeefa/package/release/version.txt
+1
-1
package/package.json
+1
-1
package/src/components/AAutocomplete.vue
+1
-1
package/src/components/ATextField.vue
+1
-0
package/src/components/form/fields/FormFieldSelect.vue
+1
-0
package/.afeefa/package/release/version.txt
CHANGED
Viewed
@@ -1 +1 @@
1
-
0.0.
118
1
+
0.0.
120
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@afeefa/vue-app",
3
-
"version": "0.0.
118
",
3
+
"version": "0.0.
120
",
4
4
"description": "",
5
5
"author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
"license": "MIT",
package/src/components/AAutocomplete.vue
CHANGED
Viewed
@@ -70,7 +70,7 @@ export default class AAutocomplete extends Vue {
70
70
}
71
71
72
72
if (a instanceof Model && b instanceof Model) {
73
-
return a.
id ===
b
.id && a.type === b.type
73
+
return a.
equals(
b
)
74
74
}
75
75
76
76
return JSON.stringify(a) === JSON.stringify(b)
package/src/components/ATextField.vue
CHANGED
Viewed
@@ -49,6 +49,7 @@ export default class ATextField extends Mixins(ComponentWidthMixin) {
49
49
value = value.toString()
50
50
}
51
51
this.internalValue = value || ''
52
+
this.validate()
52
53
}
53
54
54
55
@Watch('value')
package/src/components/form/fields/FormFieldSelect.vue
CHANGED
Viewed
@@ -9,6 +9,7 @@
9
9
10
10
:validator="validator"
11
11
v-bind="$attrs"
12
+
v-on="$listeners"
12
13
/>
13
14
</template>
14
15