Skip to main content
Development 2 min read 481 views

Svelte February 2026: Custom Select Elements and Remote Functions

Svelte's February 2026 update introduces custom select elements with remote data fetching, new button props for remote functions, and improvements to Node and Vercel adapters.

TD

TechDrop Editorial

Share:

The Svelte team released its February 2026 update, bringing several developer-requested features to the popular JavaScript framework. The update focuses on form handling improvements, with new custom select element capabilities and enhanced support for remote function calls through SvelteKit.

Custom Select Elements

Svelte now provides first-class support for custom select components with built-in remote data fetching capabilities. Developers can specify a fetch property with a URL for loading options from remote APIs, ideal for applications with large or dynamically changing datasets. The implementation includes intelligent optimizations like configurable debounce times and minimum query length parameters to minimize unnecessary API calls during user input. This feature aligns Svelte with popular community libraries like Svelecte and svelte-select while providing a standardized approach in the core framework.

Remote Functions Enhancement

SvelteKit's remote functions now support button props with enhanced form handling. The buttonProps property includes an enhance method for customizing submission behavior, and developers can use the formaction attribute to allow different buttons within a single form to submit to different endpoints. This enables patterns like a single form handling both login and registration depending on which button the user clicks, improving code organization and reducing duplication.

Adapter Improvements

The update includes refinements to the Node and Vercel adapters, improving deployment experiences across hosting platforms. These changes address edge cases in server-side rendering and optimize build outputs for production deployments. The full release notes are available on the official Svelte blog, with migration guides for teams upgrading from previous versions.

Related Articles