@iankibetsh/shframework 0.8.3 → 0.8.4
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 +34 -34
- package/dist/library.js +5 -2
- package/dist/library.mjs +5 -2
- package/package.json +1 -1
|
@@ -1,4 +1,36 @@
|
|
|
1
1
|
|
|
2
|
+
.colored-toast.swal2-icon-success {
|
|
3
|
+
background-color: #a5dc86 !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.colored-toast.swal2-icon-error {
|
|
7
|
+
background-color: #f27474 !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.colored-toast.swal2-icon-warning {
|
|
11
|
+
background-color: #f8bb86 !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.colored-toast.swal2-icon-info {
|
|
15
|
+
background-color: #3fc3ee !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.colored-toast.swal2-icon-question {
|
|
19
|
+
background-color: #87adbd !important;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.colored-toast .swal2-title {
|
|
23
|
+
color: white;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.colored-toast .swal2-close {
|
|
27
|
+
color: white;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.colored-toast .swal2-html-container {
|
|
31
|
+
color: white;
|
|
32
|
+
}
|
|
33
|
+
|
|
2
34
|
.sh-phone{
|
|
3
35
|
display: flex;
|
|
4
36
|
width: 100%;
|
|
@@ -31,36 +63,8 @@
|
|
|
31
63
|
opacity: 0.5;
|
|
32
64
|
}
|
|
33
65
|
|
|
34
|
-
.
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.colored-toast.swal2-icon-error {
|
|
39
|
-
background-color: #f27474 !important;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.colored-toast.swal2-icon-warning {
|
|
43
|
-
background-color: #f8bb86 !important;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.colored-toast.swal2-icon-info {
|
|
47
|
-
background-color: #3fc3ee !important;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.colored-toast.swal2-icon-question {
|
|
51
|
-
background-color: #87adbd !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.colored-toast .swal2-title {
|
|
55
|
-
color: white;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.colored-toast .swal2-close {
|
|
59
|
-
color: white;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.colored-toast .swal2-html-container {
|
|
63
|
-
color: white;
|
|
66
|
+
.sh-forgot-link, .sh-register-link{
|
|
67
|
+
cursor: pointer;
|
|
64
68
|
}
|
|
65
69
|
|
|
66
70
|
:root {
|
|
@@ -84,10 +88,6 @@
|
|
|
84
88
|
}
|
|
85
89
|
}
|
|
86
90
|
|
|
87
|
-
.sh-forgot-link, .sh-register-link{
|
|
88
|
-
cursor: pointer;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
91
|
.sh-selected-item{
|
|
92
92
|
line-height: unset!important;
|
|
93
93
|
}
|
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,10 @@ 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), {
|
|
4120
|
+
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(vue.unref(currentTab).component), {
|
|
4121
|
+
key: 0,
|
|
4122
|
+
data: __props.data
|
|
4123
|
+
}, null, 8 /* PROPS */, ["data"]))
|
|
4121
4124
|
: vue.createCommentVNode("v-if", true)
|
|
4122
4125
|
])
|
|
4123
4126
|
], 64 /* STABLE_FRAGMENT */))
|
package/dist/library.mjs
CHANGED
|
@@ -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,10 @@ return (_ctx, _cache) => {
|
|
|
4105
4105
|
]),
|
|
4106
4106
|
createElementVNode("div", _hoisted_4$3, [
|
|
4107
4107
|
(unref(currentTab))
|
|
4108
|
-
? (openBlock(), createBlock(resolveDynamicComponent(unref(currentTab).component), {
|
|
4108
|
+
? (openBlock(), createBlock(resolveDynamicComponent(unref(currentTab).component), {
|
|
4109
|
+
key: 0,
|
|
4110
|
+
data: __props.data
|
|
4111
|
+
}, null, 8 /* PROPS */, ["data"]))
|
|
4109
4112
|
: createCommentVNode("v-if", true)
|
|
4110
4113
|
])
|
|
4111
4114
|
], 64 /* STABLE_FRAGMENT */))
|