evui 3.4.19 → 3.4.20
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 +179 -170
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +179 -170
- 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 +9 -1
- package/src/components/grid/grid.toolbar.vue +1 -1
- package/src/components/grid/style/grid.scss +3 -1
- package/src/components/treeGrid/treeGrid.toolbar.vue +1 -1
package/package.json
CHANGED
|
@@ -13,6 +13,13 @@
|
|
|
13
13
|
class="filtering"
|
|
14
14
|
:style="{ width: `${filteringItemsWidth}px` }"
|
|
15
15
|
>
|
|
16
|
+
<div
|
|
17
|
+
v-if="isFiltering && !Object.keys(filteringItemsByColumn).length"
|
|
18
|
+
class="filtering-items filtering-items--used"
|
|
19
|
+
>
|
|
20
|
+
<ev-icon icon="ev-icon-filter-list" />
|
|
21
|
+
<span>Filter</span>
|
|
22
|
+
</div>
|
|
16
23
|
<div
|
|
17
24
|
v-if="isFiltering && Object.keys(filteringItemsByColumn).length"
|
|
18
25
|
ref="filteringItemsRef"
|
|
@@ -874,7 +881,8 @@ export default {
|
|
|
874
881
|
contextInfo.menu?.hide(e);
|
|
875
882
|
}
|
|
876
883
|
if (e.type === 'scroll' && !e.target.classList?.contains('table-body')
|
|
877
|
-
&& !e.target.offsetParent?.classList?.contains('ev-grid-column-setting')
|
|
884
|
+
&& !e.target.offsetParent?.classList?.contains('ev-grid-column-setting')
|
|
885
|
+
&& !e.target.offsetParent?.classList?.contains('ev-text-field-wrapper')) {
|
|
878
886
|
contextInfo.columnMenu?.hide(e);
|
|
879
887
|
columnSettingInfo.isShowColumnSetting = false;
|
|
880
888
|
filterInfo.isShowFilterSetting = false;
|