@astrojs/compiler 0.6.2 → 0.7.3
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 +30 -0
- package/astro.wasm +0 -0
- package/package.json +1 -1
- package/shared/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @astrojs/compiler
|
|
2
2
|
|
|
3
|
+
## 0.7.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cc24069: Fix some edge cases with expressions inside of `<table>` elements
|
|
8
|
+
- 086275c: Fix edge case with textarea inside expression
|
|
9
|
+
|
|
10
|
+
## 0.7.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 899e48d: Fix issue with active formatting elements by marking expressions as unique scopes
|
|
15
|
+
|
|
16
|
+
## 0.7.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- fa039dd: Fix tokenization of attribute expression containing the solidus (`/`) character
|
|
21
|
+
- e365c3c: Fix bug with expressions inside of <table> elements (without reverting a previous fix to expressions inside of <a> elements)
|
|
22
|
+
- 7c5889f: Fix bug with `@keyframes` scoping
|
|
23
|
+
- df74ab3: Fix bug where named grid columns (like `[content-start]`) would be scoped, producing invalid CSS
|
|
24
|
+
- abe37ca: Fix handling of components and expressions inside of `<noscript>`
|
|
25
|
+
- 8961cf4: Fix a logical error with expression tokenization when using nested functions. Previously, only the first brace pair would be respected and following pairs would be treated as expression boundaries.
|
|
26
|
+
|
|
27
|
+
## 0.7.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- 43cbac3: Adds metadata on hydration directives used by the component
|
|
32
|
+
|
|
3
33
|
## 0.6.2
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/astro.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/shared/types.d.ts
CHANGED