@lx-frontend/wrap-element-ui 1.0.14-beta.5 → 1.0.14-beta.7
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 +1 -1
- package/src/components/EditableTable/bizHooks/useColumnHeaderOperation.ts +3 -0
- package/src/components/EditableTable/features/bizTableHeaderPopover/index.vue +1 -1
- package/src/components/EditableTable/types/index.ts +2 -2
- /package/src/components/EditableTable/features/bizTableHeaderPopover/{filter.vue → bizFilter.vue} +0 -0
package/package.json
CHANGED
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
<script setup lang="ts">
|
|
147
147
|
import Search from './search.vue'
|
|
148
148
|
import Sort from './sort.vue'
|
|
149
|
-
import BizFilter from './
|
|
149
|
+
import BizFilter from './bizFilter.vue'
|
|
150
150
|
|
|
151
151
|
import { ref } from 'vue'
|
|
152
152
|
import { IColumnConfig } from '../../types'
|
|
@@ -71,8 +71,8 @@ type DoubleDatePickerSearchOption = {
|
|
|
71
71
|
type SlotSearchOption = {
|
|
72
72
|
prop: string | string[]
|
|
73
73
|
label: string
|
|
74
|
-
type: 'slot'
|
|
75
|
-
slotName:
|
|
74
|
+
type: 'slot'
|
|
75
|
+
slotName: string
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
type ISearchOptions = (InputSearchOption | DoubleDatePickerSearchOption | SlotSearchOption)[]
|
/package/src/components/EditableTable/features/bizTableHeaderPopover/{filter.vue → bizFilter.vue}
RENAMED
|
File without changes
|