@tekkare/auriga 0.1.154 → 0.1.155
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/module.json
CHANGED
|
@@ -251,12 +251,10 @@ import argBtn from "./argBtn.vue";
|
|
|
251
251
|
import argSortIcon from "./argSortIcon.vue";
|
|
252
252
|
import {
|
|
253
253
|
onMounted,
|
|
254
|
-
onUpdated,
|
|
255
254
|
ref,
|
|
256
255
|
computed,
|
|
257
256
|
watch,
|
|
258
|
-
defineComponent
|
|
259
|
-
onUnmounted
|
|
257
|
+
defineComponent
|
|
260
258
|
} from "vue";
|
|
261
259
|
export default defineComponent({
|
|
262
260
|
name: "argTable",
|
|
@@ -385,7 +383,6 @@ export default defineComponent({
|
|
|
385
383
|
() => props.heads,
|
|
386
384
|
(newHeads) => {
|
|
387
385
|
getColumnTypes();
|
|
388
|
-
setCrop();
|
|
389
386
|
}
|
|
390
387
|
);
|
|
391
388
|
watch(searchKey, (newSearchKey) => {
|
|
@@ -674,13 +671,6 @@ export default defineComponent({
|
|
|
674
671
|
}
|
|
675
672
|
onMounted(() => {
|
|
676
673
|
setCrop();
|
|
677
|
-
document.addEventListener("resize", setCrop);
|
|
678
|
-
});
|
|
679
|
-
onUpdated(() => {
|
|
680
|
-
setCrop();
|
|
681
|
-
});
|
|
682
|
-
onUnmounted(() => {
|
|
683
|
-
document.removeEventListener("resize", setCrop);
|
|
684
674
|
});
|
|
685
675
|
function setCrop() {
|
|
686
676
|
setTimeout(() => {
|
|
@@ -697,7 +687,7 @@ export default defineComponent({
|
|
|
697
687
|
}
|
|
698
688
|
});
|
|
699
689
|
}
|
|
700
|
-
},
|
|
690
|
+
}, 100);
|
|
701
691
|
}
|
|
702
692
|
function applyToggleCrop(index, value) {
|
|
703
693
|
if (toggleCrop.value !== null) {
|