@iankibetsh/shframework 1.2.2 → 1.2.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 +32 -32
- package/dist/library.js +2 -4
- package/dist/library.mjs +2 -3
- package/package.json +1 -1
|
@@ -1,36 +1,4 @@
|
|
|
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
|
-
|
|
34
2
|
.sh-phone{
|
|
35
3
|
display: flex;
|
|
36
4
|
width: 100%;
|
|
@@ -63,6 +31,38 @@
|
|
|
63
31
|
opacity: 0.5;
|
|
64
32
|
}
|
|
65
33
|
|
|
34
|
+
.colored-toast.swal2-icon-success {
|
|
35
|
+
background-color: #a5dc86 !important;
|
|
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;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
66
|
.sh-selected-item{
|
|
67
67
|
line-height: unset!important;
|
|
68
68
|
}
|
package/dist/library.js
CHANGED
|
@@ -5,11 +5,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var Axios = require('axios');
|
|
6
6
|
var moment = require('moment');
|
|
7
7
|
var Swal = require('sweetalert2');
|
|
8
|
-
var vue = require('vue');
|
|
9
8
|
var NProgress = require('nprogress');
|
|
9
|
+
var vue = require('vue');
|
|
10
10
|
var Editor = require('@tinymce/tinymce-vue');
|
|
11
11
|
var pinia = require('pinia');
|
|
12
|
-
var shRepo$1 = require('@/lib/repo/helpers/ShRepo.js');
|
|
13
12
|
var vueRouter = require('vue-router');
|
|
14
13
|
|
|
15
14
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
@@ -19,7 +18,6 @@ var moment__default = /*#__PURE__*/_interopDefaultLegacy(moment);
|
|
|
19
18
|
var Swal__default = /*#__PURE__*/_interopDefaultLegacy(Swal);
|
|
20
19
|
var NProgress__default = /*#__PURE__*/_interopDefaultLegacy(NProgress);
|
|
21
20
|
var Editor__default = /*#__PURE__*/_interopDefaultLegacy(Editor);
|
|
22
|
-
var shRepo__default = /*#__PURE__*/_interopDefaultLegacy(shRepo$1);
|
|
23
21
|
|
|
24
22
|
function setItem (key, value) {
|
|
25
23
|
let toStore = value;
|
|
@@ -4557,7 +4555,7 @@ const useUserStore = pinia.defineStore('user-store', {
|
|
|
4557
4555
|
ShStorage.setItem('session_start',timeNow);
|
|
4558
4556
|
},
|
|
4559
4557
|
signOut () {
|
|
4560
|
-
|
|
4558
|
+
shRepo.signOutUser();
|
|
4561
4559
|
},
|
|
4562
4560
|
logOut () {
|
|
4563
4561
|
this.signOut();
|
package/dist/library.mjs
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import Axios from 'axios';
|
|
2
2
|
import moment from 'moment';
|
|
3
3
|
import Swal from 'sweetalert2';
|
|
4
|
-
import { openBlock, createElementBlock, createElementVNode, createTextVNode, toDisplayString, createCommentVNode, withDirectives, Fragment, renderList, vModelSelect, vModelText, resolveComponent, withModifiers, createVNode, ref, onMounted, unref, normalizeClass, createBlock, resolveDynamicComponent, renderSlot, normalizeProps, guardReactiveProps, withCtx, mergeProps, createStaticVNode, shallowRef, computed, isRef, vModelCheckbox, inject, watch, pushScopeId, popScopeId } from 'vue';
|
|
5
4
|
import NProgress from 'nprogress';
|
|
5
|
+
import { openBlock, createElementBlock, createElementVNode, createTextVNode, toDisplayString, createCommentVNode, withDirectives, Fragment, renderList, vModelSelect, vModelText, resolveComponent, withModifiers, createVNode, ref, onMounted, unref, normalizeClass, createBlock, resolveDynamicComponent, renderSlot, normalizeProps, guardReactiveProps, withCtx, mergeProps, createStaticVNode, shallowRef, computed, isRef, vModelCheckbox, inject, watch, pushScopeId, popScopeId } from 'vue';
|
|
6
6
|
import Editor from '@tinymce/tinymce-vue';
|
|
7
7
|
import { defineStore, storeToRefs } from 'pinia';
|
|
8
|
-
import shRepo$1 from '@/lib/repo/helpers/ShRepo.js';
|
|
9
8
|
import { useRoute, useRouter } from 'vue-router';
|
|
10
9
|
|
|
11
10
|
function setItem (key, value) {
|
|
@@ -4544,7 +4543,7 @@ const useUserStore = defineStore('user-store', {
|
|
|
4544
4543
|
ShStorage.setItem('session_start',timeNow);
|
|
4545
4544
|
},
|
|
4546
4545
|
signOut () {
|
|
4547
|
-
shRepo
|
|
4546
|
+
shRepo.signOutUser();
|
|
4548
4547
|
},
|
|
4549
4548
|
logOut () {
|
|
4550
4549
|
this.signOut();
|