|
6 | 6 | * [Router] Add a new rewrite rule `removeQuery` which removes the query portion of a URL. |
7 | 7 | (e.g. `a/b?c=1` to `a/b`) |
8 | 8 |
|
9 | | -* Fix React warnings with SVG VDOM. |
10 | | - |
11 | | -* Fix VDOM attributes not accepting types: `Byte`, `Short`, `Float`, `Double`, `Long` |
12 | | - |
13 | | -* Refactored `vdom.Builder` which is an internal mechanism for efficiently composing VDOM. |
14 | | - There is now: |
15 | | - * An interface - advanced users can create their own if they like |
16 | | - * `vdom.Builder.ToVdomElement` - builds a `VdomElement` which was the previous default |
17 | | - * `vdom.Builder.ToJs` - provides raw JS values like `props: js.Object` and more |
18 | | - |
19 | | -* `vdom.TagMod` now has a `.toJs` method which turns the VDOM tree into a bunch of raw JS values. |
20 | | - This is for advanced hackers only. |
21 | | - |
22 | | -* Add `.renderIntoDOM` to `VdomElement` and `VdomTag`s. |
23 | | - |
24 | 9 | * Opening links in new tabs using `target="_blank"` without `rel="noopener` is a |
25 | 10 | [security risk and performance impediment](https://blog.dareboost.com/en/2017/03/target-blank-links-rel-noopener-performance-security/). |
26 | 11 | Google's Lighthouse auditor [flags it](https://developers.google.com/web/tools/lighthouse/audits/noopener). |
|
53 | 38 | focus : Boolean = true): CallbackTo[Window] = |
54 | 39 | ``` |
55 | 40 |
|
| 41 | +* Add `.renderIntoDOM` to `VdomElement` and `VdomTag`s. |
| 42 | + |
| 43 | +* Fix VDOM attributes not accepting types: `Byte`, `Short`, `Float`, `Double`, `Long` |
| 44 | + |
| 45 | +* Fix React warnings with SVG VDOM. |
| 46 | + |
| 47 | +* Refactored `vdom.Builder` which is an internal mechanism for efficiently composing VDOM. |
| 48 | + There is now: |
| 49 | + * An interface - advanced users can create their own if they like |
| 50 | + * `vdom.Builder.ToVdomElement` - builds a `VdomElement` which was the previous default |
| 51 | + * `vdom.Builder.ToJs` - provides raw JS values like `props: js.Object` and more |
| 52 | + |
| 53 | +* `vdom.TagMod` now has a `.toJs` method which turns the VDOM tree into a bunch of raw JS values. |
| 54 | + This is for advanced hackers only. |
| 55 | + |
56 | 56 | * Remove code deprecated ≤ v1.0.0. |
57 | 57 |
|
58 | 58 | * Upgrade dependencies: |
|
0 commit comments