@codemirror/language 0.19.9 → 0.20.1

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 CHANGED
@@ -1,3 +1,37 @@
1
+ ## 0.20.1 (2022-05-18)
2
+
3
+ ### Bug fixes
4
+
5
+ Make sure `all` styles in the CSS generated for a `HighlightStyle` have a lower precedence than the other rules defined for the style. Use a shorthand property
6
+
7
+ ## 0.20.0 (2022-04-20)
8
+
9
+ ### Breaking changes
10
+
11
+ `HighlightStyle.get` is now called `highlightingFor`.
12
+
13
+ `HighlightStyles` no longer function as extensions (to improve tree shaking), and must be wrapped with `syntaxHighlighting` to add to an editor configuration.
14
+
15
+ `Language` objects no longer have a `topNode` property.
16
+
17
+ ### New features
18
+
19
+ `HighlightStyle` and `defaultHighlightStyle` from the now-removed @codemirror/highlight package now live in this package.
20
+
21
+ The new `forceParsing` function can be used to run the parser forward on an editor view.
22
+
23
+ The exports that used to live in @codemirror/matchbrackets are now exported from this package.
24
+
25
+ The @codemirror/fold package has been merged into this one.
26
+
27
+ The exports from the old @codemirror/stream-parser package now live in this package.
28
+
29
+ ## 0.19.10 (2022-03-31)
30
+
31
+ ### Bug fixes
32
+
33
+ Autocompletion may now also trigger automatic indentation on input.
34
+
1
35
  ## 0.19.9 (2022-03-30)
2
36
 
3
37
  ### Bug fixes