@mythpe/quasar-ui-qui 0.2.81 → 0.2.83
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
|
@@ -806,10 +806,10 @@ defineExpose({
|
|
|
806
806
|
v-close-popup
|
|
807
807
|
:class="{'full-width': isSmall}"
|
|
808
808
|
:label="__('myth.titles.done')"
|
|
809
|
-
color="
|
|
809
|
+
color="brand"
|
|
810
810
|
no-caps
|
|
811
811
|
style="min-width: 100px"
|
|
812
|
-
text-color="
|
|
812
|
+
text-color="on-brand"
|
|
813
813
|
unelevated
|
|
814
814
|
@click="search ? refresh() : undefined"
|
|
815
815
|
/>
|
|
@@ -821,10 +821,10 @@ defineExpose({
|
|
|
821
821
|
<MBtn
|
|
822
822
|
:class="{'full-width': isSmall}"
|
|
823
823
|
:label="__(`labels.${isSearchSelectedAll ? 'unselect':'select'}_all`)"
|
|
824
|
-
color="
|
|
824
|
+
color="brand"
|
|
825
825
|
no-caps
|
|
826
826
|
style="min-width: 100px"
|
|
827
|
-
text-color="
|
|
827
|
+
text-color="on-brand"
|
|
828
828
|
unelevated
|
|
829
829
|
@click="onCustomSearchClick()"
|
|
830
830
|
/>
|
|
@@ -1063,20 +1063,20 @@ defineExpose({
|
|
|
1063
1063
|
v-if="$q.screen.gt.xs"
|
|
1064
1064
|
v-close-popup
|
|
1065
1065
|
:class="{'q-mr-sm': !$q.screen.xs}"
|
|
1066
|
-
color="
|
|
1066
|
+
color="brand"
|
|
1067
1067
|
label="labels.close"
|
|
1068
1068
|
no-caps
|
|
1069
1069
|
style="min-width: 100px"
|
|
1070
|
-
text-color="
|
|
1070
|
+
text-color="on-brand"
|
|
1071
1071
|
unelevated
|
|
1072
1072
|
/>
|
|
1073
1073
|
<MBtn
|
|
1074
1074
|
:class="{'full-width': $q.screen.xs}"
|
|
1075
1075
|
:label="__(`labels.${visibleHeaders.length === getHeaders.length ? 'unselect':'select'}_all`)"
|
|
1076
|
-
color="
|
|
1076
|
+
color="brand"
|
|
1077
1077
|
no-caps
|
|
1078
1078
|
style="min-width: 100px"
|
|
1079
|
-
text-color="
|
|
1079
|
+
text-color="on-brand"
|
|
1080
1080
|
unelevated
|
|
1081
1081
|
@click="onManageColumnsClick()"
|
|
1082
1082
|
/>
|
|
@@ -1139,10 +1139,11 @@ defineExpose({
|
|
|
1139
1139
|
>
|
|
1140
1140
|
<q-chip
|
|
1141
1141
|
clickable
|
|
1142
|
-
color="
|
|
1142
|
+
color="brand"
|
|
1143
1143
|
icon-remove="clear"
|
|
1144
1144
|
outline
|
|
1145
1145
|
removable
|
|
1146
|
+
text-color="on-brand"
|
|
1146
1147
|
@click="openFilterDialog()"
|
|
1147
1148
|
@remove="onRemoveFilter(filterKey)"
|
|
1148
1149
|
>
|
|
@@ -12,7 +12,7 @@ import { useMyth } from '../../composable'
|
|
|
12
12
|
import type { MDtCopyColumnProps } from '../../types'
|
|
13
13
|
|
|
14
14
|
interface Props {
|
|
15
|
-
label?: MDtCopyColumnProps['
|
|
15
|
+
label?: MDtCopyColumnProps['label'];
|
|
16
16
|
value?: MDtCopyColumnProps['value'];
|
|
17
17
|
width?: MDtCopyColumnProps['width'];
|
|
18
18
|
}
|
|
@@ -40,6 +40,7 @@ defineOptions({
|
|
|
40
40
|
</q-tooltip>
|
|
41
41
|
</div>
|
|
42
42
|
<q-btn
|
|
43
|
+
v-if="!!value"
|
|
43
44
|
dense
|
|
44
45
|
flat
|
|
45
46
|
icon="ion-copy"
|