@sveltia/ui 0.15.14 → 0.15.15

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.
@@ -123,13 +123,17 @@
123
123
  };
124
124
 
125
125
  $: {
126
- void value;
127
- setInputValue();
126
+ if ($editor) {
127
+ void value;
128
+ setInputValue();
129
+ }
128
130
  }
129
131
 
130
132
  $: {
131
- void inputValue;
132
- setCurrentValue();
133
+ if ($editor) {
134
+ void inputValue;
135
+ setCurrentValue();
136
+ }
133
137
  }
134
138
 
135
139
  $: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltia/ui",
3
- "version": "0.15.14",
3
+ "version": "0.15.15",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {