Dominic Gannaway
3d0bc34149
fix: address untracked_writes memory leak ( #15694 )
...
* fix-untracked-writes-leak
* fix
* fix
* Update packages/svelte/src/internal/client/runtime.js
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
---------
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
5 months ago
github-actions[bot]
c544a59351
Version Packages ( #15665 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
5 months ago
Dominic Gannaway
80557bbc1c
fix: ensure clearing of old values happens independent of root flushes ( #15664 )
...
* fix: ensure clearing of old values happens indepedent of root flushes
* lint
* test
5 months ago
github-actions[bot]
5b9053d111
Version Packages ( #15650 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
5 months ago
Simon H
959f593487
fix: ignore generic type arguments while creating AST ( #15659 )
...
* fix: ignore generic type arguments while creating AST
bumps esrap and fixes a resulting error: because esrap now uses a more compliant TSESTree AST, it has `typeArguments` instead of `typeParameters` in some places - those were not deleted while stripping types, which caused an error.
* fix $$render_inner declaration
5 months ago
7nik
e035e2838f
Fix: consider component and its snippets during css pruning ( #15630 )
...
* fix: consider component and its snippets during css pruning
* add changeset
* fix: avoid iterator.map
---------
Co-authored-by: 7nik <kifiranet@gmail.com>
5 months ago
github-actions[bot]
c822f9b0bf
Version Packages ( #15649 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
5 months ago
ComputerGuy
ec91cacab2
init ( #15628 )
5 months ago
Simon H
97542048df
fix: silence assignment warning on more function bindings ( #15644 )
...
* fix: silence assignment warning on more function bindings
fixes #15550
* Update packages/svelte/tests/html_equal.js
5 months ago
Simon H
046145fdd7
fix: make sure CSS is preserved during SSR with bindings ( #15645 )
...
fixes #15543
No test because this is a one-liner in a stable part of the code-base, also it can only happen within legacy mode when using bindings which is not getting any new updates at this point
5 months ago
github-actions[bot]
d6d99ca2fd
Version Packages ( #15647 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
5 months ago
Simon H
b93d004d98
fix: ensure `undefined` class still applies scoping class, if necessary ( #15643 )
...
fixes #15635
5 months ago
Simon H
6f8068637c
fix: support TS type assertions ( #15642 )
...
fixes #15565
5 months ago
github-actions[bot]
f498a21063
Version Packages ( #15587 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Paolo Ricciuti
3080c1334e
fix: prevent state runes from being called with spread ( #15585 )
...
* fix: prevent state runes from being called with spread
* prevent spread arguments for all runes except $inspect
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
github-actions[bot]
7fe9bf524b
Version Packages ( #15582 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Paolo Ricciuti
33d118f8a2
feat: migrate reassigned deriveds to `$derived` ( #15581 )
6 months ago
github-actions[bot]
c1ae8953aa
Version Packages ( #15580 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Blade Barringer
d1bd32ec9e
fix: allow get_proxied_value to return original value when error ( #15577 )
...
* fix: allow get_proxied_value to return original value when error
closes #15546
* Update packages/svelte/src/internal/client/proxy.js
---------
Co-authored-by: Rich Harris <hello@rich-harris.dev>
6 months ago
github-actions[bot]
6e343b9ad7
Version Packages ( #15578 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Rich Harris
5a8fa69dbf
feat: make deriveds writable ( #15570 )
...
* feat: make deriveds writable
* add optimistic UI example
* add note to when-not-to-use-effect
* add section on deep reactivity
* root-relative URL
* use hash URL
* mention const
* make handler async, move into script block
6 months ago
github-actions[bot]
2d3b65dfbd
Version Packages ( #15575 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Dominic Gannaway
1f37c02f91
fix: ensure toStore root effect is connected to correct parent effect ( #15574 )
...
* fix: ensure toStore root effect is connected to correct parent effect
* prettier
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
Paolo Ricciuti
ade66c6fea
fix: use `get` in constructor for deriveds ( #15300 )
...
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
github-actions[bot]
e25c281296
Version Packages ( #15551 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Rich Harris
d2e79326c7
fix: don't depend on deriveds created inside the current reaction ( #15564 )
...
* WIP
* WIP
* add test
* update test
* changeset
* oops
* lint
6 months ago
Dominic Gannaway
1d10a65b78
fix: check if DOM prototypes are extensible ( #15569 )
6 months ago
Robert Gieseke
1a5fb8fd51
fix: Keep inlined JSDoc comments in property conversion of svelte-migrate ( #15567 )
...
* Add failing JSDoc property svelte-migrate conversion tests
* Add further test case and remove default value in JSDoc output
* Look for inlined JSDoc comments after a hyphen
* Add changeset
6 months ago
Rich Harris
6915c12b58
feat: allow state created in deriveds/effects to be written/read locally without self-invalidation ( #15553 )
...
* move parent property onto Signal
* don't self-invalidate when updating a source create inside current reaction
* lazily create deep state with parent reaction
* no need to push_derived_source with mutable_state, as it never coexists with $.derived
* reduce indirection
* remove state_unsafe_local_read error
* changeset
* tests
* fix test
* inelegant fix
* remove arg
* tweak
* some progress
* more
* tidy up
* parent -> p
* tmp
* alternative approach
* tidy up
* reduce diff size
* more
* update comment
6 months ago
Rich Harris
c436b6cdbe
fix: simplify set calls for proxyable values ( #15548 )
...
* chore: simplify set calls for proxyable values
* changeset
6 months ago
github-actions[bot]
190c0c7653
Version Packages ( #15536 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Paolo Ricciuti
5b9f0df8ee
fix: don't hoist listeners that access non hoistable snippets ( #15534 )
...
* fix: don't hoist listeners that access non hoistable snippets
* chore: add comment
* chore: fix auto import fumble
6 months ago
github-actions[bot]
74917ae703
Version Packages ( #15501 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
adiGuba
32ee6c1bc2
rune_invalid_arguments_length ( #15516 )
6 months ago
7nik
8e9a21e374
fix: correctly match `:has()`'s selector during css pruning ( #15277 )
...
Fixes #14072
`:has()` was matching only against descendants or siblings, but not sibling's descendants. This makes the logic be able to go forward or backwards, simplifying a lot of cases along the way.
6 months ago
Éric NICOLAS
f227cfcea8
fix: Allow global-like pseudo-selectors refinement ( #15313 )
...
For instance, specifying a tree-structural pseudo-class to
`::view-transition-new` should still constitute a valid global-like
selector.
Fixes #15312
---------
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
6 months ago
Ben McCann
e74fbcbbac
chore: don't distribute unused types definitions ( #15473 )
...
hopefully helps with #15182 , also makes the package smaller
---------
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
6 months ago
ComputerGuy
489f463d7b
fix: replace `undefined` with `void 0` to avoid edge case ( #15511 )
...
* replace 'undefined' with 'void 0'
* lint
* YALF
* reuse expression
* oops
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
Dominic Gannaway
5d3aa2bda4
fix: ensure transient writes to tracked parent effects works as expected ( #15506 )
...
* ix: ensure transient writes to tracked parent effects works as expected
* lint
* format test
* tweak changeset
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
D.V. Colomban
b27ca425c7
fix: add files and group properties to HTMLInputAttributes ( #15492 )
...
Fixes #14579
Although this isn't 100% correct because there's no `group` attribute, there's no better way to make people have components' props just be `HTMLInputAttributes` and allow them to reference `group`
6 months ago
github-actions[bot]
a1257c17f5
Version Packages ( #15493 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
6 months ago
Dominic Gannaway
110d42062f
fix: on teardown, use the last known value for the signal before the set ( #15469 )
...
* fix: on teardown, use the last known value for the signal before the se
* fix: on teardown, use the last known value for the signal before the se
* fix: on teardown, use the last known value for the signal before the se
* fix: on teardown, use the last known value for the signal before the se
* fix: on teardown, use the last known value for the signal before the se
* Update packages/svelte/src/internal/client/reactivity/props.js
Co-authored-by: Rich Harris <rich.harris@vercel.com>
* Update packages/svelte/src/internal/client/reactivity/props.js
Co-authored-by: Rich Harris <rich.harris@vercel.com>
* Update packages/svelte/src/internal/client/reactivity/props.js
Co-authored-by: Rich Harris <rich.harris@vercel.com>
* lint
* lint
* lint
* Update .changeset/sharp-elephants-invite.md
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
github-actions[bot]
e2bbc560e4
Version Packages ( #15466 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
Rich Harris
eaf0087d7c
fix: skip `log_if_contains_state` if only logging literals ( #15468 )
6 months ago
Trevor N. Suarez
3326bd8ae7
feat: Add `closedby` to `HTMLDialogAttributes` (dialog element) ( #15458 )
...
* Adding the `closedby` attribute to dialog element
Spec: https://html.spec.whatwg.org/#attr-dialog-closedby
* Adding changeset
* Update .changeset/metal-spoons-scream.md
---------
Co-authored-by: Rich Harris <hello@rich-harris.dev>
6 months ago
adiGuba
c5912aad71
fix: null and warnings for local handlers ( #15460 )
...
* fix null and warning for local handlers
* test
* changeset
* treat `let handler = () => {...}` the same as `function handler() {...}`
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
github-actions[bot]
d513304dd0
Version Packages ( #15453 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
adiGuba
ae615ae2ac
chore: memoize clsx() (alternative) ( #15456 )
...
* memoize clsx + directives
* changeset
* unused
* tweak
* tweak changeset
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
adiGuba
30562b8780
chore: rewrite set_style() to handle directives ( #15418 )
...
* add style attribute when needed
* set_style()
* to_style()
* remove `style=""`
* use cssTest for perfs
* base test
* test
* changeset
* revert dom.style.cssText
* format name
* use style.cssText + adapt test
* Apply suggestions from code review
suggestions from dummdidumm
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
* fix priority
* lint
* yawn
* update test
* we can simplify some stuff now
* simplify
* more
* simplify some more
* more
* more
* more
* more
* more
* remove continue
* tweak
* tweak
* tweak
* skip hash argument where possible
* tweak
* tweak
* tweak
* tweak
---------
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
adiGuba
2f685c1dba
fix: spreading style is not consistent with attribute ( #15323 )
...
* style must be set via set_attribute
* test
* changeset
* add empty string and null in test
* explanatory comment
* this is now redundant, set_attribute takes care of it
* drive-by
* tweak changeset
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
Rich Harris
2d3818463a
chore: check namespace inside set attributes ( #15443 )
...
* set_attributes for <svelte:element>
* changeset
* Update .changeset/wise-hats-wonder.md
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
* add changeset
* remove `chore` changeset — no need for non-user-facing changes to appear in changelog
* Update packages/svelte/src/compiler/phases/3-transform/client/visitors/shared/element.js
* determine element traits inside set_attributes
* unused
* stash lookup
---------
Co-authored-by: adiguba <frederic.martini@gmail.com>
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
6 months ago
github-actions[bot]
43ff3047ac
Version Packages ( #15452 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
Rich Harris
76f5ecfdab
fix: never deduplicate expressions in templates ( #15451 )
6 months ago
github-actions[bot]
0abd7f2a7f
Version Packages ( #15447 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
Rich Harris
3fc2007836
fix: run effect roots in tree order ( #15446 )
...
* process effect roots in tree order
* bring test over
* add test
* changeset
* tidy
6 months ago
github-actions[bot]
3b465a7172
Version Packages ( #15444 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
Paolo Ricciuti
181fb2ad49
fix: correctly set `is_updating` before flushing root effects ( #15442 )
...
* fix: correctly set `is_updating` before flushing root effects
* rename for consistency with update_effect
* use var
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
github-actions[bot]
cd56c1d60e
Version Packages ( #15433 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
Simon H
ef7fd96ccf
fix: switch to our fork acorn typescript plugin ( #15393 )
...
* fix: switch to our fork acorn typescript plugin
* changeset
* bump
* bump
* bump
* adjust snapshots
* this should be obsolete now
* bump
* bump
6 months ago
github-actions[bot]
0f2633736d
Version Packages ( #15431 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
Tom Adler
e3dc396e01
fix: make dialog element and role interactive ( #15429 )
...
Fixes #8283
Also see https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/932
6 months ago
Rich Harris
b82692af2f
feat: add `idPrefix` to `render` ( #15428 )
...
This ensures someone like Astro can render multiple islands and the unique ids produced in them are able to be deduplicated
---------
Co-authored-by: Hugos68 <hugokorteapple@gmail.com>
Co-authored-by: paoloricciuti <ricciutipaolo@gmail.com>
Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com>
6 months ago
github-actions[bot]
7ce2dfc622
Version Packages ( #15402 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
adiGuba
2032049e47
chore: Reduce hydration comment for {:else if} ( #15250 )
...
* rewrite else/if hydration
* fix: bad index
* reduce args on if_block()
* restore the block
* don't use isNan()
* changeset
6 months ago
Paolo Ricciuti
474c588067
fix: disallow `bind:group` to snippet parameters ( #15401 )
6 months ago
github-actions[bot]
e4987d2a9f
Version Packages ( #15383 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 months ago
adiGuba
fe343e9c50
fix: catch error on @const tag in svelte:boundary in DEV mode ( #15369 )
...
* fix: catch error on @const tag in svelte:boundary
* changeset
* edit changeset
* test
* fix
* rollback
* simpler way to do that
* rollback
* roolback again
---------
Co-authored-by: paoloricciuti <ricciutipaolo@gmail.com>
6 months ago
adiGuba
8fb2fb70e1
fix : bug "$0 is not defined" with svelte:element and a single class with a function call ( #15396 )
...
* add spread to test
* fix #15386
* fix #15392
* test
* changeset
* use is_text_attribute
6 months ago
adiGuba
cf56973bf0
fix: class:directive not working with $$restProps ( #15389 )
...
* add spread to test
* fix #15386
* do no set cssHash on non-scoped element
* changeset
6 months ago
Paolo Ricciuti
3d59e84a65
fix: allow double hyphen css selector names ( #15384 )
6 months ago
Paolo Ricciuti
c2ec0d9ac2
fix: allow for duplicate `var` declarations ( #15382 )
6 months ago
github-actions[bot]
bbeeed421b
Version Packages ( #15380 )
...
* Version Packages
* this changeset was unnecessary
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
Rich Harris
51337f22bd
chore: simplify flushing ( #15348 )
...
* this appears to be unnecessary
* DRY out
* this doesnt appear to do anything useful
* simplify
* remove unused if block
* simplify, make non-recursive
* unused
* DRY
* simplify
* tidy up
* simplify
* changeset
* unused
* Revert "changeset"
This reverts commit 946e00dcf7
.
* make flush_sync non-recursive
* fix flushSync types
* fix
* unused
* simplify
* tidy up
* tidy up
* present unnecessary microtasks, avoid flushing if no function provided
* simplify
6 months ago
Rich Harris
7958eb74df
chore: remove unnecessary `binding.is_called` property ( #15361 )
6 months ago
github-actions[bot]
220c2418d1
Version Packages ( #15358 )
...
* Version Packages
* tweak
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
adiGuba
d4360af751
chore: rewrite set_class() to handle directives ( #15352 )
...
* set_class with class: directives
* update expected result (remove leading space)
* fix
* optimize literals
* add test
* add test for mutations on hydration
* clean observer
* Update packages/svelte/src/compiler/phases/3-transform/client/visitors/RegularElement.js
unused
Co-authored-by: Rich Harris <hello@rich-harris.dev>
* Update packages/svelte/src/compiler/phases/3-transform/client/visitors/RegularElement.js
unused for now
Co-authored-by: Rich Harris <hello@rich-harris.dev>
* Update packages/svelte/src/compiler/phases/3-transform/client/visitors/shared/element.js
unused for now
Co-authored-by: Rich Harris <hello@rich-harris.dev>
* Update packages/svelte/src/compiler/phases/3-transform/server/visitors/shared/element.js
nit
Co-authored-by: Rich Harris <hello@rich-harris.dev>
* Update packages/svelte/src/internal/client/dom/elements/attributes.js
nit
Co-authored-by: Rich Harris <hello@rich-harris.dev>
* Update packages/svelte/src/internal/shared/attributes.js
rename clazz to value :D
Co-authored-by: Rich Harris <hello@rich-harris.dev>
* remove unused + fix JSDoc
* drive-by fix
* minor style tweaks
* tweak test
* this is faster
* tweak
* tweak
* this is faster
* typo
* tweak
* changeset
---------
Co-authored-by: Rich Harris <hello@rich-harris.dev>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
6 months ago
Alexis
5a946e7905
fix: Allow @const inside #key ( #15377 )
6 months ago
adiGuba
1e1aea4063
chore: remove unnecessary `?? ''` on some expressions ( #15287 )
...
* no `?? ''` on some expressions
* changeset
* delete operator returns boolean
* inverted conditions are a lil confusing
* no need for else after return
* simplify condition
* may as well add special handling for undefined while we're here
* use normal string literal when there are no values
* omit assignment when there is no text content
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
7 months ago
github-actions[bot]
9873443337
Version Packages ( #15304 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Paolo Ricciuti
d8e78f7f57
fix: `muted` reactive without `bind` and select/autofocus attributes … ( #15326 )
...
* fix: `muted` reactive without `bind` and select/autofocus attributes working with function calls
Co-authored-by: Joel Howse <joel@helicalco.com>
* chore: add comments
---------
Co-authored-by: Joel Howse <joel@helicalco.com>
7 months ago
Simon H
9091e7e930
fix: fire delegated events on target even it was disabled in the meantime ( #15319 )
...
They DOM could've been updated already by the time the event bubbling logic is reached, so the target element itself could not be notified of the event because it is marked as disabled. But the target could not have been disabled because it emits the event in the first place, so we emit regardless.
No test because not reproducible in jsdom environment.
Fixes #15256
7 months ago
Ranjan Purbey
575900de88
fix: Add more checks to determine if element is non-static ( #15259 )
...
Fixes #15241
7 months ago
tomoam
073f4d8911
fix: prevent writable store value from becoming a proxy when reassigning using $-prefix ( #15283 )
...
fixes #15281
7 months ago
Paolo Ricciuti
dde8603872
fix: do not warn for `binding_property_non_reactive` if binding is a store in an each ( #15318 )
...
Fixes #15315
7 months ago
adiGuba
c40392c1e8
chore: remove options.uid in render() ( #15302 )
...
* remove options.uid in render()
* changeset
* chore: update changeset
---------
Co-authored-by: Paolo Ricciuti <ricciutipaolo@gmail.com>
7 months ago
github-actions[bot]
32b78c9954
Version Packages ( #15279 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Simon H
7e3253745e
fix: ensure AST analysis on `svelte.js` modules succeeds ( #15297 )
...
This was the result of a `@ts-expect-error` silencing other type errors, which lead to this creeping in. This changes it so that the object is fully set, so we'll get type errors when new properties need to be added
fixes #15284
7 months ago
Paolo Ricciuti
b6bf735a23
fix: correctly ssr component in `svelte:head` with `$props.id()` or `css='injected'` ( #15291 )
7 months ago
Caique Torres
21dadfc997
fix: ignore typescript abstract methods during code transformation ( #15267 )
7 months ago
github-actions[bot]
23ecc364da
Version Packages ( #15271 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Dominic Gannaway
f747c412f4
chore: tweak effect self invalidation logic ( #15275 )
...
Also make sure events dispatched via transition/animation logic runs outside event context
Related to #15262
7 months ago
Paolo Ricciuti
5e52825d60
fix: take private and public into account for `constant_assignment` of derived state ( #15276 )
...
Fixes #15273
7 months ago
Paolo Ricciuti
18481386f3
fix: use `importNode` to clone templates for Firefox ( #15272 )
...
* fix: use `importNode` to clone templates for Firefox
* fix: move `is_firefox` check to line 28
* fix: revert using `is_firefox` too soon
7 months ago
Simon H
a3e49b6110
fix: recurse into `$derived` for ownership validation ( #15166 )
...
- `$derived` can contain `$state` declarations so we cannot ignore them, so this reverts #14533
- instead, we add equality checks to not do this expensive work unnecessarily
- this also adds a render effect similar to the class ownership addition when it detects a getter on a POJO during ownership addition
fixes #15164
7 months ago
adiGuba
afae274587
fix: value/checked not correctly set using spread ( #15239 )
...
* set value/checked by JS
* test
* changeset
* fix test form-default-value-spread
7 months ago
adiGuba
85f83ec435
feat: $props.id(), a SSR-safe ID generation ( #15185 )
...
* first impl of $$uid
* fix
* $props.id()
* fix errors
* rename $.create_uid() into $.props_id()
* fix message
* relax const requirement, validate assignments instead
* oops
* simplify
* non-constants should be lowercased
* ditto
* start at 1
* add docs
* changeset
* add test
* add docs
* doc : add code example
* fix type reported by bennymi
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
7 months ago
github-actions[bot]
280d8c74cc
Version Packages ( #15263 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Dominic Gannaway
b602c59a22
fix: when re-connecting unowned deriveds, remove their unowned flag ( #15255 )
...
* fix: when an unowned derived is tracked again, remove unowned flag
* fix: when an unowned derived is tracked again, remove unowned flag
* test case
* test case
* cleanup unused logic
* simplify
* simplify
* simplify
* simplify
* add test
* fix other issue
* back to original plan
* Apply suggestions from code review
---------
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
7 months ago
Paolo Ricciuti
02788f8e62
fix: allow mutation of private derived state ( #15228 )
...
Also disallow reassignment of private derived state
Fixes #15227
7 months ago
github-actions[bot]
c4d4349d0a
Version Packages ( #15234 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Simon H
4883fd2c83
fix: hydrate `href` that is part of spread attributes ( #15226 )
...
We had some duplicated and buggy code, removing it fixes #15120
7 months ago
Dominic Gannaway
f2c83e5db7
fix: ensure unowned derived dependencies are not duplicated when reac… ( #15232 )
...
* fix: ensure unowned derived dependencies are not duplicated when reactions are skipped
* added test case
* added test case
* add comment
7 months ago
github-actions[bot]
b0c4fa5246
Version Packages ( #15216 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Simon H
3b7066f5c6
fix: ensure custom element updates don't run in hydration mode ( #15217 )
...
* fix: ensure custom element updates don't run in hydration mode
When a custom element is created before Svelte hydration kicks in, it will scaffold itself, using the properties given via attributes.
Now when a custom element property is set during Svelte's hydration, the Svelte custom element component could run logic like updating an each block. Without turning off hydration mode during that time, the update would try to pick up existing element nodes (because it thinks they must be there because of hydration mode), and crash.
No test because it would require a setup where we can ensure the element is scaffolded before hydration runs.
Fixes #15213
* changeset
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
7 months ago
Simon H
6f392d679b
fix: properly set `value` property of custom elements ( #15206 )
...
Avoid going through the `element.value = element.__value = newValue` condition because `__value` is actually how Lit stores the current value on the element, and messing with that would break things: Lit would think the value hasn't changed (because `__value` is already set to the new value by us) and doesn't fire an update.
fixes #15194
7 months ago
Dominic Gannaway
d39d8c0675
fix: ensure tracking returns true, even if in unowned ( #15214 )
...
* fix: ensure tracking returns true, even if in unowned
* fix: ensure tracking returns true, even if in unowned
* Update packages/svelte/tests/runtime-runes/samples/effect-tracking-unowned/main.svelte
---------
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
7 months ago
github-actions[bot]
64f86ee9d4
Version Packages ( #15190 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Dominic Gannaway
e0b3dc020c
chore: remove unused code from signal logic ( #15195 )
7 months ago
7nik
5b30fbfb0b
fix: encounter svelte:element in blocks as sibling during pruning css ( #15165 )
...
Fixes #14890
7 months ago
github-actions[bot]
04addca428
Version Packages ( #15156 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Dominic Gannaway
7bef5963bd
fix: ensure reactions are correctly attached for unowned deriveds ( #15158 )
...
* fix: ensure reactions are correctly attached for unowned deriveds
* tune
7 months ago
Simon H
970aa7cfaa
fix: prevent false-positive ownership validations due to hot reload ( #15154 )
...
The component identity could change due to HMR, so we fall back to checking the filenames as well
fixes #14746
7 months ago
Simon H
83f00ebbd6
fix: don't error on slot prop inside block inside other component ( #15148 )
...
`slot` is treated as a regular prop if it is not used directly inside another component, but we were running validations on such regular props that should only be run on real slots.
Fixes #15125
7 months ago
Simon H
b8607f8765
fix: silence a11y attribute warnings when spread attributes present ( #15150 )
...
Fixes #15067
7 months ago
Simon H
f5406c952e
fix: widen ownership when calling setContext ( #15153 )
...
Instead of doing ownership addition at each `getContext` call site, we do it once as the `setContext` call site and make the state basically global.
- avoids potential false positives in edge cases
- makes the whole thing more performant, especially around things like calling `getContext` inside a list item component
- false negatives are unlikely from this
fixes #15072
7 months ago
7nik
522557559f
fix: do not prune selectors like `:global(.foo):has(.scoped)` ( #15140 )
...
Fixes #14910
The issue occurs only when :has() targets at a component's root element and because include_self is false.
I came to the conclusion that this is the same case as :root:has(.scoped).
7 months ago
github-actions[bot]
c8bbb15693
Version Packages ( #15139 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Dominic Gannaway
13a6d555c0
fix: improve derived connection to ownership graph ( #15137 )
...
* fix: improve derived connection to ownership graph
* revised
* revised
* revised
* revised
* feedback
* feedback
* invasive change
* fix bugs
* fix other bug
7 months ago
7nik
9410ad0318
fix: correctly look for sibling elements inside blocks and components ( #15106 )
...
Fixes #15027 and fixes #14995
When the target element is inside a block or component, get_following_sibling_elements was looking only for sibling elements after the block/component. This PR fixes it by starting the search from the begging of the block/component and skipping nodes that go before the target element.
7 months ago
github-actions[bot]
b2c8224a73
Version Packages ( #15118 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Dominic Gannaway
fc4dd2dec4
fix: lazily connect derievds (in deriveds) to their parent ( #15129 )
7 months ago
Elliott Johnson
3f8ce21f47
fix: Add `bind:focused` to `HTMLAttributes` ( #15122 )
...
* Revert "fix: ensure untrack correctly retains the active reaction (#15065 )"
This reverts commit 2ad519542d
.
* feat: Add `bind:focused` to `HTMLAttributes`
* Revert "Revert "fix: ensure untrack correctly retains the active reaction (#15065 )""
This reverts commit f4e98bf89f
.
* changeset
* tests
7 months ago
Rich Harris
0e0f01ee1c
fix: disallow $state/$derived in const tags ( #15115 )
7 months ago
github-actions[bot]
357e1a74b4
Version Packages ( #15088 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 months ago
Trevor N. Suarez
d47f4f5908
fix: expand boolean attribute support ( #15095 )
...
* Adding test for expected boolean attribute support
* Improving support for more boolean attributes:
Added:
- `defer`
- `disablepictureinpicture`
- `disableremoteplayback`
Improved:
- `allowfullscreen`
- `novalidate`
* Skipping JSDOM version of boolean attribute test
JSDOM lacks support for some attributes, so we'll skip it for now.
See:
- `async`: https://github.com/jsdom/jsdom/issues/1564
- `nomodule`: https://github.com/jsdom/jsdom/issues/2475
- `autofocus`: https://github.com/jsdom/jsdom/issues/3041
- `inert`: https://github.com/jsdom/jsdom/issues/3605
- etc...: https://github.com/jestjs/jest/issues/139#issuecomment-592673550
* Adding changeset
8 months ago
Edoardo Cavazza
d17f5c748d
fix: add check for is attribute ( #15086 )
...
Fixes #15085
Add a check for is attribute in is_custom_element_node function.
8 months ago
Rich Harris
7740d4576b
fix: optimise || expressions in template ( #15092 )
8 months ago
Theodore Brown
c2e805f05c
fix: consistently set value to blank string when value attribute is undefined ( #15057 )
...
Fixes #4467
8 months ago
Rich Harris
8bba70b8e3
fix: avoid double deriveds in component props ( #15089 )
...
* fix: prevent double deriveds in component props
* unused
* reuse mechanism
* move code to where it is used
* changeset
8 months ago
Trevor N. Suarez
eee808fb79
fix: correctly handle `novalidate` attribute casing ( #15083 )
...
This PR fixes #15082 by correctly handling the HTML element novalidate attribute casing through noValidate DOM property mapping.
8 months ago
Paolo Ricciuti
7da86ef80c
fix: don't throw for `undefined` non delegated event handlers ( #15087 )
...
* fix: don't throw for `undefined` non delegated event handlers
* chore: update typings
8 months ago
github-actions[bot]
ee024ffd0e
Version Packages ( #15080 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Dominic Gannaway
09510c8c5c
fix: address regression with untrack ( #15079 )
...
* fix: address regression with untrack
* add test
8 months ago
github-actions[bot]
c75f1f5f2f
Version Packages ( #15052 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Paolo Ricciuti
5ad6a0cdc3
fix: initialize `files` bind on hydration ( #15059 )
8 months ago
Dominic Gannaway
2ad519542d
fix: ensure untrack correctly retains the active reaction ( #15065 )
...
* fix: ensure untrack correctly retains the active reaction
* fix: ensure untrack correctly retains the active reaction
8 months ago
ComputerGuy
5f6525f416
fix: omit unnecessary nullish coallescing in template expressions ( #15056 )
...
* omit unnecessary nullish coallescing in template expressions
* add tests
8 months ago
Rich Harris
700029bd4d
fix: more efficient template effect grouping ( #15050 )
...
* WIP
* drive-by
* group attribute updates
* fix
* more
* unused
* more
* WIP
* unused
* simplify
* simplify
* simplify
* more
* unused
* unused
* more
* tweak
* update how class/style directives are handled
* more
* more
* simplify
* changeset
8 months ago
github-actions[bot]
a9d1f46dbb
Version Packages ( #15021 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Rich Harris
509ba568f3
fix: create fewer deriveds for concatenated strings ( #15041 )
...
* fix: create fewer deriveds for concatenated strings
* stringified_text -> expression
8 months ago
Puru Vijay
2aefc5430d
feat(elements): Expose ClassValue ( #15035 )
...
* Push
* Cleanup
* Add changeset
* Remove redundant string
* Update documentation/docs/03-template-syntax/18-class.md
Co-authored-by: Paolo Ricciuti <ricciutipaolo@gmail.com>
* Update documentation/docs/03-template-syntax/18-class.md
---------
Co-authored-by: Paolo Ricciuti <ricciutipaolo@gmail.com>
8 months ago
Paolo Ricciuti
973b51d168
fix: correctly parse leading comments in function binding ( #15020 )
...
* fix: correctly parse leading comments in function binding
* chore: fix lint
8 months ago
github-actions[bot]
1d3c4397b2
Version Packages ( #15010 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Rich Harris
ff79704ab8
fix: bump esrap ( #15015 )
...
* chore: bump esrap
* changeset
8 months ago
Dominic Gannaway
5419610833
fix: ensure resume effects are scheduled in topological order ( #15012 )
...
* fix: ensure resume effects are scheduled in topological order
* fix: ensure resume effects are scheduled in topological order
8 months ago
Paolo Ricciuti
360ee70dcb
fix: remove listener on `bind_current_time` teardown ( #15013 )
...
Fixes #15008
8 months ago
Paolo Ricciuti
dfa97a5e64
feat: allow every children in `template` tags ( #15007 )
...
* feat: allow every children in `template` tags
* Update .changeset/dry-mails-return.md
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
github-actions[bot]
a1698c63ec
Version Packages ( #15001 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Dominic Gannaway
dae4c5f5e1
fix: ensure signal write invalidation within effects is consistent ( #14989 )
...
* fix: ensure signal write invalidation within effects is persistent
* fix: ensure signal write invalidation within effects is persistent
* fix: ensure signal write invalidation within effects is persistent
* address feedback
8 months ago
Paolo Ricciuti
a129592e5b
feat: allow const tag inside `svelte:boundary` ( #14993 )
...
* feat: allow const tag inside `svelte:boundary`
* chore: add better test
* docs: update docs for `@const`
8 months ago
github-actions[bot]
efa5acf24e
Version Packages ( #14970 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Paolo Ricciuti
8a1acac084
fix: never consider inert boundary effects ( #14999 )
...
* fix: never consider inert boundary effects
* chore: inline bitwise
8 months ago
Paolo Ricciuti
9b6e65fbeb
fix: correctly transform `pre` with no content ( #14973 )
...
Closes #14971
8 months ago
Paolo Ricciuti
41fb51349e
fix: store access on component destroy ( #14968 )
...
Co-authored-by: Oscar Dominguez <dominguez.celada@gmail.com>
8 months ago
Dominic Gannaway
dbe5818560
fix: wrap each block expression in derived to encapsulte effects ( #14967 )
...
* fix: wrap each block expression in derived to encapsulte effects
* add test
* Update .changeset/tender-apples-scream.md
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
github-actions[bot]
dc8ae825b8
Version Packages ( #14965 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Dominic Gannaway
bdc02008e4
fix: reset dependency read versions after reaction execution ( #14964 )
...
* fix: reset dependency read versions after reaction execution
* fix: reset dependency read versions after reaction execution
* fix: reset dependency read versions after reaction execution
* fix: reset dependency read versions after reaction execution
* fix: reset dependency read versions after reaction execution
* chore: add test
* changeset
---------
Co-authored-by: paoloricciuti <ricciutipaolo@gmail.com>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
github-actions[bot]
b7400ae93b
Version Packages ( #14959 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Rich Harris
c0842d1459
fix: properly add owners to function bindings ( #14962 )
...
Closes #14956
8 months ago
Rich Harris
68cffa8489
fix: apply `overflow: hidden` style when transitioning elements, where necessary ( #14930 )
...
* fix: apply `overflow: hidden` style when transitioning elements, where necessary
* notes to self
8 months ago
Rich Harris
79a67c9561
fix: account for parent scale when animating elements ( #14957 )
...
* WIP fix flip
* fix: account for parent scale when animating elements
8 months ago
github-actions[bot]
80d9f9996f
Version Packages ( #14953 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Simon H
9aae463ae1
fix: silence false-positive statel value warning ( #14958 )
...
fixes #14687
8 months ago
Simon H
a2565efa37
docs: tweak "invalid assignment" compiler error message ( #14955 )
...
* docs: tweak "invalid assignment" compiler error message
fixes #14702
* tweak wording
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
Rich Harris
ce4f9722da
fix: remove bindable prop validation ( #14946 )
8 months ago
github-actions[bot]
9b71eea35d
Version Packages ( #14943 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Rich Harris
d41801c75f
feat: warn on using `slide` transition with invalid `display` styles ( #14936 )
...
* feat: warn on using `slide` transition with table elements
* more generic
* more generic
8 months ago
Rich Harris
4d2cb2734b
fix: prevent long delays causing erratic spring behaviour ( #14940 )
8 months ago
Rich Harris
d245bab63a
feat: allow non-numeric values to be tweened by snapping immediately to new value ( #14941 )
8 months ago
Rich Harris
adee13d98c
fix: account for min-width/height in `slide` transition ( #14942 )
8 months ago
Dominic Gannaway
9c20eb4815
chore: improve signal performance by reducing duplicate deps ( #14945 )
...
* chore: expand benchmark iterations
* chore: improve signal performance by reducing duplicate deps
* feedback
* oops
8 months ago
Caique Torres
48e3db21c1
fix: default values in object destructuring ( #14554 )
...
* fix: enhance string/expression length check and fix closing character issues
* docs: add documentation for unterminated_string_constant error
* test: add tests for object destructuring with default values in "each" blocks
* Update .changeset/clean-planets-rush.md
* refactor: clean up unnecessary comments and whitespace
* fix: resolve formatting issues
* simplify
* tweak
* regenerate
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
github-actions[bot]
4aadb34c02
Version Packages ( #14924 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Simon H
08061c85da
fix: guard against `customElements` being unavailable in browser extension contexts ( #14933 )
...
fixes #14739
8 months ago
Simon H
8241096b06
fix: treat `inert` as a boolean attribute ( #14935 )
...
* fix: treat `inert` as a boolean attribute
fixes #14731
* remove solo: true
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
Matthijs
c8865bb4a7
fix: make Tween with duration 0 set current to target immediately ( #14937 )
...
* fix: Make Tween duration 0 set current to target immediately
* Run prettier on test file
* tweak
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
Rich Harris
77378688b9
fix: remove leading newline from `<pre>` contents ( #14922 )
...
... if it's not followed by another newline, according to the spec
Fixes #14767
---------
Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com>
8 months ago
github-actions[bot]
fb67bad5b0
Version Packages ( #14921 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Paolo Ricciuti
72a6c7263c
fix: don't throw `bind_invalid_export` if there's also a bindable prop with the same name ( #14813 )
8 months ago
Dominic Gannaway
cd1adbc4e6
fix: ensure logic blocks keep consistent namespacing ( #14817 )
...
* fix: ensure logic blocks keep consitent namespacing
* lint
* add test
* handle `<title>` ambiguity the same as `<a>`
* update changeset
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
github-actions[bot]
f5c285080c
Version Packages ( #14918 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Matthijs
a646780109
fix: Make Tween work with continuous target changes ( #14895 )
...
* Read previous_value at a later stage in Tween.set
* Add changeset
* tweak
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
8 months ago
Dominic Gannaway
dbdb8cd7fd
fix: use cached indexOf array prototype method internally ( #14912 )
8 months ago
github-actions[bot]
a8ca375c57
Version Packages ( #14908 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Simon H
2e2b440954
fix: apply `clsx` logic to custom element `class` attributes ( #14907 )
...
Fixes #14902
8 months ago
Paolo Ricciuti
c4e9faad52
fix: correctly parse `each` with loose parser ( #14887 )
...
* fix: correctly parse `each` with loose parser
* chore: fix lint
* chore: remove unused imports
* Apply suggestions from code review
* chore: fix lint
---------
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
8 months ago
github-actions[bot]
ed26c3f658
Version Packages ( #14888 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Dominic Gannaway
82db92f870
fix: ensure disconnected deriveds correctly connect again ( #14899 )
...
* fix: ensure disconnected deriveds correctly connect again
* fix: ensure disconnected deriveds correctly connect again
8 months ago
Paolo Ricciuti
a91308d9db
fix: correctly highlight sources reassigned inside `trace` ( #14811 )
...
* fix: correctly highlight sources reassigned inside `trace`
* chore: add missing effect logs
* fix: prevent `null` access on `tracing_expressions` for nested tracing
* chore: add test case for #14853
* fix: types for `$inpect.trace`
8 months ago
github-actions[bot]
f3a7ded734
Version Packages ( #14856 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 months ago
Dominic Gannaway
8148734812
fix: ensure unowned deriveds correctly get re-linked to the graph ( #14855 )
...
* fix: ensure unowned deriveds correctly get re-linked to the graph
* fix: ensure unowned deriveds correctly get re-linked to the graph
* fix: ensure unowned deriveds correctly get re-linked to the graph
* add test
* add test
* cleaner apporach
* cleaner apporach
* cleaner apporach
* cleaner apporach
8 months ago
Dominic Gannaway
32348a5387
fix: ensure $inspect.trace works correctly with null values ( #14853 )
...
* fix: ensure $inspect.trace works correctly with null values
* fix: ensure $inspect.trace works correctly with null values
8 months ago
github-actions[bot]
7f8acb8a37
Version Packages ( #14824 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
9 months ago
Simon H
015210a1a8
feat: allow objects/arrays for class attribute ( #14714 )
...
* WIP
* missed
* fix
* fix
* rename, smooth over incompatibilities
* spread support + test
* docs
* types
* implement CSS pruning for array/object expressions
* beefier static analysis
* lint
* rename doc
* move class after all directive docs
* tweak docs - clarify top-level falsy values, stagger examples, demonstrate composition, discourage class: more strongly
* changeset
* fix
* Update documentation/docs/03-template-syntax/18-class.md
Co-authored-by: Conduitry <git@chor.date>
* Apply suggestions from code review
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
Co-authored-by: Conduitry <git@chor.date>
9 months ago
Andrey Sitnik
38a3ae321f
fix: Allow to disable animation prefix ( #14822 )
...
* fix: Allow to disable animation prefix
* Apply suggestions from code review
---------
Co-authored-by: Paolo Ricciuti <ricciutipaolo@gmail.com>
9 months ago
github-actions[bot]
1d773ef3a4
Version Packages ( #14782 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
9 months ago
Bjorn Lu
72b7bc7af8
feat: add "worker" exports condition ( #14779 )
9 months ago
github-actions[bot]
2086c199be
Version Packages ( #14776 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
9 months ago
ottomated
999b92d134
fix: intellisense DX for $props, $inspect, $bindable, and $host ( #14777 )
...
* remove default function types for $props, $inspect, $bindable, and $host
* changeset
* regenerate types
* add helper message for type regeneration
* append a newline to generated types
* prettier
---------
Co-authored-by: Rich Harris <rich.harris@vercel.com>
9 months ago
Dominic Gannaway
5bc4033421
fix: treeshake `$inspect.trace` code if unused in modules ( #14774 )
9 months ago