svelte 3.46.3 → 3.46.4
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/CHANGELOG.md +9 -0
- package/compiler.js +219 -247
- package/compiler.js.map +1 -1
- package/compiler.mjs +219 -247
- package/compiler.mjs.map +1 -1
- package/internal/index.js +1 -1
- package/internal/index.mjs +1 -1
- package/package.json +2 -8
- package/types/compiler/compile/nodes/Text.d.ts +2 -0
- package/types/compiler/interfaces.d.ts +3 -3
- package/types/compiler/utils/push_array.d.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Svelte changelog
|
|
2
2
|
|
|
3
|
+
## 3.46.4
|
|
4
|
+
|
|
5
|
+
* Avoid `maximum call stack size exceeded` errors on large components ([#4694](https://github.com/sveltejs/svelte/issues/4694))
|
|
6
|
+
* Preserve leading space with `preserveWhitespace: true` ([#4731](https://github.com/sveltejs/svelte/issues/4731))
|
|
7
|
+
* Preserve leading space in `<pre>` tags ([#6437](https://github.com/sveltejs/svelte/issues/6437))
|
|
8
|
+
* Improve error message when trying to use `style:` directives on inline components ([#7177](https://github.com/sveltejs/svelte/issues/7177))
|
|
9
|
+
* Add `FormData` as a known global ([#7199](https://github.com/sveltejs/svelte/pull/7199))
|
|
10
|
+
* Mark `css`/`instance`/`module` AST properties as optional in types ([#7204](https://github.com/sveltejs/svelte/pull/7204))
|
|
11
|
+
|
|
3
12
|
## 3.46.3
|
|
4
13
|
|
|
5
14
|
* Ignore whitespace in `{#each}` blocks when containing elements with `animate:` ([#5477](https://github.com/sveltejs/svelte/pull/5477))
|