Skip to content

Commit

Permalink
v0.6.3
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
kevinpschaaf committed Nov 9, 2018
1 parent 3635569 commit 2b1cd9c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- ### Removed -->
<!-- ### Fixed -->

## [0.6.3] - 2018-11-08
### Changed
* Update lit-html dependency to ^0.13.0 ([#298](https://github.com/Polymer/lit-element/pull/298)).

## [0.6.2] - 2018-10-05

### Changed
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polymer/lit-element",
"version": "0.6.2",
"version": "0.6.3",
"description": "Polymer based lit-html custom element",
"license": "BSD-3-Clause",
"repository": "Polymer/lit-element",
Expand Down Expand Up @@ -40,7 +40,7 @@
},
"typings": "lit-element.d.ts",
"dependencies": {
"lit-html": "^0.12.0"
"lit-html": "^0.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
13 changes: 13 additions & 0 deletions src/env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
interface ShadyCSS {
styleElement(host: Element, overrideProps?: {[key: string]: string}): void;
getComputedStyleValue(element: Element, property: string): string;
}

interface ShadyDOM {
inUse: boolean;
}

interface Window {
ShadyCSS?: ShadyCSS;
ShadyDOM?: ShadyDOM;
}
6 changes: 0 additions & 6 deletions src/test/lit-element_styling_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ import {
nextFrame
} from './test-helpers.js';

declare global {
interface Window {
ShadyDOM: any; // tslint:disable-line
}
}

const assert = chai.assert;

suite('Styling', () => {
Expand Down

0 comments on commit 2b1cd9c

Please sign in to comment.