sit-onyx 1.3.0-dev-20251021054215 → 1.3.0-dev-20251021070623

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.
@@ -8575,6 +8575,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
8575
8575
  window.addEventListener("mousemove", onMouseMove, options);
8576
8576
  window.addEventListener("mouseup", abort, options);
8577
8577
  window.addEventListener("keydown", onKeydown, options);
8578
+ window.addEventListener("selectstart", (e) => e.preventDefault(), { ...options, passive: false });
8578
8579
  emit("start");
8579
8580
  };
8580
8581
  onMounted(() => {
@@ -8702,7 +8703,7 @@ const useResizing = (options) => createFeature((ctx) => {
8702
8703
  thAttributes: mergeVueProps(thAttributes, column.thAttributes)
8703
8704
  };
8704
8705
  });
8705
- columns.push({ key: FILLER_COLUMN, type: { name: FILLER_COLUMN }, label: "" });
8706
+ columns.push({ key: FILLER_COLUMN, type: { name: FILLER_COLUMN }, width: "auto", label: "" });
8706
8707
  return columns;
8707
8708
  };
8708
8709
  const renderWrapper = (slots, column, noResizeHandle) => {