@vaadin/confirm-dialog 23.1.2 → 23.2.0-dev.48e5e3967

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/confirm-dialog",
3
- "version": "23.1.2",
3
+ "version": "23.2.0-dev.48e5e3967",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,19 +35,18 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/button": "^23.1.2",
39
- "@vaadin/component-base": "^23.1.2",
40
- "@vaadin/dialog": "^23.1.2",
41
- "@vaadin/vaadin-license-checker": "^2.1.0",
42
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
43
- "@vaadin/vaadin-material-styles": "^23.1.2",
44
- "@vaadin/vaadin-overlay": "^23.1.2",
45
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
38
+ "@vaadin/button": "23.2.0-dev.48e5e3967",
39
+ "@vaadin/component-base": "23.2.0-dev.48e5e3967",
40
+ "@vaadin/dialog": "23.2.0-dev.48e5e3967",
41
+ "@vaadin/vaadin-lumo-styles": "23.2.0-dev.48e5e3967",
42
+ "@vaadin/vaadin-material-styles": "23.2.0-dev.48e5e3967",
43
+ "@vaadin/vaadin-overlay": "23.2.0-dev.48e5e3967",
44
+ "@vaadin/vaadin-themable-mixin": "23.2.0-dev.48e5e3967"
46
45
  },
47
46
  "devDependencies": {
48
47
  "@esm-bundle/chai": "^4.3.4",
49
48
  "@vaadin/testing-helpers": "^0.3.2",
50
49
  "sinon": "^13.0.2"
51
50
  },
52
- "gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
51
+ "gitHead": "961bc4ae5b707c3c02f12b99819b3c12c9b478aa"
53
52
  }
@@ -3,7 +3,6 @@
3
3
  * Copyright (c) 2018 - 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-confirm-dialog-overlay.js';
8
7
  import { FlattenedNodesObserver } from '@polymer/polymer/lib/utils/flattened-nodes-observer.js';
9
8
  import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
@@ -271,18 +270,6 @@ class ConfirmDialog extends SlotMixin(ElementMixin(ThemePropertyMixin(PolymerEle
271
270
  };
272
271
  }
273
272
 
274
- /** @protected */
275
- static _finalizeClass() {
276
- super._finalizeClass();
277
-
278
- const devModeCallback = window.Vaadin.developmentModeCallback;
279
- const licenseChecker = devModeCallback && devModeCallback['vaadin-license-checker'];
280
- /* c8 ignore next 3 */
281
- if (typeof licenseChecker === 'function') {
282
- licenseChecker(ConfirmDialog);
283
- }
284
- }
285
-
286
273
  static get observers() {
287
274
  return [
288
275
  '__updateConfirmButton(_confirmButton, confirmText, confirmTheme)',