@tekkare/auriga 0.1.155 → 0.1.156
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
|
@@ -376,7 +376,6 @@ export default defineComponent({
|
|
|
376
376
|
saveTable.value = Object.assign([], [...new Set(fillTable.value)]);
|
|
377
377
|
dataValues.value = fillTable.value;
|
|
378
378
|
currentPage.value = 1;
|
|
379
|
-
setCrop();
|
|
380
379
|
}
|
|
381
380
|
);
|
|
382
381
|
watch(
|
|
@@ -670,9 +669,6 @@ export default defineComponent({
|
|
|
670
669
|
showToggle.value = props.toggleDisplay;
|
|
671
670
|
}
|
|
672
671
|
onMounted(() => {
|
|
673
|
-
setCrop();
|
|
674
|
-
});
|
|
675
|
-
function setCrop() {
|
|
676
672
|
setTimeout(() => {
|
|
677
673
|
if (props.autoCrop) {
|
|
678
674
|
hasReadMore.value = [];
|
|
@@ -688,7 +684,7 @@ export default defineComponent({
|
|
|
688
684
|
});
|
|
689
685
|
}
|
|
690
686
|
}, 100);
|
|
691
|
-
}
|
|
687
|
+
});
|
|
692
688
|
function applyToggleCrop(index, value) {
|
|
693
689
|
if (toggleCrop.value !== null) {
|
|
694
690
|
if (toggleCrop.value.index === index && toggleCrop.value.value === value) {
|