@bildvitta/quasar-ui-asteroid 3.11.0-beta.6 → 3.11.0-beta.7

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@bildvitta/quasar-ui-asteroid",
3
3
  "description": "Asteroid",
4
- "version": "3.11.0-beta.6",
4
+ "version": "3.11.0-beta.7",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "dist/asteroid.cjs.min.js",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="bg-white q-px-md q-py-lg rounded-borders" :class="boxClass">
2
+ <div class="bg-white q-pa-md rounded-borders" :class="boxClass">
3
3
  <slot />
4
4
  </div>
5
5
  </template>
@@ -185,7 +185,7 @@ export default {
185
185
 
186
186
  remove (item) {
187
187
  const index = this.values.findIndex(itemValue => {
188
- const normalizedItem = this.emitValue ? itemValue : item.value
188
+ const normalizedItem = this.emitValue ? itemValue : itemValue.value
189
189
 
190
190
  return normalizedItem === item.value
191
191
  })