@iankibetsh/shframework 5.6.1 → 5.6.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 +3 -1
- package/dist/library.mjs +4 -2
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -6367,7 +6367,9 @@ return (_ctx, _cache) => {
|
|
|
6367
6367
|
], 2 /* CLASS */),
|
|
6368
6368
|
vue.createElementVNode("div", _hoisted_5$3, [
|
|
6369
6369
|
(vue.unref(currentTab))
|
|
6370
|
-
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(vue.unref(currentTab).component ?? __props.defaultComponent), vue.
|
|
6370
|
+
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(vue.unref(currentTab).component ?? __props.defaultComponent), vue.mergeProps({
|
|
6371
|
+
key: getTabKey(vue.unref(currentTab))
|
|
6372
|
+
}, vue.unref(currentTab)), null, 16 /* FULL_PROPS */))
|
|
6371
6373
|
: vue.createCommentVNode("v-if", true)
|
|
6372
6374
|
])
|
|
6373
6375
|
], 64 /* STABLE_FRAGMENT */))
|
package/dist/library.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { DateTime } from 'luxon';
|
|
|
3
3
|
import Swal from 'sweetalert2';
|
|
4
4
|
import { Modal, Offcanvas } from 'bootstrap';
|
|
5
5
|
import NProgress from 'nprogress';
|
|
6
|
-
import { openBlock, createElementBlock, createElementVNode, createTextVNode, toDisplayString, createCommentVNode, withDirectives, Fragment, renderList, vModelSelect, vModelText, ref, onMounted, watch, unref, normalizeClass, createBlock, resolveDynamicComponent, resolveComponent, inject, useTemplateRef, mergeProps, renderSlot, normalizeStyle, computed, Teleport, createVNode, withCtx, useSlots, onBeforeUnmount, reactive, vModelCheckbox, resolveDirective, shallowRef,
|
|
6
|
+
import { openBlock, createElementBlock, createElementVNode, createTextVNode, toDisplayString, createCommentVNode, withDirectives, Fragment, renderList, vModelSelect, vModelText, ref, onMounted, watch, unref, normalizeClass, createBlock, resolveDynamicComponent, resolveComponent, inject, useTemplateRef, mergeProps, renderSlot, normalizeStyle, computed, Teleport, createVNode, withCtx, useSlots, onBeforeUnmount, reactive, vModelCheckbox, resolveDirective, shallowRef, markRaw, isRef } from 'vue';
|
|
7
7
|
import _ from 'lodash';
|
|
8
8
|
import { defineStore, storeToRefs } from 'pinia';
|
|
9
9
|
import { useRoute, useRouter } from 'vue-router';
|
|
@@ -6356,7 +6356,9 @@ return (_ctx, _cache) => {
|
|
|
6356
6356
|
], 2 /* CLASS */),
|
|
6357
6357
|
createElementVNode("div", _hoisted_5$3, [
|
|
6358
6358
|
(unref(currentTab))
|
|
6359
|
-
? (openBlock(), createBlock(resolveDynamicComponent(unref(currentTab).component ?? __props.defaultComponent),
|
|
6359
|
+
? (openBlock(), createBlock(resolveDynamicComponent(unref(currentTab).component ?? __props.defaultComponent), mergeProps({
|
|
6360
|
+
key: getTabKey(unref(currentTab))
|
|
6361
|
+
}, unref(currentTab)), null, 16 /* FULL_PROPS */))
|
|
6360
6362
|
: createCommentVNode("v-if", true)
|
|
6361
6363
|
])
|
|
6362
6364
|
], 64 /* STABLE_FRAGMENT */))
|