@vaadin/board 23.2.0-alpha2 → 23.2.0-alpha3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/board",
3
- "version": "23.2.0-alpha2",
3
+ "version": "23.2.0-alpha3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,13 +38,12 @@
38
38
  ],
39
39
  "dependencies": {
40
40
  "@polymer/polymer": "^3.0.0",
41
- "@vaadin/component-base": "23.2.0-alpha2",
42
- "@vaadin/vaadin-license-checker": "^2.1.0"
41
+ "@vaadin/component-base": "23.2.0-alpha3"
43
42
  },
44
43
  "devDependencies": {
45
44
  "@esm-bundle/chai": "^4.3.4",
46
45
  "@vaadin/testing-helpers": "^0.3.2",
47
46
  "sinon": "^13.0.2"
48
47
  },
49
- "gitHead": "c9b8113d0fa9a602f8b9cb915c1826355af2e8df"
48
+ "gitHead": "06e5875be93ca50da2846dafc65a8531010c0576"
50
49
  }
@@ -3,7 +3,6 @@
3
3
  * Copyright (c) 2017 - 2022 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 '@vaadin/vaadin-license-checker/vaadin-license-checker.js';
7
6
  import './vaadin-board-row.js';
8
7
  import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
9
8
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
@@ -51,20 +50,6 @@ class Board extends ElementMixin(PolymerElement) {
51
50
  return 'vaadin-board';
52
51
  }
53
52
 
54
- /**
55
- * @protected
56
- */
57
- static _finalizeClass() {
58
- super._finalizeClass();
59
-
60
- const devModeCallback = window.Vaadin.developmentModeCallback;
61
- const licenseChecker = devModeCallback && devModeCallback['vaadin-license-checker'];
62
- /* c8 ignore next 3 */
63
- if (typeof licenseChecker === 'function') {
64
- licenseChecker(Board);
65
- }
66
- }
67
-
68
53
  /**
69
54
  * Redraws the board and all rows inside it, if necessary.
70
55
  *