reka-ui
Version:
Vue port for Radix UI Primitives.
11 lines (9 loc) • 394 B
JavaScript
import { getResizeHandleElementIndex } from "./dom.js";
//#region src/Splitter/utils/pivot.ts
function determinePivotIndices(groupId, dragHandleId, panelGroupElement) {
const index = getResizeHandleElementIndex(groupId, dragHandleId, panelGroupElement);
return index != null ? [index, index + 1] : [-1, -1];
}
//#endregion
export { determinePivotIndices };
//# sourceMappingURL=pivot.js.map