@vaadin/vaadin-board 22.0.0-alpha9 → 22.0.0

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.
Files changed (2) hide show
  1. package/README.md +13 -52
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,53 +1,13 @@
1
- # <vaadin-board>
2
-
3
- [Live Demo ↗](https://vaadin.com/components/vaadin-board/html-examples)
4
- |
5
- [API documentation ↗](https://vaadin.com/components/vaadin-board/html-api)
6
-
7
- [<vaadin-board>](https://vaadin.com/components/vaadin-board) is a Web component to create flexible responsive layouts and build nice looking dashboard.
8
- Vaadin Board key feature is how it effectively reorders the widgets on different screen sizes, maximizing the use of space and looking stunning.
9
-
10
- [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-board)](https://www.npmjs.com/package/@vaadin/vaadin-board)
11
- [![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/vaadinvaadin-board)
12
- [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
13
-
14
- ```html
15
- <vaadin-board>
16
- <vaadin-board-row>
17
- <div class="top a" board-cols="2">top A</div>
18
- <div class="top b">top B</div>
19
- <div class="top c">top C</div>
20
- </vaadin-board-row>
21
- <vaadin-board-row>
22
- <div class="mid">mid</div>
23
- </vaadin-board-row>
24
- <vaadin-board-row>
25
- <div class="low a">low A</div>
26
- <vaadin-board-row>
27
- <div class="top a">low B / A</div>
28
- <div class="top b">low B / B</div>
29
- <div class="top c">low B / C</div>
30
- <div class="top d">low B / D</div>
31
- </vaadin-board-row>
32
- </vaadin-board-row>
33
- </vaadin-board>
34
- ```
35
-
36
- [<img src="https://raw.githubusercontent.com/vaadin/vaadin-board/master/screenshot.png" alt="Screenshot of vaadin-board">](https://vaadin.com/components/vaadin-board)
37
-
38
- ## Installation
39
-
40
- Install `vaadin-board`:
41
-
42
- ```sh
43
- npm i @vaadin/vaadin-board --save
44
- ```
45
-
46
- Once installed, import it in your application:
47
-
48
- ```js
49
- import '@vaadin/vaadin-board/vaadin-board.js';
50
- ```
1
+ # @vaadin/vaadin-board
2
+
3
+ > ⚠️&nbsp; Starting from Vaadin 22, this package is deprecated.
4
+ > Please use [`@vaadin/board`](https://www.npmjs.com/package/@vaadin/board) instead.
5
+
6
+ A powerful and easy to use layout web component for building responsive views.
7
+
8
+ > ℹ️&nbsp; A commercial Vaadin [subscription](https://vaadin.com/pricing) is required to use Board in your project.
9
+
10
+ [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/board)
51
11
 
52
12
  ## Contributing
53
13
 
@@ -55,6 +15,7 @@ Read the [contributing guide](https://vaadin.com/docs/latest/guide/contributing/
55
15
 
56
16
  ## License
57
17
 
58
- Vaadin Board is distributed under [Commercial Vaadin Developer License 4.0](https://vaadin.com/license/cvdl-4.0) (CVDLv4). For license terms, see LICENSE.txt.
18
+ Commercial Vaadin Developer License 4.0 (CVDLv4). For license terms, see LICENSE.txt.
59
19
 
60
- Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
20
+ Vaadin collects usage statistics at development time to improve this product..
21
+ For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-board",
3
- "version": "22.0.0-alpha9",
3
+ "version": "22.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,7 +35,7 @@
35
35
  "polymer"
36
36
  ],
37
37
  "dependencies": {
38
- "@vaadin/board": "22.0.0-alpha9"
38
+ "@vaadin/board": "^22.0.0"
39
39
  },
40
- "gitHead": "6e8c899dc65918f97e3c0acb2076122c4b2ef274"
40
+ "gitHead": "b668e9b1a975227fbe34beb70d1cd5b03dce2348"
41
41
  }