svelte 5.48.5 → 5.49.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/elements.d.ts +1 -1
- package/package.json +1 -1
- package/src/compiler/errors.js +4 -4
- package/src/compiler/phases/1-parse/read/options.js +6 -4
- package/src/compiler/phases/2-analyze/visitors/shared/a11y/index.js +4 -0
- package/src/compiler/phases/3-transform/client/transform-client.js +11 -2
- package/src/compiler/phases/3-transform/client/visitors/AssignmentExpression.js +4 -1
- package/src/compiler/phases/scope.js +8 -0
- package/src/internal/client/dev/assign.js +2 -1
- package/src/internal/client/dom/elements/custom-element.js +13 -8
- package/src/internal/client/dom/elements/transitions.js +4 -5
- package/src/internal/client/reactivity/batch.js +31 -0
- package/src/internal/client/runtime.js +15 -3
- package/src/internal/server/context.js +11 -1
- package/src/version.js +1 -1
- package/types/index.d.ts +1 -1
- package/types/index.d.ts.map +1 -1
package/elements.d.ts
CHANGED
package/package.json
CHANGED
package/src/compiler/errors.js
CHANGED
|
@@ -1550,12 +1550,12 @@ export function svelte_options_invalid_attribute_value(node, list) {
|
|
|
1550
1550
|
}
|
|
1551
1551
|
|
|
1552
1552
|
/**
|
|
1553
|
-
* "customElement" must be a string literal defining a valid custom element name or an object of the form { tag?: string; shadow?: "open" | "none"
|
|
1553
|
+
* "customElement" must be a string literal defining a valid custom element name or an object of the form { tag?: string; shadow?: "open" | "none" | `ShadowRootInit`; props?: { [key: string]: { attribute?: string; reflect?: boolean; type: .. } } }
|
|
1554
1554
|
* @param {null | number | NodeLike} node
|
|
1555
1555
|
* @returns {never}
|
|
1556
1556
|
*/
|
|
1557
1557
|
export function svelte_options_invalid_customelement(node) {
|
|
1558
|
-
e(node, 'svelte_options_invalid_customelement', `"customElement" must be a string literal defining a valid custom element name or an object of the form { tag?: string; shadow?: "open" | "none"
|
|
1558
|
+
e(node, 'svelte_options_invalid_customelement', `"customElement" must be a string literal defining a valid custom element name or an object of the form { tag?: string; shadow?: "open" | "none" | \`ShadowRootInit\`; props?: { [key: string]: { attribute?: string; reflect?: boolean; type: .. } } }\nhttps://svelte.dev/e/svelte_options_invalid_customelement`);
|
|
1559
1559
|
}
|
|
1560
1560
|
|
|
1561
1561
|
/**
|
|
@@ -1568,12 +1568,12 @@ export function svelte_options_invalid_customelement_props(node) {
|
|
|
1568
1568
|
}
|
|
1569
1569
|
|
|
1570
1570
|
/**
|
|
1571
|
-
* "shadow" must be either "open"
|
|
1571
|
+
* "shadow" must be either "open", "none" or `ShadowRootInit` object.
|
|
1572
1572
|
* @param {null | number | NodeLike} node
|
|
1573
1573
|
* @returns {never}
|
|
1574
1574
|
*/
|
|
1575
1575
|
export function svelte_options_invalid_customelement_shadow(node) {
|
|
1576
|
-
e(node, 'svelte_options_invalid_customelement_shadow', `"shadow" must be either "open"
|
|
1576
|
+
e(node, 'svelte_options_invalid_customelement_shadow', `"shadow" must be either "open", "none" or \`ShadowRootInit\` object.\nhttps://svelte.dev/e/svelte_options_invalid_customelement_shadow`);
|
|
1577
1577
|
}
|
|
1578
1578
|
|
|
1579
1579
|
/**
|
|
@@ -133,11 +133,13 @@ export default function read_options(node) {
|
|
|
133
133
|
|
|
134
134
|
const shadow = properties.find(([name]) => name === 'shadow')?.[1];
|
|
135
135
|
if (shadow) {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
136
|
+
if (shadow.type === 'Literal' && (shadow.value === 'open' || shadow.value === 'none')) {
|
|
137
|
+
ce.shadow = shadow.value;
|
|
138
|
+
} else if (shadow.type === 'ObjectExpression') {
|
|
139
|
+
ce.shadow = shadow;
|
|
140
|
+
} else {
|
|
141
|
+
e.svelte_options_invalid_customelement_shadow(attribute);
|
|
139
142
|
}
|
|
140
|
-
ce.shadow = shadowdom;
|
|
141
143
|
}
|
|
142
144
|
|
|
143
145
|
const extend = properties.find(([name]) => name === 'extend')?.[1];
|
|
@@ -824,6 +824,10 @@ function has_content(element) {
|
|
|
824
824
|
}
|
|
825
825
|
|
|
826
826
|
if (node.type === 'RegularElement' || node.type === 'SvelteElement') {
|
|
827
|
+
if (node.attributes.some((a) => a.type === 'Attribute' && a.name === 'popover')) {
|
|
828
|
+
continue;
|
|
829
|
+
}
|
|
830
|
+
|
|
827
831
|
if (
|
|
828
832
|
node.name === 'img' &&
|
|
829
833
|
node.attributes.some((node) => node.type === 'Attribute' && node.name === 'alt')
|
|
@@ -638,7 +638,16 @@ export function client_component(analysis, options) {
|
|
|
638
638
|
const accessors_str = b.array(
|
|
639
639
|
analysis.exports.map(({ name, alias }) => b.literal(alias ?? name))
|
|
640
640
|
);
|
|
641
|
-
|
|
641
|
+
|
|
642
|
+
/** @type {ESTree.ObjectExpression | undefined} */
|
|
643
|
+
let shadow_root_init;
|
|
644
|
+
if (typeof ce === 'boolean' || ce.shadow === 'open' || ce.shadow === undefined) {
|
|
645
|
+
shadow_root_init = b.object([b.init('mode', b.literal('open'))]);
|
|
646
|
+
} else if (ce.shadow === 'none') {
|
|
647
|
+
shadow_root_init = undefined;
|
|
648
|
+
} else {
|
|
649
|
+
shadow_root_init = ce.shadow;
|
|
650
|
+
}
|
|
642
651
|
|
|
643
652
|
const create_ce = b.call(
|
|
644
653
|
'$.create_custom_element',
|
|
@@ -646,7 +655,7 @@ export function client_component(analysis, options) {
|
|
|
646
655
|
b.object(props_str),
|
|
647
656
|
slots_str,
|
|
648
657
|
accessors_str,
|
|
649
|
-
|
|
658
|
+
shadow_root_init,
|
|
650
659
|
/** @type {any} */ (typeof ce !== 'boolean' ? ce.extend : undefined)
|
|
651
660
|
);
|
|
652
661
|
|
|
@@ -162,7 +162,10 @@ function build_assignment(operator, left, right, context) {
|
|
|
162
162
|
// will be pushed to. we do this by transforming it to something like
|
|
163
163
|
// `$.assign_nullish(object, 'items', [])`
|
|
164
164
|
let should_transform =
|
|
165
|
-
dev &&
|
|
165
|
+
dev &&
|
|
166
|
+
path.at(-1) !== 'ExpressionStatement' &&
|
|
167
|
+
is_non_coercive_operator(operator) &&
|
|
168
|
+
!context.state.scope.evaluate(right).is_primitive;
|
|
166
169
|
|
|
167
170
|
// special case — ignore `onclick={() => (...)}`
|
|
168
171
|
if (
|
|
@@ -228,6 +228,13 @@ class Evaluation {
|
|
|
228
228
|
*/
|
|
229
229
|
is_number = true;
|
|
230
230
|
|
|
231
|
+
/**
|
|
232
|
+
* True if the value is known to be a primitive
|
|
233
|
+
* @readonly
|
|
234
|
+
* @type {boolean}
|
|
235
|
+
*/
|
|
236
|
+
is_primitive = true;
|
|
237
|
+
|
|
231
238
|
/**
|
|
232
239
|
* True if the value is known to be a function
|
|
233
240
|
* @readonly
|
|
@@ -577,6 +584,7 @@ class Evaluation {
|
|
|
577
584
|
|
|
578
585
|
if (value === UNKNOWN) {
|
|
579
586
|
this.has_unknown = true;
|
|
587
|
+
this.is_primitive = false;
|
|
580
588
|
}
|
|
581
589
|
}
|
|
582
590
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { STATE_SYMBOL } from '#client/constants';
|
|
1
2
|
import { sanitize_location } from '../../../utils.js';
|
|
2
3
|
import { untrack } from '../runtime.js';
|
|
3
4
|
import * as w from '../warnings.js';
|
|
@@ -10,7 +11,7 @@ import * as w from '../warnings.js';
|
|
|
10
11
|
* @param {string} location
|
|
11
12
|
*/
|
|
12
13
|
function compare(a, b, property, location) {
|
|
13
|
-
if (a !== b) {
|
|
14
|
+
if (a !== b && typeof b === 'object' && STATE_SYMBOL in b) {
|
|
14
15
|
w.assignment_value_stale(property, /** @type {string} */ (sanitize_location(location)));
|
|
15
16
|
}
|
|
16
17
|
|
|
@@ -35,18 +35,23 @@ if (typeof HTMLElement === 'function') {
|
|
|
35
35
|
$$l_u = new Map();
|
|
36
36
|
/** @type {any} The managed render effect for reflecting attributes */
|
|
37
37
|
$$me;
|
|
38
|
+
/** @type {ShadowRoot | null} The ShadowRoot of the custom element */
|
|
39
|
+
$$shadowRoot = null;
|
|
38
40
|
|
|
39
41
|
/**
|
|
40
42
|
* @param {*} $$componentCtor
|
|
41
43
|
* @param {*} $$slots
|
|
42
|
-
* @param {
|
|
44
|
+
* @param {ShadowRootInit | undefined} shadow_root_init
|
|
43
45
|
*/
|
|
44
|
-
constructor($$componentCtor, $$slots,
|
|
46
|
+
constructor($$componentCtor, $$slots, shadow_root_init) {
|
|
45
47
|
super();
|
|
46
48
|
this.$$ctor = $$componentCtor;
|
|
47
49
|
this.$$s = $$slots;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
+
|
|
51
|
+
if (shadow_root_init) {
|
|
52
|
+
// We need to store the reference to shadow root, because `closed` shadow root cannot be
|
|
53
|
+
// accessed with `this.shadowRoot`.
|
|
54
|
+
this.$$shadowRoot = this.attachShadow(shadow_root_init);
|
|
50
55
|
}
|
|
51
56
|
}
|
|
52
57
|
|
|
@@ -136,7 +141,7 @@ if (typeof HTMLElement === 'function') {
|
|
|
136
141
|
}
|
|
137
142
|
this.$$c = createClassComponent({
|
|
138
143
|
component: this.$$ctor,
|
|
139
|
-
target: this
|
|
144
|
+
target: this.$$shadowRoot || this,
|
|
140
145
|
props: {
|
|
141
146
|
...this.$$d,
|
|
142
147
|
$$slots,
|
|
@@ -277,7 +282,7 @@ function get_custom_elements_slots(element) {
|
|
|
277
282
|
* @param {Record<string, CustomElementPropDefinition>} props_definition The props to observe
|
|
278
283
|
* @param {string[]} slots The slots to create
|
|
279
284
|
* @param {string[]} exports Explicitly exported values, other than props
|
|
280
|
-
* @param {
|
|
285
|
+
* @param {ShadowRootInit | undefined} shadow_root_init Options passed to shadow DOM constructor
|
|
281
286
|
* @param {(ce: new () => HTMLElement) => new () => HTMLElement} [extend]
|
|
282
287
|
*/
|
|
283
288
|
export function create_custom_element(
|
|
@@ -285,12 +290,12 @@ export function create_custom_element(
|
|
|
285
290
|
props_definition,
|
|
286
291
|
slots,
|
|
287
292
|
exports,
|
|
288
|
-
|
|
293
|
+
shadow_root_init,
|
|
289
294
|
extend
|
|
290
295
|
) {
|
|
291
296
|
let Class = class extends SvelteElement {
|
|
292
297
|
constructor() {
|
|
293
|
-
super(Component, slots,
|
|
298
|
+
super(Component, slots, shadow_root_init);
|
|
294
299
|
this.$$p_d = props_definition;
|
|
295
300
|
}
|
|
296
301
|
static get observedAttributes() {
|
|
@@ -239,8 +239,6 @@ export function transition(flags, element, get_fn, get_params) {
|
|
|
239
239
|
intro?.abort();
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
dispatch_event(element, 'introstart');
|
|
243
|
-
|
|
244
242
|
intro = animate(element, get_options(), outro, 1, () => {
|
|
245
243
|
dispatch_event(element, 'introend');
|
|
246
244
|
|
|
@@ -260,8 +258,6 @@ export function transition(flags, element, get_fn, get_params) {
|
|
|
260
258
|
|
|
261
259
|
element.inert = true;
|
|
262
260
|
|
|
263
|
-
dispatch_event(element, 'outrostart');
|
|
264
|
-
|
|
265
261
|
outro = animate(element, get_options(), intro, 0, () => {
|
|
266
262
|
dispatch_event(element, 'outroend');
|
|
267
263
|
fn?.();
|
|
@@ -345,7 +341,8 @@ function animate(element, options, counterpart, t2, on_finish) {
|
|
|
345
341
|
|
|
346
342
|
counterpart?.deactivate();
|
|
347
343
|
|
|
348
|
-
if (!options?.duration) {
|
|
344
|
+
if (!options?.duration && !options?.delay) {
|
|
345
|
+
dispatch_event(element, is_intro ? 'introstart' : 'outrostart');
|
|
349
346
|
on_finish();
|
|
350
347
|
|
|
351
348
|
return {
|
|
@@ -385,6 +382,8 @@ function animate(element, options, counterpart, t2, on_finish) {
|
|
|
385
382
|
// remove dummy animation from the stack to prevent conflict with main animation
|
|
386
383
|
animation.cancel();
|
|
387
384
|
|
|
385
|
+
dispatch_event(element, is_intro ? 'introstart' : 'outrostart');
|
|
386
|
+
|
|
388
387
|
// for bidirectional transitions, we start from the current position,
|
|
389
388
|
// rather than doing a full intro/outro
|
|
390
389
|
var t1 = counterpart?.t() ?? 1 - t2;
|
|
@@ -171,6 +171,10 @@ export class Batch {
|
|
|
171
171
|
if (this.is_deferred()) {
|
|
172
172
|
this.#defer_effects(render_effects);
|
|
173
173
|
this.#defer_effects(effects);
|
|
174
|
+
|
|
175
|
+
for (const e of this.skipped_effects) {
|
|
176
|
+
reset_branch(e);
|
|
177
|
+
}
|
|
174
178
|
} else {
|
|
175
179
|
// append/remove branches
|
|
176
180
|
for (const fn of this.#commit_callbacks) fn();
|
|
@@ -881,6 +885,26 @@ export function eager(fn) {
|
|
|
881
885
|
return value;
|
|
882
886
|
}
|
|
883
887
|
|
|
888
|
+
/**
|
|
889
|
+
* Mark all the effects inside a skipped branch CLEAN, so that
|
|
890
|
+
* they can be correctly rescheduled later
|
|
891
|
+
* @param {Effect} effect
|
|
892
|
+
*/
|
|
893
|
+
function reset_branch(effect) {
|
|
894
|
+
// clean branch = nothing dirty inside, no need to traverse further
|
|
895
|
+
if ((effect.f & BRANCH_EFFECT) !== 0 && (effect.f & CLEAN) !== 0) {
|
|
896
|
+
return;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
set_signal_status(effect, CLEAN);
|
|
900
|
+
|
|
901
|
+
var e = effect.first;
|
|
902
|
+
while (e !== null) {
|
|
903
|
+
reset_branch(e);
|
|
904
|
+
e = e.next;
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
|
|
884
908
|
/**
|
|
885
909
|
* Creates a 'fork', in which state changes are evaluated but not applied to the DOM.
|
|
886
910
|
* This is useful for speculatively loading data (for example) when you suspect that
|
|
@@ -972,6 +996,13 @@ export function fork(fn) {
|
|
|
972
996
|
await settled;
|
|
973
997
|
},
|
|
974
998
|
discard: () => {
|
|
999
|
+
// cause any MAYBE_DIRTY deriveds to update
|
|
1000
|
+
// if they depend on things thath changed
|
|
1001
|
+
// inside the discarded fork
|
|
1002
|
+
for (var source of batch.current.keys()) {
|
|
1003
|
+
source.wv = increment_write_version();
|
|
1004
|
+
}
|
|
1005
|
+
|
|
975
1006
|
if (!committed && batches.has(batch)) {
|
|
976
1007
|
batches.delete(batch);
|
|
977
1008
|
batch.discard();
|
|
@@ -43,7 +43,13 @@ import {
|
|
|
43
43
|
set_dev_current_component_function,
|
|
44
44
|
set_dev_stack
|
|
45
45
|
} from './context.js';
|
|
46
|
-
import {
|
|
46
|
+
import {
|
|
47
|
+
Batch,
|
|
48
|
+
batch_values,
|
|
49
|
+
current_batch,
|
|
50
|
+
flushSync,
|
|
51
|
+
schedule_effect
|
|
52
|
+
} from './reactivity/batch.js';
|
|
47
53
|
import { handle_error } from './error-handling.js';
|
|
48
54
|
import { UNINITIALIZED } from '../../constants.js';
|
|
49
55
|
import { captured_signals } from './legacy.js';
|
|
@@ -249,10 +255,16 @@ export function update_reaction(reaction) {
|
|
|
249
255
|
var result = fn();
|
|
250
256
|
var deps = reaction.deps;
|
|
251
257
|
|
|
258
|
+
// Don't remove reactions during fork;
|
|
259
|
+
// they must remain for when fork is discarded
|
|
260
|
+
var is_fork = current_batch?.is_fork;
|
|
261
|
+
|
|
252
262
|
if (new_deps !== null) {
|
|
253
263
|
var i;
|
|
254
264
|
|
|
255
|
-
|
|
265
|
+
if (!is_fork) {
|
|
266
|
+
remove_reactions(reaction, skipped_deps);
|
|
267
|
+
}
|
|
256
268
|
|
|
257
269
|
if (deps !== null && skipped_deps > 0) {
|
|
258
270
|
deps.length = skipped_deps + new_deps.length;
|
|
@@ -268,7 +280,7 @@ export function update_reaction(reaction) {
|
|
|
268
280
|
(deps[i].reactions ??= []).push(reaction);
|
|
269
281
|
}
|
|
270
282
|
}
|
|
271
|
-
} else if (deps !== null && skipped_deps < deps.length) {
|
|
283
|
+
} else if (!is_fork && deps !== null && skipped_deps < deps.length) {
|
|
272
284
|
remove_reactions(reaction, skipped_deps);
|
|
273
285
|
deps.length = skipped_deps;
|
|
274
286
|
}
|
|
@@ -17,7 +17,17 @@ export function set_ssr_context(v) {
|
|
|
17
17
|
*/
|
|
18
18
|
export function createContext() {
|
|
19
19
|
const key = {};
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
return [
|
|
22
|
+
() => {
|
|
23
|
+
if (!hasContext(key)) {
|
|
24
|
+
e.missing_context();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
return getContext(key);
|
|
28
|
+
},
|
|
29
|
+
(context) => setContext(key, context)
|
|
30
|
+
];
|
|
21
31
|
}
|
|
22
32
|
|
|
23
33
|
/**
|
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
package/types/index.d.ts.map
CHANGED
|
@@ -275,6 +275,6 @@
|
|
|
275
275
|
null,
|
|
276
276
|
null
|
|
277
277
|
],
|
|
278
|
-
"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;;;;;
|
|
278
|
+
"mappings": "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",
|
|
279
279
|
"ignoreList": []
|
|
280
280
|
}
|