Skip to content

Commit

Permalink
fix: allow bind:this with dynamic type on inputs (#9713)
Browse files Browse the repository at this point in the history
fixes #9709
  • Loading branch information
dummdidumm committed Nov 30, 2023
1 parent 1fe0152 commit f88895e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/great-icons-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'svelte': patch
---

fix: allow `bind:this` with dynamic type on inputs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export const validation = {
);
}

if (parent.name === 'input') {
if (parent.name === 'input' && node.name !== 'this') {
const type = /** @type {import('#compiler').Attribute | undefined} */ (
parent.attributes.find((a) => a.type === 'Attribute' && a.name === 'type')
);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<script>
let foo;
let inputType;
</script>

<input bind:this={foo} type={inputType}>

1 comment on commit f88895e

@vercel
Copy link

@vercel vercel bot commented on f88895e Nov 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

svelte-5-preview – ./sites/svelte-5-preview

svelte-octane.vercel.app
svelte-5-preview.vercel.app
svelte-5-preview-git-main-svelte.vercel.app
svelte-5-preview-svelte.vercel.app

Please sign in to comment.