@iankibetsh/shframework 5.5.6 → 5.5.7

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/dist/library.js CHANGED
@@ -2350,6 +2350,7 @@ const initializeExisting = (currentValue)=>{
2350
2350
  }
2351
2351
  };
2352
2352
  vue.watch(()=>props.modelValue, (newValue)=>{
2353
+ selectedSuggestions.value = [];
2353
2354
  if(newValue) {
2354
2355
  initializeExisting(newValue);
2355
2356
  }
package/dist/library.mjs CHANGED
@@ -2339,6 +2339,7 @@ const initializeExisting = (currentValue)=>{
2339
2339
  }
2340
2340
  };
2341
2341
  watch(()=>props.modelValue, (newValue)=>{
2342
+ selectedSuggestions.value = [];
2342
2343
  if(newValue) {
2343
2344
  initializeExisting(newValue);
2344
2345
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iankibetsh/shframework",
3
- "version": "5.5.6",
3
+ "version": "5.5.7",
4
4
  "description": "Vue library for handling laravel backend",
5
5
  "main": "dist/library.js",
6
6
  "module": "dist/library.mjs",