Skip to content

Commit 2b1cd9c

Browse files
authored
v0.6.3
* Update to lit ^0.13.0, prepare 0.6.3 release * Prepare 0.6.3 changelog. * Avoid relying transitively on lit-html global types for polyfill.
1 parent 3635569 commit 2b1cd9c

File tree

5 files changed

+23
-12
lines changed

5 files changed

+23
-12
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
<!-- ### Removed -->
1818
<!-- ### Fixed -->
1919

20+
## [0.6.3] - 2018-11-08
21+
### Changed
22+
* Update lit-html dependency to ^0.13.0 ([#298](https://github.com/Polymer/lit-element/pull/298)).
23+
2024
## [0.6.2] - 2018-10-05
2125

2226
### Changed

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polymer/lit-element",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "Polymer based lit-html custom element",
55
"license": "BSD-3-Clause",
66
"repository": "Polymer/lit-element",
@@ -40,7 +40,7 @@
4040
},
4141
"typings": "lit-element.d.ts",
4242
"dependencies": {
43-
"lit-html": "^0.12.0"
43+
"lit-html": "^0.13.0"
4444
},
4545
"publishConfig": {
4646
"access": "public"

src/env.d.ts

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
interface ShadyCSS {
2+
styleElement(host: Element, overrideProps?: {[key: string]: string}): void;
3+
getComputedStyleValue(element: Element, property: string): string;
4+
}
5+
6+
interface ShadyDOM {
7+
inUse: boolean;
8+
}
9+
10+
interface Window {
11+
ShadyCSS?: ShadyCSS;
12+
ShadyDOM?: ShadyDOM;
13+
}

src/test/lit-element_styling_test.ts

-6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ import {
2525
nextFrame
2626
} from './test-helpers.js';
2727

28-
declare global {
29-
interface Window {
30-
ShadyDOM: any; // tslint:disable-line
31-
}
32-
}
33-
3428
const assert = chai.assert;
3529

3630
suite('Styling', () => {

0 commit comments

Comments
 (0)