@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 +14 -15
- package/package.json +4 -4
- package/src/vaadin-board-row.js +5 -5
- package/src/vaadin-board.d.ts +0 -2
- package/src/vaadin-board.js +4 -4
package/README.md
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @vaadin/board
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
|
5
|
-
[API documentation ↗](https://vaadin.com/components/vaadin-board/html-api)
|
|
3
|
+
A powerful and easy to use layout web component for building responsive views.
|
|
6
4
|
|
|
7
|
-
[
|
|
8
|
-
Vaadin Board key feature is how it effectively reorders the widgets on different screen sizes, maximizing the use of space and looking stunning.
|
|
5
|
+
> ℹ️ A commercial Vaadin [subscription](https://vaadin.com/pricing) is required to use Board in your project.
|
|
9
6
|
|
|
10
|
-
[
|
|
11
|
-
|
|
7
|
+
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/board)
|
|
8
|
+
|
|
9
|
+
[](https://www.npmjs.com/package/@vaadin/board)
|
|
12
10
|
[](https://discord.gg/PHmkCKC)
|
|
13
11
|
|
|
14
12
|
```html
|
|
@@ -33,20 +31,20 @@ Vaadin Board key feature is how it effectively reorders the widgets on different
|
|
|
33
31
|
</vaadin-board>
|
|
34
32
|
```
|
|
35
33
|
|
|
36
|
-
[<img src="https://raw.githubusercontent.com/vaadin/
|
|
34
|
+
[<img src="https://raw.githubusercontent.com/vaadin/web-components/master/packages/board/screenshot.png" alt="Screenshot of vaadin-board">](https://vaadin.com/docs/latest/ds/components/board)
|
|
37
35
|
|
|
38
36
|
## Installation
|
|
39
37
|
|
|
40
|
-
Install
|
|
38
|
+
Install the component:
|
|
41
39
|
|
|
42
40
|
```sh
|
|
43
|
-
npm i @vaadin/board
|
|
41
|
+
npm i @vaadin/board
|
|
44
42
|
```
|
|
45
43
|
|
|
46
|
-
Once installed, import
|
|
44
|
+
Once installed, import the component in your application:
|
|
47
45
|
|
|
48
46
|
```js
|
|
49
|
-
import '@vaadin/board
|
|
47
|
+
import '@vaadin/board';
|
|
50
48
|
```
|
|
51
49
|
|
|
52
50
|
## Contributing
|
|
@@ -55,6 +53,7 @@ Read the [contributing guide](https://vaadin.com/docs/latest/guide/contributing/
|
|
|
55
53
|
|
|
56
54
|
## License
|
|
57
55
|
|
|
58
|
-
|
|
56
|
+
Commercial Vaadin Developer License 4.0 (CVDLv4). For license terms, see LICENSE.txt.
|
|
59
57
|
|
|
60
|
-
Vaadin collects development time
|
|
58
|
+
Vaadin collects usage statistics at development time to improve this product.
|
|
59
|
+
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/board",
|
|
3
|
-
"version": "22.0.0
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/iron-resizable-behavior": "^3.0.0",
|
|
39
39
|
"@polymer/polymer": "^3.0.0",
|
|
40
|
-
"@vaadin/component-base": "22.0.0
|
|
40
|
+
"@vaadin/component-base": "^22.0.0",
|
|
41
41
|
"@vaadin/vaadin-license-checker": "^2.1.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
45
|
-
"@vaadin/testing-helpers": "^0.3.
|
|
45
|
+
"@vaadin/testing-helpers": "^0.3.2",
|
|
46
46
|
"sinon": "^9.2.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "b668e9b1a975227fbe34beb70d1cd5b03dce2348"
|
|
49
49
|
}
|
package/src/vaadin-board-row.js
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
* Copyright (c) 2017 - 2021 Vaadin Ltd
|
|
4
4
|
* This program is available under Commercial Vaadin Developer License 4.0, available at https://vaadin.com/license/cvdl-4.0.
|
|
5
5
|
*/
|
|
6
|
-
import { PolymerElement, html } from '@polymer/polymer/polymer-element.js';
|
|
7
|
-
import { afterNextRender } from '@polymer/polymer/lib/utils/render-status.js';
|
|
8
|
-
import { mixinBehaviors } from '@polymer/polymer/lib/legacy/class.js';
|
|
9
|
-
import { DomRepeat } from '@polymer/polymer/lib/elements/dom-repeat.js';
|
|
10
|
-
import { DomIf } from '@polymer/polymer/lib/elements/dom-if.js';
|
|
11
6
|
import { IronResizableBehavior } from '@polymer/iron-resizable-behavior/iron-resizable-behavior.js';
|
|
7
|
+
import { DomIf } from '@polymer/polymer/lib/elements/dom-if.js';
|
|
8
|
+
import { DomRepeat } from '@polymer/polymer/lib/elements/dom-repeat.js';
|
|
9
|
+
import { mixinBehaviors } from '@polymer/polymer/lib/legacy/class.js';
|
|
10
|
+
import { afterNextRender } from '@polymer/polymer/lib/utils/render-status.js';
|
|
11
|
+
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
12
12
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
13
13
|
|
|
14
14
|
const CLASSES = {
|
package/src/vaadin-board.d.ts
CHANGED
package/src/vaadin-board.js
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
* Copyright (c) 2017 - 2021 Vaadin Ltd
|
|
4
4
|
* This program is available under Commercial Vaadin Developer License 4.0, available at https://vaadin.com/license/cvdl-4.0.
|
|
5
5
|
*/
|
|
6
|
-
import { PolymerElement, html } from '@polymer/polymer/polymer-element.js';
|
|
7
|
-
import { mixinBehaviors } from '@polymer/polymer/lib/legacy/class.js';
|
|
8
|
-
import { IronResizableBehavior } from '@polymer/iron-resizable-behavior/iron-resizable-behavior.js';
|
|
9
|
-
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
10
6
|
import '@vaadin/vaadin-license-checker/vaadin-license-checker.js';
|
|
11
7
|
import './vaadin-board-row.js';
|
|
8
|
+
import { IronResizableBehavior } from '@polymer/iron-resizable-behavior/iron-resizable-behavior.js';
|
|
9
|
+
import { mixinBehaviors } from '@polymer/polymer/lib/legacy/class.js';
|
|
10
|
+
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
11
|
+
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* `<vaadin-board>` is a web component to create flexible responsive layouts
|