@monoui/vuejs 1.1.66 → 1.1.68
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 +20 -3
package/package.json
CHANGED
|
@@ -190,9 +190,8 @@
|
|
|
190
190
|
class="d-flex justify-content-between align-items-center mt-2"
|
|
191
191
|
>
|
|
192
192
|
<slot name="pagination-filters">
|
|
193
|
-
<div>
|
|
193
|
+
<div class="pl-2">
|
|
194
194
|
<div v-show="!isDataEmpty">
|
|
195
|
-
<span>Show</span>
|
|
196
195
|
<b-dropdown
|
|
197
196
|
:text="itemPerPageText"
|
|
198
197
|
class="m-md-2"
|
|
@@ -301,13 +300,24 @@
|
|
|
301
300
|
</small>
|
|
302
301
|
</b-dropdown-item>
|
|
303
302
|
|
|
303
|
+
<b-dropdown-divider />
|
|
304
|
+
|
|
305
|
+
<b-dropdown-item
|
|
306
|
+
:to="{
|
|
307
|
+
name: 'Exports'
|
|
308
|
+
}"
|
|
309
|
+
>
|
|
310
|
+
<mui-icon icon="link" class="mr-1" />
|
|
311
|
+
Go Downloads
|
|
312
|
+
</b-dropdown-item>
|
|
313
|
+
|
|
304
314
|
<slot name="pagination-export-item"></slot>
|
|
305
315
|
</b-dropdown>
|
|
306
316
|
</template>
|
|
307
317
|
</div>
|
|
308
318
|
</slot>
|
|
309
319
|
<slot name="pagination-buttons">
|
|
310
|
-
<div>
|
|
320
|
+
<div class="pr-3">
|
|
311
321
|
<b-pagination
|
|
312
322
|
v-if="settings.pageCount > 1"
|
|
313
323
|
v-model="settings.currentPage"
|
|
@@ -646,6 +656,13 @@ export default {
|
|
|
646
656
|
this.$emit("loading", this.isLoading);
|
|
647
657
|
const { currentPage, itemPerPage } = this.settings;
|
|
648
658
|
|
|
659
|
+
if (exportScope) {
|
|
660
|
+
this.$successToast(
|
|
661
|
+
"Export Started",
|
|
662
|
+
"The export process has begun. Please wait... Once completed, you can download it from the Reports/Exports page."
|
|
663
|
+
);
|
|
664
|
+
}
|
|
665
|
+
|
|
649
666
|
let result = await this.requestFunction(
|
|
650
667
|
this.filters,
|
|
651
668
|
this.sorting,
|