wave-ui 3.17.1 → 3.17.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "wave-ui",
3
- "version": "3.17.1",
3
+ "version": "3.17.2",
4
4
  "description": "A UI framework for Vue.js 3 (and 2) with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "homepage": "https://antoniandre.github.io/wave-ui",
@@ -132,7 +132,6 @@ export default {
132
132
  onItemToggle (item) {
133
133
  if (this.expandSingle) this.state.accordionItems.forEach(obj => obj._index !== item._index && (obj._expanded = false))
134
134
  const expandedItems = this.state.accordionItems.map(item => item._expanded || false)
135
- console.log('toggling item', expandedItems)
136
135
  this.$emit('update:modelValue', expandedItems)
137
136
  this.$emit('input', expandedItems)
138
137
  this.$emit('item-expand', { item, expanded: item._expanded })