@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.
- package/README.md +13 -52
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,53 +1,13 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
[
|
|
11
|
-
[](https://vaadin.com/directory/component/vaadinvaadin-board)
|
|
12
|
-
[](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
|
+
> ⚠️ 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
|
+
> ℹ️ 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
|
-
|
|
18
|
+
Commercial Vaadin Developer License 4.0 (CVDLv4). For license terms, see LICENSE.txt.
|
|
59
19
|
|
|
60
|
-
Vaadin collects development time
|
|
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
|
|
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
|
|
38
|
+
"@vaadin/board": "^22.0.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "b668e9b1a975227fbe34beb70d1cd5b03dce2348"
|
|
41
41
|
}
|