[eric] windows 1.1.63: drop the textarea + file-input squirrel-era ablations, restore contentEditable @-mention UI and the attach

paperclip on windows, plus a cubic-bezier cursor transition
This commit is contained in:
Eric
2026-05-26 02:42:56 -07:00
parent da61377d8c
commit 529d350cae
5 changed files with 38 additions and 77 deletions
@@ -259,7 +259,14 @@ const AgenticCursor = forwardRef<AgenticCursorHandle>((_props, ref) => {
zIndex: 10500,
pointerEvents: 'none',
transformOrigin: 'top left',
...(IS_WIN ? { transform: `translate(${storePos.x}px, ${storePos.y}px)` } : null),
...(IS_WIN
? {
transform: `translate(${storePos.x}px, ${storePos.y}px)`,
// Closest CSS approximation of the Mac spring (stiffness 260, damping 26): a softly easing ~420ms cubic-bezier. Without this the cursor teleports because the shim strips Framer's spring runtime.
transition: 'transform 420ms cubic-bezier(0.22, 1, 0.36, 1)',
willChange: 'transform',
}
: null),
}}
>
{visible && (