@avakhula/ui 0.0.209 → 0.0.211
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div role="checkbox" :aria-checked="checked ? true : false">
|
|
2
|
+
<div role="checkbox" :class="this.$attrs.class" :aria-checked="checked ? true : false">
|
|
3
3
|
<label
|
|
4
4
|
v-bind="attrs"
|
|
5
5
|
:for="id"
|
|
@@ -132,8 +132,8 @@ export default {
|
|
|
132
132
|
},
|
|
133
133
|
attrs() {
|
|
134
134
|
const attrsList = { ...removeEvents({ ...this.$attrs }) };
|
|
135
|
-
|
|
136
|
-
attrsList.class =
|
|
135
|
+
delete attrsList.class;
|
|
136
|
+
attrsList.class = this.classes;
|
|
137
137
|
|
|
138
138
|
return attrsList;
|
|
139
139
|
},
|