tsv2-library 1.1.0-dev-alpha.29 → 1.1.0-dev-alpha.31
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/tsv2-library.es.js
CHANGED
|
@@ -54750,7 +54750,10 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
|
|
|
54750
54750
|
const currentPageData = computed(
|
|
54751
54751
|
() => {
|
|
54752
54752
|
var _a;
|
|
54753
|
-
return props.lazy ? currentPageTableData.value : (_a = props.data) == null ? void 0 : _a.slice(
|
|
54753
|
+
return props.lazy ? currentPageTableData.value : (_a = props.data) == null ? void 0 : _a.slice(
|
|
54754
|
+
first3.value,
|
|
54755
|
+
props.usePaginator ? first3.value + tableRows.value : void 0
|
|
54756
|
+
);
|
|
54754
54757
|
}
|
|
54755
54758
|
);
|
|
54756
54759
|
const isSelectedAll = computed(() => {
|
|
@@ -62892,7 +62895,6 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
|
|
|
62892
62895
|
};
|
|
62893
62896
|
const closeDialog = () => {
|
|
62894
62897
|
emit("select", selectedData.value);
|
|
62895
|
-
showValidator.value = false;
|
|
62896
62898
|
visible4.value = false;
|
|
62897
62899
|
};
|
|
62898
62900
|
const resetState = () => {
|
|
@@ -62924,6 +62926,11 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
|
|
|
62924
62926
|
watch(visible4, (value) => {
|
|
62925
62927
|
if (value) {
|
|
62926
62928
|
clearFilter3();
|
|
62929
|
+
parseFilter();
|
|
62930
|
+
showValidator.value = false;
|
|
62931
|
+
selectedData.value = [];
|
|
62932
|
+
searchModel.value = void 0;
|
|
62933
|
+
showFilter.value = false;
|
|
62927
62934
|
containerKey.value++;
|
|
62928
62935
|
dataTableKey.value++;
|
|
62929
62936
|
}
|