@everchron/ec-shards 7.5.25 → 7.5.26

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": "@everchron/ec-shards",
3
- "version": "7.5.25",
3
+ "version": "7.5.26",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -131,10 +131,10 @@
131
131
  },
132
132
 
133
133
  methods: {
134
- handleClick() {
134
+ handleClick(e) {
135
135
  this.indeterminateState = false
136
136
  this.checked = !this.checked
137
- this.$emit('input', this.checked ? this.valueWhenTrue : this.valueWhenFalse, this.id)
137
+ this.$emit('input', this.checked ? this.valueWhenTrue : this.valueWhenFalse, this.id, e)
138
138
  }
139
139
  }
140
140
  }