Skip to content

Commit b212f87

Browse files
Export UpdatingElement as ReactiveElement (#1177)
1 parent c59e2fe commit b212f87

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2626

2727
### Added
2828
* Adds a `static shadowRootOptions` property for specifying shadow root options. This is a slightly simpler alternative to implementing a custom `createRenderRoot` method [#1147](https://github.com/Polymer/lit-element/issues/1147).
29+
* Adds an export of `UpdatingElement` as `ReactiveElement` for forward-compatibility with lit-element 3.0 [#1177](https://github.com/Polymer/lit-element/issues/1177).
2930

3031
### Fixed
3132
* Fixes an issue with `queryAssignedNodes` when applying a selector on a slot that included text nodes on older browsers not supporting Element.matches [#1088](https://github.com/Polymer/lit-element/issues/1088).

src/lit-element.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ import {render, ShadyRenderOptions} from 'lit-html/lib/shady-render.js';
5959
import {PropertyValues, UpdatingElement} from './lib/updating-element.js';
6060

6161
export * from './lib/updating-element.js';
62+
export {UpdatingElement as ReactiveElement} from './lib/updating-element.js';
6263
export * from './lib/decorators.js';
6364
export {html, svg, TemplateResult, SVGTemplateResult} from 'lit-html/lit-html.js';
6465
import {supportsAdoptingStyleSheets, CSSResult, unsafeCSS} from './lib/css-tag.js';

0 commit comments

Comments
 (0)