Skip to content

Commit dd3456f

Browse files
authored
refactor!: convert to Polymer 3
vaadin/vaadin-material-styles#107
1 parent 6991e86 commit dd3456f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+660
-4741
lines changed

packages/vaadin-material-styles/.bowerrc

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
2-
"extends": "vaadin",
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:prettier/recommended"
5+
],
6+
"plugins": ["prettier"],
37
"env": {
48
"browser": true,
5-
"node": true,
69
"es6": true
710
},
8-
"plugins": [
9-
"html"
10-
],
1111
"parserOptions": {
12-
"ecmaVersion": 8
13-
},
14-
"globals": {
15-
"Polymer": false,
16-
"Vaadin": false
12+
"sourceType": "module",
13+
"ecmaVersion": 2020
1714
}
1815
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: tests
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
unit-tests:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 12
14+
15+
- name: Install dependencies
16+
run: npm install
17+
18+
- name: Lint JavaScript
19+
run: npm run lint:js
20+
21+
- name: Lint CSS
22+
run: npm run lint:css

packages/vaadin-material-styles/.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"printWidth": 120,
4+
"trailingComma": "none",
5+
"htmlWhitespaceSensitivity": "strict"
6+
}

packages/vaadin-material-styles/.travis.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

packages/vaadin-material-styles/TODO.md

Lines changed: 0 additions & 75 deletions
This file was deleted.

packages/vaadin-material-styles/all-imports.html

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* @license
3+
* Copyright (c) 2021 Vaadin Ltd.
4+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5+
*/
6+
import './mixins/field-button.js';
7+
export * from './mixins/field-button.js';
8+
import './mixins/menu-overlay.js';
9+
export * from './mixins/menu-overlay.js';
10+
import './mixins/overlay.js';
11+
export * from './mixins/overlay.js';
12+
import './mixins/required-field.js';
13+
export * from './mixins/required-field.js';
14+
import './color.js';
15+
export * from './color.js';
16+
import './font-icons.js';
17+
export * from './font-icons.js';
18+
import './shadow.js';
19+
export * from './shadow.js';
20+
import './typography.js';
21+
export * from './typography.js';

packages/vaadin-material-styles/bower.json

Lines changed: 0 additions & 72 deletions
This file was deleted.

0 commit comments

Comments
 (0)