@vaadin/vaadin-board 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,21 +1,18 @@
1
- [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-board)](https://www.npmjs.com/package/@vaadin/vaadin-board)
2
- [![Bower version](https://badgen.net/github/release/vaadin/vaadin-board)](https://github.com/vaadin/vaadin-board/releases)
3
- [![Build Status](https://travis-ci.org/vaadin/vaadin-board.svg?branch=master)](https://travis-ci.org/vaadin/vaadin-board)
4
- [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/web-components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
5
-
6
- [![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/vaadinvaadin-board)
7
- [![Stars on vaadin.com/directory](https://img.shields.io/vaadin-directory/star/vaadinvaadin-board.svg)](https://vaadin.com/directory/component/vaadinvaadin-board)
1
+ # \<vaadin-board\>
8
2
 
3
+ > ⚠️ Starting from Vaadin 20, the source code and issues for this component are migrated to the [`vaadin/web-components`](https://github.com/vaadin/web-components/tree/master/packages/vaadin-board) monorepository.
4
+ > This repository contains the source code and releases of `<vaadin-board>` for the Vaadin versions 10 to 19.
9
5
 
10
- # \<vaadin-board\>
6
+ [&lt;vaadin-board&gt;](https://vaadin.com/components/vaadin-board) is a Web component to create flexible responsive layouts and build nice looking dashboard.
7
+ Vaadin Board key feature is how it effectively reorders the widgets on different screen sizes, maximizing the use of space and looking stunning.
11
8
 
12
9
  [Live Demo ↗](https://vaadin.com/components/vaadin-board/html-examples)
13
10
  |
14
11
  [API documentation ↗](https://vaadin.com/components/vaadin-board/html-api)
15
12
 
16
-
17
- [&lt;vaadin-board&gt;](https://vaadin.com/components/vaadin-board) is a Web component to create flexible responsive layouts and build nice looking dashboard.
18
- Vaadin Board key feature is how it effectively reorders the widgets on different screen sizes, maximizing the use of space and looking stunning.
13
+ [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-board)](https://www.npmjs.com/package/@vaadin/vaadin-board)
14
+ [![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/vaadinvaadin-board)
15
+ [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
19
16
 
20
17
  ```html
21
18
  <vaadin-board>
@@ -53,7 +50,7 @@ are only published on npm, not pushed to GitHub repositories.
53
50
 
54
51
  ### Polymer 2 and HTML Imports compatible version
55
52
 
56
- Install `vaadin-board`:
53
+ Install `vaadin-board`:
57
54
 
58
55
  ```sh
59
56
  $ bower i vaadin/vaadin-board --save
package/package.json CHANGED
@@ -13,10 +13,11 @@
13
13
  "repository": "vaadin/vaadin-board",
14
14
  "homepage": "https://vaadin.com/components",
15
15
  "name": "@vaadin/vaadin-board",
16
- "version": "2.2.0",
16
+ "version": "2.2.1",
17
17
  "main": "vaadin-board.js",
18
18
  "author": "Vaadin Ltd",
19
19
  "license": "https://raw.githubusercontent.com/vaadin/vaadin-board/master/LICENSE.txt",
20
+ "cvdlName": "vaadin-board",
20
21
  "bugs": {
21
22
  "url": "https://github.com/vaadin/vaadin-board/issues"
22
23
  },
@@ -38,10 +39,9 @@
38
39
  "@vaadin/vaadin-license-checker": "^2.1.0",
39
40
  "@vaadin/vaadin-element-mixin": "^2.4.1"
40
41
  },
41
- "scripts": {
42
- "generate-typings": "gen-typescript-declarations --outDir . --verify"
43
- },
44
42
  "devDependencies": {
43
+ "@web-padawan/gen-typescript-declarations": "^1.6.2",
44
+ "web-component-tester": "6.9.2",
45
45
  "@polymer/app-layout": "^3.0.0",
46
46
  "wct-browser-legacy": "^1.0.1",
47
47
  "@webcomponents/webcomponentsjs": "^2.0.0",
@@ -49,5 +49,9 @@
49
49
  "@polymer/iron-icon": "^3.0.0",
50
50
  "@vaadin/vaadin-lumo-styles": "^1.6.0",
51
51
  "@polymer/iron-component-page": "^4.0.0"
52
+ },
53
+ "scripts": {
54
+ "generate-typings": "gen-typescript-declarations --outDir . --verify",
55
+ "test": "wct --npm"
52
56
  }
53
57
  }
@@ -51,7 +51,11 @@ class BoardElement extends ElementMixin(mixinBehaviors([IronResizableBehavior],
51
51
  }
52
52
 
53
53
  static get version() {
54
- return '2.2.0';
54
+ return '2.2.1';
55
+ }
56
+
57
+ static get cvdlName() {
58
+ return 'vaadin-board';
55
59
  }
56
60
 
57
61
  /**