Skip to content

Commit

Permalink
Update @polymer/lit-element to lit-element
Browse files Browse the repository at this point in the history
  • Loading branch information
abdonrd committed Jan 11, 2019
1 parent 61c5cc4 commit 3bed0b2
Show file tree
Hide file tree
Showing 16 changed files with 290 additions and 273 deletions.
533 changes: 275 additions & 258 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
},
"dependencies": {
"@polymer/app-layout": "^3.0.0",
"@polymer/lit-element": "^0.7.0",
"@polymer/polymer": "^3.1.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"lit-element": "^2.0.0-rc.1",
"pwa-helpers": "^0.9.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/button-shared-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { css } from '@polymer/lit-element';
import { css } from 'lit-element';

export const ButtonSharedStyles = css`
button {
Expand Down
2 changes: 1 addition & 1 deletion src/components/counter-element.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { LitElement, html, css } from '@polymer/lit-element';
import { LitElement, html, css } from 'lit-element';

// These are the elements needed by this element.
import { plusIcon, minusIcon } from './my-icons.js';
Expand Down
2 changes: 1 addition & 1 deletion src/components/my-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { LitElement, html, css } from '@polymer/lit-element';
import { LitElement, html, css } from 'lit-element';
import { setPassiveTouchGestures } from '@polymer/polymer/lib/utils/settings.js';
import { connect } from 'pwa-helpers/connect-mixin.js';
import { installMediaQueryWatcher } from 'pwa-helpers/media-query.js';
Expand Down
2 changes: 1 addition & 1 deletion src/components/my-icons.js

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

2 changes: 1 addition & 1 deletion src/components/my-view1.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { html } from '@polymer/lit-element';
import { html } from 'lit-element';
import { PageViewElement } from './page-view-element.js';

// These are the shared styles needed by this element.
Expand Down
2 changes: 1 addition & 1 deletion src/components/my-view2.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { html } from '@polymer/lit-element';
import { html } from 'lit-element';
import { PageViewElement } from './page-view-element.js';
import { connect } from 'pwa-helpers/connect-mixin.js';

Expand Down
2 changes: 1 addition & 1 deletion src/components/my-view3.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { html, css } from '@polymer/lit-element';
import { html, css } from 'lit-element';
import { PageViewElement } from './page-view-element.js';
import { connect } from 'pwa-helpers/connect-mixin.js';

Expand Down
2 changes: 1 addition & 1 deletion src/components/my-view404.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { html } from '@polymer/lit-element';
import { html } from 'lit-element';
import { PageViewElement } from './page-view-element.js';

// These are the shared styles needed by this element.
Expand Down
2 changes: 1 addition & 1 deletion src/components/page-view-element.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { LitElement } from '@polymer/lit-element';
import { LitElement } from 'lit-element';

export class PageViewElement extends LitElement {
// Only render this page if it's actually visible.
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { css } from '@polymer/lit-element';
import { css } from 'lit-element';

export const SharedStyles = css`
:host {
Expand Down
2 changes: 1 addition & 1 deletion src/components/shop-cart.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { LitElement, html, css } from '@polymer/lit-element';
import { LitElement, html, css } from 'lit-element';
import { connect } from 'pwa-helpers/connect-mixin.js';

// This element is connected to the Redux store.
Expand Down
2 changes: 1 addition & 1 deletion src/components/shop-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { LitElement, html } from '@polymer/lit-element';
import { LitElement, html } from 'lit-element';

// This element is *not* connected to the Redux store.
class ShopItem extends LitElement {
Expand Down
2 changes: 1 addition & 1 deletion src/components/shop-products.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { LitElement, html, css } from '@polymer/lit-element';
import { LitElement, html, css } from 'lit-element';
import { connect } from 'pwa-helpers/connect-mixin.js';

// This element is connected to the Redux store.
Expand Down
2 changes: 1 addition & 1 deletion src/components/snack-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { LitElement, html, css } from '@polymer/lit-element';
import { LitElement, html, css } from 'lit-element';

class SnackBar extends LitElement {
static get properties() {
Expand Down

0 comments on commit 3bed0b2

Please sign in to comment.