@iankibetsh/shframework 4.1.8 → 4.2.0
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 +15 -15
- package/dist/library.js +1 -1
- package/dist/library.mjs +1 -1
- package/package.json +1 -1
|
@@ -63,21 +63,6 @@
|
|
|
63
63
|
color: white;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.sh-selected-item{
|
|
67
|
-
line-height: unset!important;
|
|
68
|
-
}
|
|
69
|
-
.sh-suggestion-input{
|
|
70
|
-
padding: 0.375rem 0.75rem;
|
|
71
|
-
}
|
|
72
|
-
.sh-suggest{
|
|
73
|
-
margin-bottom: 1rem;
|
|
74
|
-
}
|
|
75
|
-
.sh-suggest-control::after{
|
|
76
|
-
margin-top: auto;
|
|
77
|
-
margin-bottom: auto;
|
|
78
|
-
margin-right: 0.255em;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
66
|
.permissions-main {
|
|
82
67
|
background: #edeff2;
|
|
83
68
|
}
|
|
@@ -110,6 +95,21 @@
|
|
|
110
95
|
flex-grow: 1;
|
|
111
96
|
}
|
|
112
97
|
|
|
98
|
+
.sh-selected-item{
|
|
99
|
+
line-height: unset!important;
|
|
100
|
+
}
|
|
101
|
+
.sh-suggestion-input{
|
|
102
|
+
padding: 0.375rem 0.75rem;
|
|
103
|
+
}
|
|
104
|
+
.sh-suggest{
|
|
105
|
+
margin-bottom: 1rem;
|
|
106
|
+
}
|
|
107
|
+
.sh-suggest-control::after{
|
|
108
|
+
margin-top: auto;
|
|
109
|
+
margin-bottom: auto;
|
|
110
|
+
margin-right: 0.255em;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
113
|
.callout{
|
|
114
114
|
--bs-link-color-rgb: 110,168,254;
|
|
115
115
|
--bs-code-color: #e685b5;
|
package/dist/library.js
CHANGED
|
@@ -4840,9 +4840,9 @@ const __default__ = {
|
|
|
4840
4840
|
data.query = this.query;
|
|
4841
4841
|
}
|
|
4842
4842
|
shApis.doGet(endPoint, data).then(req => {
|
|
4843
|
-
this.$emit('dataReloaded', this.pagination_data);
|
|
4844
4843
|
this.loading = 'done';
|
|
4845
4844
|
const response = req.data.data;
|
|
4845
|
+
this.$emit('dataLoaded', response);
|
|
4846
4846
|
if (this.page < 2 && this.cacheKey) {
|
|
4847
4847
|
ShStorage.setItem('sh_table_cache_' + this.cacheKey, response.data);
|
|
4848
4848
|
}
|
package/dist/library.mjs
CHANGED
|
@@ -4828,9 +4828,9 @@ const __default__ = {
|
|
|
4828
4828
|
data.query = this.query;
|
|
4829
4829
|
}
|
|
4830
4830
|
shApis.doGet(endPoint, data).then(req => {
|
|
4831
|
-
this.$emit('dataReloaded', this.pagination_data);
|
|
4832
4831
|
this.loading = 'done';
|
|
4833
4832
|
const response = req.data.data;
|
|
4833
|
+
this.$emit('dataLoaded', response);
|
|
4834
4834
|
if (this.page < 2 && this.cacheKey) {
|
|
4835
4835
|
ShStorage.setItem('sh_table_cache_' + this.cacheKey, response.data);
|
|
4836
4836
|
}
|