@monoui/vuejs 1.1.66 → 1.1.67
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/main.js +2 -2
- package/package.json +1 -1
- package/src/components/Table/Table.vue +18 -0
package/package.json
CHANGED
|
@@ -301,6 +301,17 @@
|
|
|
301
301
|
</small>
|
|
302
302
|
</b-dropdown-item>
|
|
303
303
|
|
|
304
|
+
<b-dropdown-divider />
|
|
305
|
+
|
|
306
|
+
<b-dropdown-item
|
|
307
|
+
:to="{
|
|
308
|
+
name: 'Exports'
|
|
309
|
+
}"
|
|
310
|
+
>
|
|
311
|
+
<mui-icon icon="link" class="mr-1" />
|
|
312
|
+
Go Downloads
|
|
313
|
+
</b-dropdown-item>
|
|
314
|
+
|
|
304
315
|
<slot name="pagination-export-item"></slot>
|
|
305
316
|
</b-dropdown>
|
|
306
317
|
</template>
|
|
@@ -646,6 +657,13 @@ export default {
|
|
|
646
657
|
this.$emit("loading", this.isLoading);
|
|
647
658
|
const { currentPage, itemPerPage } = this.settings;
|
|
648
659
|
|
|
660
|
+
if (exportScope) {
|
|
661
|
+
this.$successToast(
|
|
662
|
+
"Export Started",
|
|
663
|
+
"The export process has begun. Please wait... Once completed, you can download it from the Reports/Exports page."
|
|
664
|
+
);
|
|
665
|
+
}
|
|
666
|
+
|
|
649
667
|
let result = await this.requestFunction(
|
|
650
668
|
this.filters,
|
|
651
669
|
this.sorting,
|