svelte 5.44.0 → 5.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/index.js +1 -1
- package/package.json +2 -2
- package/src/compiler/index.js +1 -0
- package/src/compiler/migrate/index.js +2 -2
- package/src/compiler/phases/1-parse/remove_typescript_nodes.js +10 -0
- package/src/compiler/phases/3-transform/client/visitors/ConstTag.js +11 -5
- package/src/compiler/phases/3-transform/client/visitors/VariableDeclaration.js +1 -1
- package/src/compiler/phases/3-transform/server/visitors/ConstTag.js +8 -1
- package/src/compiler/phases/3-transform/server/visitors/VariableDeclaration.js +1 -1
- package/src/compiler/phases/3-transform/shared/transform-async.js +15 -16
- package/src/compiler/print/index.js +865 -0
- package/src/internal/client/dev/debug.js +25 -2
- package/src/internal/client/dom/blocks/each.js +14 -2
- package/src/internal/client/dom/elements/bindings/this.js +1 -1
- package/src/internal/client/dom/elements/misc.js +1 -1
- package/src/version.js +1 -1
- package/types/index.d.ts +18 -1
- package/types/index.d.ts.map +7 -1
|
@@ -12,6 +12,8 @@ import {
|
|
|
12
12
|
RENDER_EFFECT,
|
|
13
13
|
ROOT_EFFECT
|
|
14
14
|
} from '#client/constants';
|
|
15
|
+
import { snapshot } from '../../shared/clone.js';
|
|
16
|
+
import { untrack } from '../runtime.js';
|
|
15
17
|
|
|
16
18
|
/**
|
|
17
19
|
*
|
|
@@ -84,6 +86,16 @@ export function log_effect_tree(effect, depth = 0) {
|
|
|
84
86
|
console.groupEnd();
|
|
85
87
|
}
|
|
86
88
|
|
|
89
|
+
if (effect.nodes_start && effect.nodes_end) {
|
|
90
|
+
// eslint-disable-next-line no-console
|
|
91
|
+
console.log(effect.nodes_start);
|
|
92
|
+
|
|
93
|
+
if (effect.nodes_start !== effect.nodes_end) {
|
|
94
|
+
// eslint-disable-next-line no-console
|
|
95
|
+
console.log(effect.nodes_end);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
87
99
|
let child = effect.first;
|
|
88
100
|
while (child !== null) {
|
|
89
101
|
log_effect_tree(child, depth + 1);
|
|
@@ -103,7 +115,13 @@ function log_dep(dep) {
|
|
|
103
115
|
const derived = /** @type {Derived} */ (dep);
|
|
104
116
|
|
|
105
117
|
// eslint-disable-next-line no-console
|
|
106
|
-
console.groupCollapsed(
|
|
118
|
+
console.groupCollapsed(
|
|
119
|
+
`%c$derived %c${dep.label ?? '<unknown>'}`,
|
|
120
|
+
'font-weight: bold; color: CornflowerBlue',
|
|
121
|
+
'font-weight: normal',
|
|
122
|
+
untrack(() => snapshot(derived.v))
|
|
123
|
+
);
|
|
124
|
+
|
|
107
125
|
if (derived.deps) {
|
|
108
126
|
for (const d of derived.deps) {
|
|
109
127
|
log_dep(d);
|
|
@@ -114,6 +132,11 @@ function log_dep(dep) {
|
|
|
114
132
|
console.groupEnd();
|
|
115
133
|
} else {
|
|
116
134
|
// eslint-disable-next-line no-console
|
|
117
|
-
console.log(
|
|
135
|
+
console.log(
|
|
136
|
+
`%c$state %c${dep.label ?? '<unknown>'}`,
|
|
137
|
+
'font-weight: bold; color: CornflowerBlue',
|
|
138
|
+
'font-weight: normal',
|
|
139
|
+
untrack(() => snapshot(dep.v))
|
|
140
|
+
);
|
|
118
141
|
}
|
|
119
142
|
}
|
|
@@ -394,8 +394,12 @@ function reconcile(state, array, anchor, flags, get_key) {
|
|
|
394
394
|
key = get_key(value, i);
|
|
395
395
|
item = /** @type {EachItem} */ (items.get(key));
|
|
396
396
|
|
|
397
|
-
|
|
398
|
-
|
|
397
|
+
// offscreen == coming in now, no animation in that case,
|
|
398
|
+
// else this would happen https://github.com/sveltejs/svelte/issues/17181
|
|
399
|
+
if (item.o) {
|
|
400
|
+
item.a?.measure();
|
|
401
|
+
(to_animate ??= new Set()).add(item);
|
|
402
|
+
}
|
|
399
403
|
}
|
|
400
404
|
}
|
|
401
405
|
|
|
@@ -637,6 +641,10 @@ function link(state, prev, next) {
|
|
|
637
641
|
state.first = next;
|
|
638
642
|
state.effect.first = next && next.e;
|
|
639
643
|
} else {
|
|
644
|
+
if (prev.e === state.effect.last && next !== null) {
|
|
645
|
+
state.effect.last = next.e;
|
|
646
|
+
}
|
|
647
|
+
|
|
640
648
|
if (prev.e.next) {
|
|
641
649
|
prev.e.next.prev = null;
|
|
642
650
|
}
|
|
@@ -648,6 +656,10 @@ function link(state, prev, next) {
|
|
|
648
656
|
if (next === null) {
|
|
649
657
|
state.effect.last = prev && prev.e;
|
|
650
658
|
} else {
|
|
659
|
+
if (next.e === state.effect.last && prev === null) {
|
|
660
|
+
state.effect.last = next.e.prev;
|
|
661
|
+
}
|
|
662
|
+
|
|
651
663
|
if (next.e.prev) {
|
|
652
664
|
next.e.prev.next = null;
|
|
653
665
|
}
|
|
@@ -38,7 +38,7 @@ export function bind_this(element_or_component = {}, update, get_value, get_part
|
|
|
38
38
|
untrack(() => {
|
|
39
39
|
if (element_or_component !== get_value(...parts)) {
|
|
40
40
|
update(element_or_component, ...parts);
|
|
41
|
-
// If this is an effect rerun (cause: each block context changes), then
|
|
41
|
+
// If this is an effect rerun (cause: each block context changes), then nullify the binding at
|
|
42
42
|
// the previous position if it isn't already taken over by a different effect.
|
|
43
43
|
if (old_parts && is_bound_this(get_value(...old_parts), element_or_component)) {
|
|
44
44
|
update(null, ...old_parts);
|
|
@@ -51,7 +51,7 @@ export function add_form_reset_listener() {
|
|
|
51
51
|
}
|
|
52
52
|
});
|
|
53
53
|
},
|
|
54
|
-
// In the capture phase to guarantee we get noticed of it (no
|
|
54
|
+
// In the capture phase to guarantee we get noticed of it (no possibility of stopPropagation)
|
|
55
55
|
{ capture: true }
|
|
56
56
|
);
|
|
57
57
|
}
|
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -844,6 +844,7 @@ declare module 'svelte/compiler' {
|
|
|
844
844
|
import type { SourceMap } from 'magic-string';
|
|
845
845
|
import type { ArrayExpression, ArrowFunctionExpression, VariableDeclaration, VariableDeclarator, Expression, Identifier, MemberExpression, Node, ObjectExpression, Pattern, Program, ChainExpression, SimpleCallExpression, SequenceExpression } from 'estree';
|
|
846
846
|
import type { Location } from 'locate-character';
|
|
847
|
+
import type { default as ts } from 'esrap/languages/ts';
|
|
847
848
|
/**
|
|
848
849
|
* `compile` converts your `.svelte` source code into a JavaScript module that exports a component
|
|
849
850
|
*
|
|
@@ -1390,7 +1391,7 @@ declare module 'svelte/compiler' {
|
|
|
1390
1391
|
expression: null | Expression;
|
|
1391
1392
|
}
|
|
1392
1393
|
|
|
1393
|
-
interface BaseElement extends BaseNode {
|
|
1394
|
+
export interface BaseElement extends BaseNode {
|
|
1394
1395
|
name: string;
|
|
1395
1396
|
attributes: Array<Attribute | SpreadAttribute | Directive | AttachTag>;
|
|
1396
1397
|
fragment: Fragment;
|
|
@@ -1616,6 +1617,18 @@ declare module 'svelte/compiler' {
|
|
|
1616
1617
|
export function preprocess(source: string, preprocessor: PreprocessorGroup | PreprocessorGroup[], options?: {
|
|
1617
1618
|
filename?: string;
|
|
1618
1619
|
} | undefined): Promise<Processed>;
|
|
1620
|
+
/**
|
|
1621
|
+
* `print` converts a Svelte AST node back into Svelte source code.
|
|
1622
|
+
* It is primarily intended for tools that parse and transform components using the compiler’s modern AST representation.
|
|
1623
|
+
*
|
|
1624
|
+
* `print(ast)` requires an AST node produced by parse with modern: true, or any sub-node within that modern AST.
|
|
1625
|
+
* The result contains the generated source and a corresponding source map.
|
|
1626
|
+
* The output is valid Svelte, but formatting details such as whitespace or quoting may differ from the original.
|
|
1627
|
+
* */
|
|
1628
|
+
export function print(ast: AST.SvelteNode, options?: Options | undefined): {
|
|
1629
|
+
code: string;
|
|
1630
|
+
map: any;
|
|
1631
|
+
};
|
|
1619
1632
|
/**
|
|
1620
1633
|
* The current version, as set in package.json.
|
|
1621
1634
|
* */
|
|
@@ -1799,6 +1812,10 @@ declare module 'svelte/compiler' {
|
|
|
1799
1812
|
| SimpleSelector
|
|
1800
1813
|
| Declaration;
|
|
1801
1814
|
}
|
|
1815
|
+
type Options = {
|
|
1816
|
+
getLeadingComments?: NonNullable<Parameters<typeof ts>[0]>['getLeadingComments'] | undefined;
|
|
1817
|
+
getTrailingComments?: NonNullable<Parameters<typeof ts>[0]>['getTrailingComments'] | undefined;
|
|
1818
|
+
};
|
|
1802
1819
|
|
|
1803
1820
|
export {};
|
|
1804
1821
|
}
|
package/types/index.d.ts.map
CHANGED
|
@@ -60,9 +60,11 @@
|
|
|
60
60
|
"Namespace",
|
|
61
61
|
"AST",
|
|
62
62
|
"preprocess",
|
|
63
|
+
"print",
|
|
63
64
|
"VERSION",
|
|
64
65
|
"migrate",
|
|
65
66
|
"_CSS",
|
|
67
|
+
"Options",
|
|
66
68
|
"linear",
|
|
67
69
|
"backInOut",
|
|
68
70
|
"backIn",
|
|
@@ -189,9 +191,11 @@
|
|
|
189
191
|
"../src/compiler/types/index.d.ts",
|
|
190
192
|
"../src/compiler/types/template.d.ts",
|
|
191
193
|
"../src/compiler/preprocess/index.js",
|
|
194
|
+
"../src/compiler/print/index.js",
|
|
192
195
|
"../src/version.js",
|
|
193
196
|
"../src/compiler/migrate/index.js",
|
|
194
197
|
"../src/compiler/types/css.d.ts",
|
|
198
|
+
"../src/compiler/print/types.d.ts",
|
|
195
199
|
"../src/easing/index.js",
|
|
196
200
|
"../src/legacy/legacy-client.js",
|
|
197
201
|
"../src/internal/client/dom/legacy/event-modifiers.js",
|
|
@@ -264,8 +268,10 @@
|
|
|
264
268
|
null,
|
|
265
269
|
null,
|
|
266
270
|
null,
|
|
271
|
+
null,
|
|
272
|
+
null,
|
|
267
273
|
null
|
|
268
274
|
],
|
|
269
|
-
"mappings": ";;;;;;;kBAUiBA,2BAA2BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkC/BC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAwEhBC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;kBAwBbC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoCbC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;aAwBrBC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCfC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA6BdC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;kBAuBRC,OAAOA;;;;;;;;;;;;;;;;kBAgBPC,eAAeA;;;;;;;;;;;;;;;;aAgBpBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA0CPC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCnSLC,cAAcA;;;;;;;;;;;;iBAsBdC,OAAOA;;;;;;;;iBAwBPC,SAASA;;;;;;;;;;;;;;;;;;;;;;iBA0CTC,qBAAqBA;;;;;;;;;;iBA2CrBC,YAAYA;;;;;;;;;;iBAuBZC,WAAWA;iBClNXC,UAAUA;;;;iBC4DVC,gBAAgBA;;;;;MCvEpBC,WAAWA;;;;;iBCmjBPC,SAASA;;;;;;;;;;;;;;;;;;iBA6XTC,IAAIA;;;;;;;;iBCj2BJC,aAAaA;;;;;;;;iBAyBbC,UAAUA;;;;;;;;;;;iBAoBVC,UAAUA;;;;;;iBA2BVC,UAAUA;;;;;;;iBAaVC,cAAcA;;;;;;iBCnGdC,KAAKA;;;;;iBA2BLC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA+MPC,OAAOA;;;;;;iBCuKDC,IAAIA;;;;;;iBAwBVC,OAAOA;;;;;;;;;;;;;;iBA2NPC,OAAOA;MCjsBXC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBCqBFC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA6BZC,MAAMA;;;;;;;;;;;;;;;;;;;;kBCtDNC,eAAeA;;;;;;;;kBAQfC,UAAUA;;;;;;;;;;iBCGXC,IAAIA;;;;;;;;;;;;;;;;kBCLHC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;iBCsBXC,mBAAmBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WJHlBN,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA6BZC,MAAMA
|
|
275
|
+
"mappings": "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",
|
|
270
276
|
"ignoreList": []
|
|
271
277
|
}
|