@iankibetsh/shframework 3.0.0 → 3.0.2

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
@@ -2101,7 +2101,7 @@ function filterData(e){
2101
2101
  });
2102
2102
  } else {
2103
2103
  shApis.doGet(props.fillSelects.url, { all: 1,filter_value: filterValue }).then(res => {
2104
- suggestions.value = res.data.data;
2104
+ suggestions.value = res.data.data ?? res.data;
2105
2105
  }).catch(res => {
2106
2106
  console.log(res);
2107
2107
  });
@@ -6626,6 +6626,7 @@ exports.ShQueryPopups = script$3;
6626
6626
  exports.ShRange = script$c;
6627
6627
  exports.ShRoutePopups = script$5;
6628
6628
  exports.ShSilentAction = script$d;
6629
+ exports.ShSuggest = script$t;
6629
6630
  exports.ShTable = script$b;
6630
6631
  exports.ShTabs = script$a;
6631
6632
  exports.shApis = shApis;
package/dist/library.mjs CHANGED
@@ -2089,7 +2089,7 @@ function filterData(e){
2089
2089
  });
2090
2090
  } else {
2091
2091
  shApis.doGet(props.fillSelects.url, { all: 1,filter_value: filterValue }).then(res => {
2092
- suggestions.value = res.data.data;
2092
+ suggestions.value = res.data.data ?? res.data;
2093
2093
  }).catch(res => {
2094
2094
  console.log(res);
2095
2095
  });
@@ -6595,4 +6595,4 @@ var shGql = {
6595
6595
  mutate
6596
6596
  };
6597
6597
 
6598
- export { countries as Countries, script$6 as ManagePermissions, script$l as ShAutoForm, script$g as ShCanvas, script$7 as ShCanvasBtn, script$e as ShConfirmAction, script$k as ShDropDownForm, script$9 as ShDynamicTabs, script$s as ShForm, ShFrontend, script$j as ShModal, script$8 as ShModalBtn, script$i as ShModalForm, script$h as ShModalFormAuto, script$u as ShPhone, script$3 as ShQueryPopups, script$c as ShRange, script$5 as ShRoutePopups, script$d as ShSilentAction, script$b as ShTable, script$a as ShTabs, shApis, shGql, shRepo, ShStorage as shStorage, useAppStore, useUserStore };
6598
+ export { countries as Countries, script$6 as ManagePermissions, script$l as ShAutoForm, script$g as ShCanvas, script$7 as ShCanvasBtn, script$e as ShConfirmAction, script$k as ShDropDownForm, script$9 as ShDynamicTabs, script$s as ShForm, ShFrontend, script$j as ShModal, script$8 as ShModalBtn, script$i as ShModalForm, script$h as ShModalFormAuto, script$u as ShPhone, script$3 as ShQueryPopups, script$c as ShRange, script$5 as ShRoutePopups, script$d as ShSilentAction, script$t as ShSuggest, script$b as ShTable, script$a as ShTabs, shApis, shGql, shRepo, ShStorage as shStorage, useAppStore, useUserStore };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iankibetsh/shframework",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "Vue library for handling laravel backend",
5
5
  "main": "dist/library.js",
6
6
  "module": "dist/library.mjs",