@iankibetsh/shframework 0.8.7 → 0.8.9
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 +19 -19
- package/dist/library.js +1 -1
- package/dist/library.mjs +1 -1
- package/package.json +1 -1
|
@@ -63,25 +63,6 @@
|
|
|
63
63
|
color: white;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.sh-forgot-link, .sh-register-link{
|
|
67
|
-
cursor: pointer;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.sh-selected-item{
|
|
71
|
-
line-height: unset!important;
|
|
72
|
-
}
|
|
73
|
-
.sh-suggestion-input{
|
|
74
|
-
padding: 0.375rem 0.75rem;
|
|
75
|
-
}
|
|
76
|
-
.sh-suggest{
|
|
77
|
-
margin-bottom: 1rem;
|
|
78
|
-
}
|
|
79
|
-
.sh-suggest-control::after{
|
|
80
|
-
margin-top: auto;
|
|
81
|
-
margin-bottom: auto;
|
|
82
|
-
margin-right: 0.255em;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
66
|
:root {
|
|
86
67
|
--ck-z-default: 10555 !important;
|
|
87
68
|
--ck-z-modal: calc(var(--ck-z-default) + 999) !important;
|
|
@@ -102,3 +83,22 @@
|
|
|
102
83
|
width: 100% !important;
|
|
103
84
|
}
|
|
104
85
|
}
|
|
86
|
+
|
|
87
|
+
.sh-selected-item{
|
|
88
|
+
line-height: unset!important;
|
|
89
|
+
}
|
|
90
|
+
.sh-suggestion-input{
|
|
91
|
+
padding: 0.375rem 0.75rem;
|
|
92
|
+
}
|
|
93
|
+
.sh-suggest{
|
|
94
|
+
margin-bottom: 1rem;
|
|
95
|
+
}
|
|
96
|
+
.sh-suggest-control::after{
|
|
97
|
+
margin-top: auto;
|
|
98
|
+
margin-bottom: auto;
|
|
99
|
+
margin-right: 0.255em;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.sh-forgot-link, .sh-register-link{
|
|
103
|
+
cursor: pointer;
|
|
104
|
+
}
|
package/dist/library.js
CHANGED
|
@@ -4160,7 +4160,7 @@ const useUserStore = pinia.defineStore('user-store', {
|
|
|
4160
4160
|
}
|
|
4161
4161
|
this.user = user;
|
|
4162
4162
|
shApis.doGet('auth/user').then(res => {
|
|
4163
|
-
const user = res.data;
|
|
4163
|
+
const user = res.data.user;
|
|
4164
4164
|
ShStorage.setItem('user',res.data);
|
|
4165
4165
|
user.isAllowedTo = function (slug) {
|
|
4166
4166
|
if (this.permissions) {
|
package/dist/library.mjs
CHANGED
|
@@ -4148,7 +4148,7 @@ const useUserStore = defineStore('user-store', {
|
|
|
4148
4148
|
}
|
|
4149
4149
|
this.user = user;
|
|
4150
4150
|
shApis.doGet('auth/user').then(res => {
|
|
4151
|
-
const user = res.data;
|
|
4151
|
+
const user = res.data.user;
|
|
4152
4152
|
ShStorage.setItem('user',res.data);
|
|
4153
4153
|
user.isAllowedTo = function (slug) {
|
|
4154
4154
|
if (this.permissions) {
|