@lx-frontend/wrap-element-ui 1.0.15-beta.1 → 1.0.15-beta.2
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lx-frontend/wrap-element-ui",
|
|
3
|
-
"version": "1.0.15-beta.
|
|
3
|
+
"version": "1.0.15-beta.2",
|
|
4
4
|
"description": "wrap-element-ui",
|
|
5
5
|
"author": "",
|
|
6
6
|
"main": "src/components/index.ts",
|
|
@@ -70,5 +70,8 @@
|
|
|
70
70
|
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
71
71
|
"vite-tsconfig-paths": "^4.3.2",
|
|
72
72
|
"vue-template-compiler": "^2.6.10"
|
|
73
|
+
},
|
|
74
|
+
"dependencies": {
|
|
75
|
+
"@lx-frontend/wrap-element-ui": "1.0.15-beta.1"
|
|
73
76
|
}
|
|
74
77
|
}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
import {
|
|
34
34
|
disableOutOfRangeOptions, formatMonthDayPickerValue,
|
|
35
35
|
getMonthDayPickerDefaultOptions
|
|
36
|
-
} from '
|
|
36
|
+
} from './BizMonthDayPicker.helper';
|
|
37
37
|
import { computed, toRefs } from 'vue';
|
|
38
38
|
import { IFilterMonthDayPicker } from '../../types';
|
|
39
39
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
:temp-sort-type="tempSortType"
|
|
35
35
|
@update:sort="(type, prop) => emit('update:sort', type, prop)"
|
|
36
36
|
/>
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
<div
|
|
39
39
|
v-if="column.filters"
|
|
40
40
|
class="editable-table__filter-group"
|
|
@@ -99,16 +99,15 @@
|
|
|
99
99
|
</template>
|
|
100
100
|
|
|
101
101
|
<script setup lang="ts">
|
|
102
|
+
import { ref } from 'vue'
|
|
103
|
+
|
|
102
104
|
import BizCheckboxFilter from './BizCheckboxFilter.vue';
|
|
103
105
|
import BizColorRadioFilter from './BizColorRadioFilter.vue';
|
|
104
|
-
import BizDoubleDatePickerFilter
|
|
105
|
-
from './BizDoubleDatePickerFilter.vue';
|
|
106
|
+
import BizDoubleDatePickerFilter from './BizDoubleDatePickerFilter.vue';
|
|
106
107
|
import BizInputFilter from './BizInputFilter.vue';
|
|
107
108
|
import BizMonthDayPicker from './BizMonthDayPicker.vue';
|
|
108
|
-
import BizRadioFilter from './BizRadioFilter.vue';
|
|
109
109
|
import BizSortFilter from './BizSortFilter.vue';
|
|
110
|
-
|
|
111
|
-
import { ref } from 'vue'
|
|
110
|
+
import BizRadioFilter from "./BizRadioFilter.vue";
|
|
112
111
|
import { FilterItem, IColumnConfig } from '../../types'
|
|
113
112
|
|
|
114
113
|
defineProps<{
|