@everchron/ec-shards 5.0.52 → 5.0.54

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": "5.0.52",
3
+ "version": "5.0.54",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -69,7 +69,7 @@
69
69
 
70
70
  data () {
71
71
  return {
72
- cellWidth:0,
72
+ cellWidth: 0,
73
73
  cellFixedLeftOffset: ''
74
74
  }
75
75
  },
@@ -116,10 +116,16 @@
116
116
  }
117
117
  },
118
118
 
119
+ watch: {
120
+ width: function () {
121
+ this.cellWidth = this.width
122
+ }
123
+ },
124
+
119
125
  created(){
120
126
  this.cellWidth = this.width
121
127
  this.cellFixedLeftOffset = this.fixedLeftOffset
122
- },
128
+ }
123
129
  }
124
130
  </script>
125
131