@mythpe/quasar-ui-qui 0.2.80 → 0.2.81
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
|
@@ -878,10 +878,11 @@ defineExpose({
|
|
|
878
878
|
<MDtBtn
|
|
879
879
|
v-if="hasFilterDialog"
|
|
880
880
|
key="filter-selection-btn"
|
|
881
|
-
|
|
881
|
+
color="brand"
|
|
882
|
+
icon="ion-ios-options"
|
|
882
883
|
label="myth.datatable.hints.filter"
|
|
883
|
-
|
|
884
|
-
v-bind="{...
|
|
884
|
+
text-color="on-brand"
|
|
885
|
+
v-bind="{...pluginOptions.dt?.buttons?.filter as any}"
|
|
885
886
|
>
|
|
886
887
|
<MModalMenu
|
|
887
888
|
v-model="filterDialogModel"
|
|
@@ -896,10 +897,7 @@ defineExpose({
|
|
|
896
897
|
flat
|
|
897
898
|
square
|
|
898
899
|
>
|
|
899
|
-
<MContainer
|
|
900
|
-
:fluid="!1"
|
|
901
|
-
class="q-pa-md"
|
|
902
|
-
>
|
|
900
|
+
<MContainer class="q-pa-lg">
|
|
903
901
|
<q-toolbar :class="{'q-pa-none': isSmall}">
|
|
904
902
|
<q-toolbar-title>
|
|
905
903
|
{{ __('myth.datatable.filter.title') }}
|
|
@@ -908,10 +906,7 @@ defineExpose({
|
|
|
908
906
|
<q-separator />
|
|
909
907
|
<MRow class="items-center">
|
|
910
908
|
<MCol col="12">
|
|
911
|
-
<MContainer
|
|
912
|
-
:fluid="!1"
|
|
913
|
-
class="q-pa-md"
|
|
914
|
-
>
|
|
909
|
+
<MContainer class="q-pa-lg">
|
|
915
910
|
<slot
|
|
916
911
|
:dt="datatableItemsScope"
|
|
917
912
|
:filter="tempFilterForm"
|
|
@@ -930,6 +925,7 @@ defineExpose({
|
|
|
930
925
|
<MBtn
|
|
931
926
|
v-close-popup
|
|
932
927
|
:label="__('myth.datatable.filter.save')"
|
|
928
|
+
style="min-width: 110px"
|
|
933
929
|
v-bind="pluginOptions.dt?.dialogButtonsProps as any"
|
|
934
930
|
@click="saveFilterDialog"
|
|
935
931
|
/>
|
|
@@ -937,7 +933,7 @@ defineExpose({
|
|
|
937
933
|
v-close-popup
|
|
938
934
|
:label="__('myth.datatable.filter.cancel')"
|
|
939
935
|
color="secondary"
|
|
940
|
-
|
|
936
|
+
style="min-width: 100px"
|
|
941
937
|
v-bind="pluginOptions.dt?.dialogButtonsProps as any"
|
|
942
938
|
@click="closeFilterDialog"
|
|
943
939
|
/>
|
|
@@ -1029,8 +1025,10 @@ defineExpose({
|
|
|
1029
1025
|
<MDtBtn
|
|
1030
1026
|
key="manage-columns-btn"
|
|
1031
1027
|
:disable="loading"
|
|
1028
|
+
color="brand"
|
|
1032
1029
|
icon="ion-ios-desktop"
|
|
1033
1030
|
label="myth.datatable.columnsToShow"
|
|
1031
|
+
text-color="on-brand"
|
|
1034
1032
|
tooltip="myth.datatable.columnsToShowCaption"
|
|
1035
1033
|
>
|
|
1036
1034
|
<MModalMenu
|