@vaadin/vaadin-material-styles 24.2.0-dev.f254716fe → 24.3.0-alpha2

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.
Files changed (2) hide show
  1. package/package.json +4 -3
  2. package/version.js +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-material-styles",
3
- "version": "24.2.0-dev.f254716fe",
3
+ "version": "24.3.0-alpha2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,7 +39,8 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "@polymer/polymer": "^3.0.0",
42
- "@vaadin/vaadin-themable-mixin": "24.2.0-dev.f254716fe"
42
+ "@vaadin/component-base": "24.3.0-alpha2",
43
+ "@vaadin/vaadin-themable-mixin": "24.3.0-alpha2"
43
44
  },
44
45
  "devDependencies": {
45
46
  "gulp": "^4.0.2",
@@ -48,5 +49,5 @@
48
49
  "gulp-sort": "^2.0.0",
49
50
  "gulp-svgmin": "^4.1.0"
50
51
  },
51
- "gitHead": "da54950b9f8c14c6451ede0d426e16a489c7fb9b"
52
+ "gitHead": "0fd437292fa2a2f65e29b424d2456909ad2d684b"
52
53
  }
package/version.js CHANGED
@@ -3,6 +3,7 @@
3
3
  * Copyright (c) 2017 - 2023 Vaadin Ltd.
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
+ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
6
7
 
7
8
  /**
8
9
  * Dummy custom element used for collecting
@@ -11,11 +12,11 @@
11
12
  * @private
12
13
  */
13
14
  class Material extends HTMLElement {
14
- static get version() {
15
- return '24.2.0-alpha5';
15
+ static get is() {
16
+ return 'vaadin-material-styles';
16
17
  }
17
18
  }
18
19
 
19
- customElements.define('vaadin-material-styles', Material);
20
+ defineCustomElement(Material);
20
21
 
21
22
  export { Material };