@iankibetsh/shframework 5.0.8 → 5.0.9

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
@@ -5996,6 +5996,14 @@ vue.watch(()=>props.tabCounts, () => {
5996
5996
  resetTabCounts();
5997
5997
  });
5998
5998
 
5999
+ vue.watch(()=>route.path,()=>{
6000
+ route.fullPath.split('/');
6001
+ if (!tabExistsInUrl()) {
6002
+ resetTabCounts();
6003
+ }
6004
+
6005
+ });
6006
+
5999
6007
  vue.watch(()=>route.path,(newPath)=>{
6000
6008
  path.value = newPath;
6001
6009
  });
package/dist/library.mjs CHANGED
@@ -5984,6 +5984,14 @@ watch(()=>props.tabCounts, () => {
5984
5984
  resetTabCounts();
5985
5985
  });
5986
5986
 
5987
+ watch(()=>route.path,()=>{
5988
+ route.fullPath.split('/');
5989
+ if (!tabExistsInUrl()) {
5990
+ resetTabCounts();
5991
+ }
5992
+
5993
+ });
5994
+
5987
5995
  watch(()=>route.path,(newPath)=>{
5988
5996
  path.value = newPath;
5989
5997
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iankibetsh/shframework",
3
- "version": "5.0.8",
3
+ "version": "5.0.9",
4
4
  "description": "Vue library for handling laravel backend",
5
5
  "main": "dist/library.js",
6
6
  "module": "dist/library.mjs",