@everchron/ec-shards 0.6.93 → 0.6.94

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": "0.6.93",
3
+ "version": "0.6.94",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -97,13 +97,13 @@
97
97
  watch: {
98
98
  valueFalse() {
99
99
  if (!this.checked) {
100
- this.$emit('input', this.valueWhenFalse, this.id)
100
+ this.$emit('input', this.valueWhenFalse)
101
101
  }
102
102
  },
103
103
 
104
104
  valueTrue() {
105
105
  if (this.checked) {
106
- this.$emit('input', this.valueWhenTrue, this.id)
106
+ this.$emit('input', this.valueWhenTrue)
107
107
  }
108
108
  },
109
109
 
@@ -115,7 +115,6 @@
115
115
  methods: {
116
116
  handleClick() {
117
117
  this.checked = !this.checked
118
- console.log('handleClick', this.id)
119
118
  this.$emit('input', this.checked ? this.valueWhenTrue : this.valueWhenFalse, this.id)
120
119
  }
121
120
  }