| OLD | NEW |
| 1 #### 0.11.3 |
| 2 * Add support for the new `link[rel="x-dart-test"]` tags from the `test` |
| 3 package to the transformer. |
| 4 |
| 1 #### 0.11.2 | 5 #### 0.11.2 |
| 2 * Copied `DomProxyMixin` from `custom_element_apigen` to this package and | 6 * Copied `DomProxyMixin` from `custom_element_apigen` to this package and |
| 3 renamed it `CustomElementProxyMixin`. This can be mixed into any class that | 7 renamed it `CustomElementProxyMixin`. This can be mixed into any class that |
| 4 is using the `@CustomElementProxy` annotation and provides easy access to | 8 is using the `@CustomElementProxy` annotation and provides easy access to |
| 5 the underlying javascript element via the `jsElement` getter. For instance | 9 the underlying javascript element via the `jsElement` getter. For instance |
| 6 the following is a simple example of a dart class that wraps a custom | 10 the following is a simple example of a dart class that wraps a custom |
| 7 javascript element `foo-element` with a method `doFoo` and a property `foo`. | 11 javascript element `foo-element` with a method `doFoo` and a property `foo`. |
| 8 | 12 |
| 9 @CustomElementProxy('foo-element') | 13 @CustomElementProxy('foo-element') |
| 10 class FooElement extends HtmlElement with CustomElementProxyMixin { | 14 class FooElement extends HtmlElement with CustomElementProxyMixin { |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had | 222 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had |
| 219 breaking changes so we are republishing it in 0.4.0) | 223 breaking changes so we are republishing it in 0.4.0) |
| 220 | 224 |
| 221 #### 0.3.5 | 225 #### 0.3.5 |
| 222 * Added `registerDartType` to register a Dart API for a custom-element written | 226 * Added `registerDartType` to register a Dart API for a custom-element written |
| 223 in Javascript. | 227 in Javascript. |
| 224 * Updated to platform 0.3.3-29065bc | 228 * Updated to platform 0.3.3-29065bc |
| 225 | 229 |
| 226 #### 0.3.4 | 230 #### 0.3.4 |
| 227 * Updated to platform 0.2.4 (see lib/build.log for details) | 231 * Updated to platform 0.2.4 (see lib/build.log for details) |
| OLD | NEW |