@vaadin/board 22.0.0-beta1 → 22.0.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,14 +1,12 @@
1
- # <vaadin-board>
1
+ # @vaadin/board
2
2
 
3
- [Live Demo ↗](https://vaadin.com/components/vaadin-board/html-examples)
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
- [<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.
5
+ > ℹ️  A commercial Vaadin [subscription](https://vaadin.com/pricing) is required to use Board in your project.
9
6
 
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)
7
+ [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/board)
8
+
9
+ [![npm version](https://badgen.net/npm/v/@vaadin/board)](https://www.npmjs.com/package/@vaadin/board)
12
10
  [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](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/vaadin-board/master/screenshot.png" alt="Screenshot of vaadin-board">](https://vaadin.com/components/vaadin-board)
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 `vaadin-board`:
38
+ Install the component:
41
39
 
42
40
  ```sh
43
- npm i @vaadin/board --save
41
+ npm i @vaadin/board
44
42
  ```
45
43
 
46
- Once installed, import it in your application:
44
+ Once installed, import the component in your application:
47
45
 
48
46
  ```js
49
- import '@vaadin/board/vaadin-board.js';
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
- 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.
56
+ Commercial Vaadin Developer License 4.0 (CVDLv4). For license terms, see LICENSE.txt.
59
57
 
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.
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-beta1",
3
+ "version": "22.0.1",
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-beta1",
40
+ "@vaadin/component-base": "^22.0.1",
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.0",
45
+ "@vaadin/testing-helpers": "^0.3.2",
46
46
  "sinon": "^9.2.1"
47
47
  },
48
- "gitHead": "4cf8a9d0504994200c610e44b3676114fef49c1e"
48
+ "gitHead": "2b0a2bff0369d6020f7cc33ad35506aa2d1f6f68"
49
49
  }
@@ -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 = {
@@ -25,8 +25,6 @@ import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
25
25
  * ```
26
26
  */
27
27
  declare class Board extends ElementMixin(HTMLElement) {
28
- static _finalizeClass(): void;
29
-
30
28
  /**
31
29
  * Redraws the board and all rows inside it, if necessary.
32
30
  *
@@ -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