@iankibetsh/shframework 0.8.3 → 0.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/dist/library.mjs.css +4 -4
- package/dist/library.js +2 -2
- package/dist/library.mjs +3 -3
- package/package.json +1 -1
|
@@ -84,10 +84,6 @@
|
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
.sh-forgot-link, .sh-register-link{
|
|
88
|
-
cursor: pointer;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
87
|
.sh-selected-item{
|
|
92
88
|
line-height: unset!important;
|
|
93
89
|
}
|
|
@@ -102,3 +98,7 @@
|
|
|
102
98
|
margin-bottom: auto;
|
|
103
99
|
margin-right: 0.255em;
|
|
104
100
|
}
|
|
101
|
+
|
|
102
|
+
.sh-forgot-link, .sh-register-link{
|
|
103
|
+
cursor: pointer;
|
|
104
|
+
}
|
package/dist/library.js
CHANGED
|
@@ -4082,7 +4082,7 @@ const _hoisted_4$3 = { class: "tab-content" };
|
|
|
4082
4082
|
|
|
4083
4083
|
var script$3 = {
|
|
4084
4084
|
__name: 'ShDynamicTabs',
|
|
4085
|
-
props: ['tabs'],
|
|
4085
|
+
props: ['tabs','data'],
|
|
4086
4086
|
setup(__props) {
|
|
4087
4087
|
|
|
4088
4088
|
const props = __props;
|
|
@@ -4117,7 +4117,7 @@ return (_ctx, _cache) => {
|
|
|
4117
4117
|
]),
|
|
4118
4118
|
vue.createElementVNode("div", _hoisted_4$3, [
|
|
4119
4119
|
(vue.unref(currentTab))
|
|
4120
|
-
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(vue.unref(currentTab).component), { key: 0 }))
|
|
4120
|
+
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(vue.unref(currentTab).component), vue.normalizeProps(vue.mergeProps({ key: 0 }, vue.unref(currentTab))), null, 16 /* FULL_PROPS */))
|
|
4121
4121
|
: vue.createCommentVNode("v-if", true)
|
|
4122
4122
|
])
|
|
4123
4123
|
], 64 /* STABLE_FRAGMENT */))
|
package/dist/library.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Axios from 'axios';
|
|
2
2
|
import moment from 'moment';
|
|
3
|
-
import { inject, openBlock, createElementBlock, createElementVNode, createTextVNode, toDisplayString, createCommentVNode, withDirectives, Fragment, renderList, vModelSelect, vModelText, resolveComponent, withModifiers, createVNode, ref, onMounted, unref, normalizeClass, createBlock, resolveDynamicComponent, renderSlot, normalizeProps, guardReactiveProps, withCtx, createStaticVNode, shallowRef, Teleport, computed, isRef, vModelCheckbox, watch, pushScopeId, popScopeId } from 'vue';
|
|
3
|
+
import { inject, openBlock, createElementBlock, createElementVNode, createTextVNode, toDisplayString, createCommentVNode, withDirectives, Fragment, renderList, vModelSelect, vModelText, resolveComponent, withModifiers, createVNode, ref, onMounted, unref, normalizeClass, createBlock, resolveDynamicComponent, renderSlot, normalizeProps, guardReactiveProps, withCtx, createStaticVNode, shallowRef, mergeProps, Teleport, computed, isRef, vModelCheckbox, watch, pushScopeId, popScopeId } from 'vue';
|
|
4
4
|
import NProgress from 'nprogress';
|
|
5
5
|
import Editor from '@tinymce/tinymce-vue';
|
|
6
6
|
import Swal from 'sweetalert2';
|
|
@@ -4070,7 +4070,7 @@ const _hoisted_4$3 = { class: "tab-content" };
|
|
|
4070
4070
|
|
|
4071
4071
|
var script$3 = {
|
|
4072
4072
|
__name: 'ShDynamicTabs',
|
|
4073
|
-
props: ['tabs'],
|
|
4073
|
+
props: ['tabs','data'],
|
|
4074
4074
|
setup(__props) {
|
|
4075
4075
|
|
|
4076
4076
|
const props = __props;
|
|
@@ -4105,7 +4105,7 @@ return (_ctx, _cache) => {
|
|
|
4105
4105
|
]),
|
|
4106
4106
|
createElementVNode("div", _hoisted_4$3, [
|
|
4107
4107
|
(unref(currentTab))
|
|
4108
|
-
? (openBlock(), createBlock(resolveDynamicComponent(unref(currentTab).component), { key: 0 }))
|
|
4108
|
+
? (openBlock(), createBlock(resolveDynamicComponent(unref(currentTab).component), normalizeProps(mergeProps({ key: 0 }, unref(currentTab))), null, 16 /* FULL_PROPS */))
|
|
4109
4109
|
: createCommentVNode("v-if", true)
|
|
4110
4110
|
])
|
|
4111
4111
|
], 64 /* STABLE_FRAGMENT */))
|