evui 3.4.10 → 3.4.11
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/evui.common.js +74 -73
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +74 -73
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/grid/Grid.vue +11 -5
package/package.json
CHANGED
|
@@ -56,22 +56,27 @@
|
|
|
56
56
|
class="filtering-items__item"
|
|
57
57
|
@click.stop="onClickFilteringItem(
|
|
58
58
|
{
|
|
59
|
-
caption: filteringItemsByColumn[field]
|
|
59
|
+
caption: filteringItemsByColumn[field]
|
|
60
|
+
?.[filteringItemsByColumn[field].length - 1].caption,
|
|
60
61
|
field: field,
|
|
61
62
|
},
|
|
62
63
|
filteringItemsByColumn[field],
|
|
63
64
|
)"
|
|
64
65
|
>
|
|
65
66
|
<span class="filtering-items__item--title">
|
|
66
|
-
{{ filteringItemsByColumn[field]
|
|
67
|
+
{{ filteringItemsByColumn[field]
|
|
68
|
+
?.[filteringItemsByColumn[field].length - 1].caption }}
|
|
67
69
|
</span>
|
|
68
70
|
<span
|
|
69
71
|
v-if="filteringItemsByColumn[field].length < 2"
|
|
70
72
|
class="filtering-items__item--value"
|
|
71
|
-
:title="`${filteringItemsByColumn[field]
|
|
73
|
+
:title="`${filteringItemsByColumn[field]
|
|
74
|
+
?.[filteringItemsByColumn[field].length - 1].value}`"
|
|
72
75
|
>
|
|
73
|
-
{{ filteringItemsByColumn[field]
|
|
74
|
-
|
|
76
|
+
{{ filteringItemsByColumn[field]
|
|
77
|
+
?.[filteringItemsByColumn[field].length - 1].comparison }}
|
|
78
|
+
{{ filteringItemsByColumn[field]
|
|
79
|
+
?.[filteringItemsByColumn[field].length - 1].value }}
|
|
75
80
|
</span>
|
|
76
81
|
<span
|
|
77
82
|
v-else
|
|
@@ -1132,6 +1137,7 @@ export default {
|
|
|
1132
1137
|
filterInfo.filteringItemsByColumn[field]?.splice(idx, 1);
|
|
1133
1138
|
if (!filterInfo.filteringItemsByColumn[field].length) {
|
|
1134
1139
|
delete filterInfo.filteringItemsByColumn[field];
|
|
1140
|
+
isShowFilteringItemsBox.value = false;
|
|
1135
1141
|
}
|
|
1136
1142
|
stores.filterStore = [];
|
|
1137
1143
|
setStore([], false);
|