@mythpe/quasar-ui-qui 0.3.21 → 0.3.23
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/package.json
CHANGED
|
@@ -918,6 +918,7 @@ defineExpose({
|
|
|
918
918
|
<!-- Export PDF-->
|
|
919
919
|
<MDtBtn
|
|
920
920
|
v-if="pdf && getRows.length > 0"
|
|
921
|
+
:disable="loading"
|
|
921
922
|
icon="fa-solid fa-file-pdf"
|
|
922
923
|
v-bind="{...defaultTopBtnProps,...pluginOptions.dt?.buttons?.filter as any, textColor: 'red'}"
|
|
923
924
|
@click="exportData('pdf')"
|
|
@@ -930,6 +931,7 @@ defineExpose({
|
|
|
930
931
|
<MDtBtn
|
|
931
932
|
v-if="excel && getRows.length > 0"
|
|
932
933
|
icon="fa-solid fa-file-excel"
|
|
934
|
+
:disable="loading"
|
|
933
935
|
v-bind="{...defaultTopBtnProps,...pluginOptions.dt?.buttons?.filter as any, textColor: 'green'}"
|
|
934
936
|
@click="exportData('excel')"
|
|
935
937
|
>
|
|
@@ -945,6 +947,7 @@ defineExpose({
|
|
|
945
947
|
icon="ion-ios-options"
|
|
946
948
|
label="myth.datatable.hints.filter"
|
|
947
949
|
text-color="on-brand"
|
|
950
|
+
:disable="loading"
|
|
948
951
|
v-bind="{...pluginOptions.dt?.buttons?.filter as any}"
|
|
949
952
|
>
|
|
950
953
|
<MModalMenu
|
|
@@ -1666,7 +1669,7 @@ defineExpose({
|
|
|
1666
1669
|
</q-page-sticky>
|
|
1667
1670
|
|
|
1668
1671
|
<MInnerLoading
|
|
1669
|
-
:showing="loading && !search"
|
|
1672
|
+
:showing="loading && !search && !getRows.length"
|
|
1670
1673
|
style="z-index: 10000"
|
|
1671
1674
|
/>
|
|
1672
1675
|
</div>
|
package/src/components/index.ts
CHANGED