UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

7 lines 418 B
export function computeNextValue(inputElement, insertedString) { const value = inputElement.value; const selectionStart = inputElement.selectionStart; const selectionEnd = inputElement.selectionEnd; return `${value.substring(0, selectionStart === null ? 0 : selectionStart)}${insertedString}${value.substring(selectionEnd === null ? 0 : selectionEnd)}`; } //# sourceMappingURL=compute-next-value.js.map