vue3-components-plus 3.0.35 → 3.0.36

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.
@@ -77390,7 +77390,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
77390
77390
  const tableRef = ref$1(null);
77391
77391
  const internalPagination = reactive(createPagination());
77392
77392
  const internalSearchParams = reactive({});
77393
- const internalSortState = reactive({ prop: "", order: "" });
77393
+ const internalSortState = reactive({ sortField: "", sortOrder: "" });
77394
77394
  const pendingSelectionKeys = ref$1(/* @__PURE__ */ new Set());
77395
77395
  const selectionRowMap = reactive({});
77396
77396
  const isSyncingSelection = ref$1(false);
@@ -77525,8 +77525,8 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
77525
77525
  emit("selection-change", Object.values(selectionRowMap));
77526
77526
  }
77527
77527
  function handleSortChange2(sort) {
77528
- internalSortState.prop = sort ? sort.prop : "";
77529
- internalSortState.order = sort ? sort.order : "";
77528
+ internalSortState.sortField = sort ? sort.prop : "";
77529
+ internalSortState.sortOrder = sort ? sort.order : "";
77530
77530
  emit("sort-change", sort);
77531
77531
  emitSearch();
77532
77532
  }
@@ -77757,7 +77757,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
77757
77757
  };
77758
77758
  }
77759
77759
  });
77760
- const NsTableContainer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-662fa850"]]);
77760
+ const NsTableContainer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-515c43cf"]]);
77761
77761
  NsTableContainer.install = (app2) => {
77762
77762
  app2.component("NsTableContainer", NsTableContainer);
77763
77763
  };