@drax/crud-vue 0.23.0 → 0.24.0
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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.24.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"format": "prettier --write src/"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@drax/common-front": "^0.
|
|
28
|
-
"@drax/crud-front": "^0.
|
|
29
|
-
"@drax/crud-share": "^0.
|
|
30
|
-
"@drax/media-vue": "^0.
|
|
27
|
+
"@drax/common-front": "^0.24.0",
|
|
28
|
+
"@drax/crud-front": "^0.24.0",
|
|
29
|
+
"@drax/crud-share": "^0.24.0",
|
|
30
|
+
"@drax/media-vue": "^0.24.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"pinia": "^2.2.2",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"vue-tsc": "^2.1.10",
|
|
65
65
|
"vuetify": "^3.8.2"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "3e6de6c6155a2a0f2e0dae36849dec7db6eb0b09"
|
|
68
68
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import {useI18n} from "vue-i18n";
|
|
3
3
|
import {debounce} from "@drax/common-front"
|
|
4
|
-
import {ref, defineModel} from "vue"
|
|
4
|
+
import {ref, defineModel, watch} from "vue"
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
const {t} = useI18n()
|
|
@@ -9,6 +9,10 @@ const model = defineModel<any>()
|
|
|
9
9
|
|
|
10
10
|
let input = ref(model.value)
|
|
11
11
|
|
|
12
|
+
watch(() => model.value, (newValue) => {
|
|
13
|
+
input.value = newValue
|
|
14
|
+
})
|
|
15
|
+
|
|
12
16
|
const debouncedSearch = debounce(updateModel, 500)
|
|
13
17
|
|
|
14
18
|
function updateModel() {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type {IDraxPaginateResult, IEntityCrud} from "@drax/crud-share";
|
|
2
2
|
import {useCrudStore} from "../stores/UseCrudStore";
|
|
3
|
-
import {computed, toRaw} from "vue";
|
|
3
|
+
import {computed, nextTick, toRaw} from "vue";
|
|
4
4
|
import getItemId from "../helpers/getItemId";
|
|
5
5
|
|
|
6
6
|
export function useCrud(entity: IEntityCrud) {
|
|
@@ -351,7 +351,12 @@ export function useCrud(entity: IEntityCrud) {
|
|
|
351
351
|
|
|
352
352
|
async function clearFilters(){
|
|
353
353
|
prepareFilters()
|
|
354
|
-
|
|
354
|
+
store.setSearch("")
|
|
355
|
+
search.value = ""
|
|
356
|
+
await nextTick(async () => {
|
|
357
|
+
await doPaginate()
|
|
358
|
+
})
|
|
359
|
+
|
|
355
360
|
}
|
|
356
361
|
|
|
357
362
|
async function applyFilters(){
|