@iankibetsh/shframework 4.2.0 → 4.2.1
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/library.js +1 -0
- package/dist/library.mjs +1 -0
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -4840,6 +4840,7 @@ 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);
|
|
4843
4844
|
this.loading = 'done';
|
|
4844
4845
|
const response = req.data.data;
|
|
4845
4846
|
this.$emit('dataLoaded', response);
|
package/dist/library.mjs
CHANGED
|
@@ -4828,6 +4828,7 @@ 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);
|
|
4831
4832
|
this.loading = 'done';
|
|
4832
4833
|
const response = req.data.data;
|
|
4833
4834
|
this.$emit('dataLoaded', response);
|