@everchron/ec-shards 0.6.15 → 0.6.16

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.15",
3
+ "version": "0.6.16",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -114,19 +114,9 @@
114
114
 
115
115
  methods: {
116
116
  handleClick() {
117
- console.log('checkbox click handled 1', this.checked, this.checked ? this.valueWhenTrue : this.valueWhenFalse)
118
117
  this.checked = !this.checked
119
- console.log('checkbox click handled 2', this.checked, this.checked ? this.valueWhenTrue : this.valueWhenFalse)
120
118
  this.$emit('input', this.checked ? this.valueWhenTrue : this.valueWhenFalse)
121
119
  }
122
- },
123
-
124
- mounted(){
125
- console.log('checkbox mounted', this.value)
126
- },
127
-
128
- updated(){
129
- console.log('checkbox updated', this.value)
130
120
  }
131
121
  }
132
122
  </script>