@iankibetsh/shframework 4.8.3 → 4.8.5

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
@@ -4573,7 +4573,7 @@ const actionItems = props.actions.actions;
4573
4573
  const type = props.actions.type; // dropdown, button
4574
4574
 
4575
4575
  return (_ctx, _cache) => {
4576
- return (vue.unref(type).includes('dropdown'))
4576
+ return (vue.unref(type) && vue.unref(type).includes('dropdown'))
4577
4577
  ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$d, [
4578
4578
  vue.createElementVNode("strong", _hoisted_2$a, [
4579
4579
  (vue.unref(type) === 'dropdown-horizontal')
package/dist/library.mjs CHANGED
@@ -4561,7 +4561,7 @@ const actionItems = props.actions.actions;
4561
4561
  const type = props.actions.type; // dropdown, button
4562
4562
 
4563
4563
  return (_ctx, _cache) => {
4564
- return (unref(type).includes('dropdown'))
4564
+ return (unref(type) && unref(type).includes('dropdown'))
4565
4565
  ? (openBlock(), createElementBlock("div", _hoisted_1$d, [
4566
4566
  createElementVNode("strong", _hoisted_2$a, [
4567
4567
  (unref(type) === 'dropdown-horizontal')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iankibetsh/shframework",
3
- "version": "4.8.3",
3
+ "version": "4.8.5",
4
4
  "description": "Vue library for handling laravel backend",
5
5
  "main": "dist/library.js",
6
6
  "module": "dist/library.mjs",