svelte 5.39.10 → 5.39.12
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 +1 -1
- package/src/compiler/phases/3-transform/client/visitors/AssignmentExpression.js +6 -5
- package/src/compiler/phases/3-transform/client/visitors/shared/utils.js +33 -15
- package/src/compiler/phases/3-transform/server/visitors/EachBlock.js +4 -2
- package/src/compiler/phases/3-transform/server/visitors/SvelteBoundary.js +5 -2
- package/src/internal/client/dom/elements/bindings/input.js +10 -2
- package/src/internal/client/reactivity/async.js +0 -2
- package/src/internal/client/reactivity/batch.js +21 -24
- package/src/version.js +1 -1
- package/types/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -192,17 +192,18 @@ function build_assignment(operator, left, right, context) {
|
|
|
192
192
|
path.at(-1) === 'Component' ||
|
|
193
193
|
path.at(-1) === 'SvelteComponent' ||
|
|
194
194
|
(path.at(-1) === 'ArrowFunctionExpression' &&
|
|
195
|
-
path.at(-2) === '
|
|
196
|
-
|
|
197
|
-
path.at(-
|
|
198
|
-
|
|
195
|
+
(path.at(-2) === 'BindDirective' ||
|
|
196
|
+
(path.at(-2) === 'Component' && path.at(-3) === 'Fragment') ||
|
|
197
|
+
(path.at(-2) === 'SequenceExpression' &&
|
|
198
|
+
(path.at(-3) === 'Component' ||
|
|
199
|
+
path.at(-3) === 'SvelteComponent' ||
|
|
200
|
+
path.at(-3) === 'BindDirective'))))
|
|
199
201
|
) {
|
|
200
202
|
should_transform = false;
|
|
201
203
|
}
|
|
202
204
|
|
|
203
205
|
if (left.type === 'MemberExpression' && should_transform) {
|
|
204
206
|
const callee = callees[operator];
|
|
205
|
-
|
|
206
207
|
return /** @type {Expression} */ (
|
|
207
208
|
context.visit(
|
|
208
209
|
b.call(
|
|
@@ -209,10 +209,8 @@ export function parse_directive_name(name) {
|
|
|
209
209
|
* @param {import('zimmerframe').Context<AST.SvelteNode, ComponentClientTransformState>} context
|
|
210
210
|
*/
|
|
211
211
|
export function build_bind_this(expression, value, { state, visit }) {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
return b.call('$.bind_this', value, set, get);
|
|
215
|
-
}
|
|
212
|
+
const [getter, setter] =
|
|
213
|
+
expression.type === 'SequenceExpression' ? expression.expressions : [null, null];
|
|
216
214
|
|
|
217
215
|
/** @type {Identifier[]} */
|
|
218
216
|
const ids = [];
|
|
@@ -229,7 +227,7 @@ export function build_bind_this(expression, value, { state, visit }) {
|
|
|
229
227
|
// Note that we only do this for each context variables, the consequence is that the value might be stale in
|
|
230
228
|
// some scenarios where the value is a member expression with changing computed parts or using a combination of multiple
|
|
231
229
|
// variables, but that was the same case in Svelte 4, too. Once legacy mode is gone completely, we can revisit this.
|
|
232
|
-
walk(expression, null, {
|
|
230
|
+
walk(getter ?? expression, null, {
|
|
233
231
|
Identifier(node, { path }) {
|
|
234
232
|
if (seen.includes(node.name)) return;
|
|
235
233
|
seen.push(node.name);
|
|
@@ -260,9 +258,17 @@ export function build_bind_this(expression, value, { state, visit }) {
|
|
|
260
258
|
|
|
261
259
|
const child_state = { ...state, transform };
|
|
262
260
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
visit(
|
|
261
|
+
let get = /** @type {Expression} */ (visit(getter ?? expression, child_state));
|
|
262
|
+
let set = /** @type {Expression} */ (
|
|
263
|
+
visit(
|
|
264
|
+
setter ??
|
|
265
|
+
b.assignment(
|
|
266
|
+
'=',
|
|
267
|
+
/** @type {Identifier | MemberExpression} */ (expression),
|
|
268
|
+
b.id('$$value')
|
|
269
|
+
),
|
|
270
|
+
child_state
|
|
271
|
+
)
|
|
266
272
|
);
|
|
267
273
|
|
|
268
274
|
// If we're mutating a property, then it might already be non-existent.
|
|
@@ -275,13 +281,25 @@ export function build_bind_this(expression, value, { state, visit }) {
|
|
|
275
281
|
node = node.object;
|
|
276
282
|
}
|
|
277
283
|
|
|
278
|
-
|
|
279
|
-
'
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
284
|
+
get =
|
|
285
|
+
get.type === 'ArrowFunctionExpression'
|
|
286
|
+
? b.arrow([...ids], get.body)
|
|
287
|
+
: get.type === 'FunctionExpression'
|
|
288
|
+
? b.function(null, [...ids], get.body)
|
|
289
|
+
: getter
|
|
290
|
+
? get
|
|
291
|
+
: b.arrow([...ids], get);
|
|
292
|
+
|
|
293
|
+
set =
|
|
294
|
+
set.type === 'ArrowFunctionExpression'
|
|
295
|
+
? b.arrow([set.params[0] ?? b.id('_'), ...ids], set.body)
|
|
296
|
+
: set.type === 'FunctionExpression'
|
|
297
|
+
? b.function(null, [set.params[0] ?? b.id('_'), ...ids], set.body)
|
|
298
|
+
: setter
|
|
299
|
+
? set
|
|
300
|
+
: b.arrow([b.id('$$value'), ...ids], set);
|
|
301
|
+
|
|
302
|
+
return b.call('$.bind_this', value, set, get, values.length > 0 && b.thunk(b.array(values)));
|
|
285
303
|
}
|
|
286
304
|
|
|
287
305
|
/**
|
|
@@ -32,7 +32,9 @@ export function EachBlock(node, context) {
|
|
|
32
32
|
each.push(b.let(node.index, index));
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
const new_body = /** @type {BlockStatement} */ (context.visit(node.body)).body;
|
|
36
|
+
|
|
37
|
+
each.push(...(node.body.metadata.has_await ? [create_async_block(b.block(new_body))] : new_body));
|
|
36
38
|
|
|
37
39
|
const for_loop = b.for(
|
|
38
40
|
b.declaration('let', [
|
|
@@ -55,7 +57,7 @@ export function EachBlock(node, context) {
|
|
|
55
57
|
b.if(
|
|
56
58
|
b.binary('!==', b.member(array_id, 'length'), b.literal(0)),
|
|
57
59
|
b.block([open, for_loop]),
|
|
58
|
-
fallback
|
|
60
|
+
node.fallback.metadata.has_await ? create_async_block(fallback) : fallback
|
|
59
61
|
)
|
|
60
62
|
);
|
|
61
63
|
} else {
|
|
@@ -43,11 +43,14 @@ export function SvelteBoundary(node, context) {
|
|
|
43
43
|
);
|
|
44
44
|
const pending = b.call(callee, b.id('$$renderer'));
|
|
45
45
|
const block = /** @type {BlockStatement} */ (context.visit(node.fragment));
|
|
46
|
+
const statement = node.fragment.metadata.has_await
|
|
47
|
+
? create_async_block(b.block([block]))
|
|
48
|
+
: block;
|
|
46
49
|
context.state.template.push(
|
|
47
50
|
b.if(
|
|
48
51
|
callee,
|
|
49
|
-
b.block(
|
|
50
|
-
b.block(build_template([block_open,
|
|
52
|
+
b.block([b.stmt(pending)]),
|
|
53
|
+
b.block(build_template([block_open, statement, block_close]))
|
|
51
54
|
)
|
|
52
55
|
);
|
|
53
56
|
} else {
|
|
@@ -43,14 +43,22 @@ export function bind_value(input, get, set = get) {
|
|
|
43
43
|
if (value !== (value = get())) {
|
|
44
44
|
var start = input.selectionStart;
|
|
45
45
|
var end = input.selectionEnd;
|
|
46
|
+
var length = input.value.length;
|
|
46
47
|
|
|
47
48
|
// the value is coerced on assignment
|
|
48
49
|
input.value = value ?? '';
|
|
49
50
|
|
|
50
51
|
// Restore selection
|
|
51
52
|
if (end !== null) {
|
|
52
|
-
|
|
53
|
-
input
|
|
53
|
+
var new_length = input.value.length;
|
|
54
|
+
// If cursor was at end and new input is longer, move cursor to new end
|
|
55
|
+
if (start === end && end === length && new_length > length) {
|
|
56
|
+
input.selectionStart = new_length;
|
|
57
|
+
input.selectionEnd = new_length;
|
|
58
|
+
} else {
|
|
59
|
+
input.selectionStart = start;
|
|
60
|
+
input.selectionEnd = Math.min(end, new_length);
|
|
61
|
+
}
|
|
54
62
|
}
|
|
55
63
|
}
|
|
56
64
|
});
|
|
@@ -178,6 +178,8 @@ export class Batch {
|
|
|
178
178
|
flush_queued_effects(render_effects);
|
|
179
179
|
flush_queued_effects(effects);
|
|
180
180
|
|
|
181
|
+
previous_batch = null;
|
|
182
|
+
|
|
181
183
|
this.#deferred?.resolve();
|
|
182
184
|
} else {
|
|
183
185
|
this.#defer_effects(this.#render_effects);
|
|
@@ -280,17 +282,6 @@ export class Batch {
|
|
|
280
282
|
|
|
281
283
|
deactivate() {
|
|
282
284
|
current_batch = null;
|
|
283
|
-
previous_batch = null;
|
|
284
|
-
|
|
285
|
-
for (const update of effect_pending_updates) {
|
|
286
|
-
effect_pending_updates.delete(update);
|
|
287
|
-
update();
|
|
288
|
-
|
|
289
|
-
if (current_batch !== null) {
|
|
290
|
-
// only do one at a time
|
|
291
|
-
break;
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
285
|
}
|
|
295
286
|
|
|
296
287
|
flush() {
|
|
@@ -307,6 +298,16 @@ export class Batch {
|
|
|
307
298
|
}
|
|
308
299
|
|
|
309
300
|
this.deactivate();
|
|
301
|
+
|
|
302
|
+
for (const update of effect_pending_updates) {
|
|
303
|
+
effect_pending_updates.delete(update);
|
|
304
|
+
update();
|
|
305
|
+
|
|
306
|
+
if (current_batch !== null) {
|
|
307
|
+
// only do one at a time
|
|
308
|
+
break;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
310
311
|
}
|
|
311
312
|
|
|
312
313
|
/**
|
|
@@ -375,21 +376,17 @@ export class Batch {
|
|
|
375
376
|
decrement() {
|
|
376
377
|
this.#pending -= 1;
|
|
377
378
|
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
for (const e of this.#maybe_dirty_effects) {
|
|
385
|
-
set_signal_status(e, MAYBE_DIRTY);
|
|
386
|
-
schedule_effect(e);
|
|
387
|
-
}
|
|
379
|
+
for (const e of this.#dirty_effects) {
|
|
380
|
+
set_signal_status(e, DIRTY);
|
|
381
|
+
schedule_effect(e);
|
|
382
|
+
}
|
|
388
383
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
384
|
+
for (const e of this.#maybe_dirty_effects) {
|
|
385
|
+
set_signal_status(e, MAYBE_DIRTY);
|
|
386
|
+
schedule_effect(e);
|
|
392
387
|
}
|
|
388
|
+
|
|
389
|
+
this.flush();
|
|
393
390
|
}
|
|
394
391
|
|
|
395
392
|
/** @param {() => void} fn */
|
package/src/version.js
CHANGED
package/types/index.d.ts.map
CHANGED
|
@@ -260,6 +260,6 @@
|
|
|
260
260
|
null,
|
|
261
261
|
null
|
|
262
262
|
],
|
|
263
|
-
"mappings": ";;;;;;;kBAUiBA,2BAA2BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkC/BC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAwEhBC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;kBAwBbC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoCbC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;aAwBrBC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCfC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA6BdC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;kBAuBRC,OAAOA;;;;;;;;;;;;;;;;kBAgBPC,eAAeA;;;;;;;;;;;;;;;;aAgBpBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCzPRC,cAAcA;;;;;;;;;;;;iBAsBdC,OAAOA;;;;;;;;iBAwBPC,SAASA;;;;;;;;;;;;;;;;;;;;;;iBA0CTC,qBAAqBA;;;;;;;;;;iBA2CrBC,YAAYA;;;;;;;;;;iBAuBZC,WAAWA;;;;;
|
|
263
|
+
"mappings": "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",
|
|
264
264
|
"ignoreList": []
|
|
265
265
|
}
|