@mythpe/quasar-ui-qui 0.3.61 → 0.3.63
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
|
@@ -92,6 +92,7 @@ type Props = {
|
|
|
92
92
|
copyColumns?: MDatatableProps['copyColumns'];
|
|
93
93
|
descColumns?: MDatatableProps['descColumns'];
|
|
94
94
|
help?: MDatatableProps['help'];
|
|
95
|
+
titleClass?: MDatatableProps['titleClass'];
|
|
95
96
|
subtitle?: MDatatableProps['subtitle'];
|
|
96
97
|
subtitleClass?: MDatatableProps['subtitleClass'];
|
|
97
98
|
noWrapBtn?: boolean;
|
|
@@ -167,6 +168,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
167
168
|
copyColumns: undefined,
|
|
168
169
|
descColumns: undefined,
|
|
169
170
|
help: undefined,
|
|
171
|
+
titleClass: undefined,
|
|
170
172
|
subtitle: undefined,
|
|
171
173
|
subtitleClass: undefined,
|
|
172
174
|
noWrapBtn: undefined,
|
|
@@ -758,6 +760,7 @@ defineExpose({
|
|
|
758
760
|
auto
|
|
759
761
|
>
|
|
760
762
|
<q-btn
|
|
763
|
+
class="m-datatable__table-back-btn"
|
|
761
764
|
:icon="backIcon || `ion-ios-arrow-${$q.lang.rtl ? 'forward' : 'back'}`"
|
|
762
765
|
flat
|
|
763
766
|
@click="$router.back()"
|
|
@@ -767,7 +770,7 @@ defineExpose({
|
|
|
767
770
|
<MCol col>
|
|
768
771
|
<div
|
|
769
772
|
v-if="!!getTableTitle"
|
|
770
|
-
class="text-h5 ellipsis"
|
|
773
|
+
:class="['text-h5 ellipsis m-datatable__table-title',titleClass]"
|
|
771
774
|
>
|
|
772
775
|
<span>{{ getTableTitle }}</span>
|
|
773
776
|
<span v-if="!!help">
|
|
@@ -794,7 +797,7 @@ defineExpose({
|
|
|
794
797
|
>
|
|
795
798
|
<div
|
|
796
799
|
v-if="!!subtitle"
|
|
797
|
-
:class="subtitleClass"
|
|
800
|
+
:class="['m-datatable__table-subtitle',subtitleClass]"
|
|
798
801
|
>
|
|
799
802
|
{{ __(subtitle) }}
|
|
800
803
|
</div>
|
|
@@ -1020,10 +1023,10 @@ defineExpose({
|
|
|
1020
1023
|
@before-show="beforeCloseFilterDialog"
|
|
1021
1024
|
>
|
|
1022
1025
|
<q-card
|
|
1023
|
-
fstyle="$q.screen.gt.sm?`width: ${Math.ceil($q.screen.width/2)}px` : undefined"
|
|
1024
|
-
style="max-width: 700px"
|
|
1025
1026
|
flat
|
|
1027
|
+
fstyle="$q.screen.gt.sm?`width: ${Math.ceil($q.screen.width/2)}px` : undefined"
|
|
1026
1028
|
square
|
|
1029
|
+
style="max-width: 700px"
|
|
1027
1030
|
>
|
|
1028
1031
|
<MContainer class="q-pa-lg">
|
|
1029
1032
|
<q-toolbar :class="{'q-pa-none': isSmall}">
|