sprintify-ui 0.0.176 → 0.0.177
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/sprintify-ui.es.js +372 -370
- package/package.json +1 -1
- package/src/components/BaseDataIterator.vue +3 -0
package/package.json
CHANGED
|
@@ -232,6 +232,7 @@ import BaseModalSide from './BaseModalSide.vue';
|
|
|
232
232
|
import { config } from '@/index';
|
|
233
233
|
import { useMutationObserver, useResizeObserver } from '@vueuse/core';
|
|
234
234
|
import { useHasPaginatedData } from '@/composables/paginatedData';
|
|
235
|
+
import { useNotificationsStore } from '@/index';
|
|
235
236
|
|
|
236
237
|
const props = defineProps({
|
|
237
238
|
/**
|
|
@@ -289,6 +290,7 @@ const props = defineProps({
|
|
|
289
290
|
});
|
|
290
291
|
|
|
291
292
|
const http = config.http;
|
|
293
|
+
const notificationsStore = useNotificationsStore();
|
|
292
294
|
|
|
293
295
|
defineEmits([
|
|
294
296
|
'click',
|
|
@@ -601,6 +603,7 @@ function fetch(force = false, showLoading = true) {
|
|
|
601
603
|
firstLoad.value = true;
|
|
602
604
|
})
|
|
603
605
|
.catch(() => {
|
|
606
|
+
data.value = null;
|
|
604
607
|
loading.value = false;
|
|
605
608
|
error.value = true;
|
|
606
609
|
});
|