@lancom/shared 0.0.313 → 0.0.314

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.
@@ -223,10 +223,10 @@ export default {
223
223
  },
224
224
  charSpacing: {
225
225
  get() {
226
- return this.layer.charSpacing;
226
+ return this.layer.charSpacing || 0;
227
227
  },
228
228
  set(value) {
229
- value = inRange(value, -300, 300);
229
+ value = inRange(value || 0, -300, 300);
230
230
  this.$emit('set-layer-field', { field: 'charSpacing', value });
231
231
  this.$refs.charSpacing.value = value;
232
232
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.313",
3
+ "version": "0.0.314",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {