@vaadin/vaadin-material-styles 23.1.0-alpha4 → 23.1.0-beta3

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/gulpfile.js CHANGED
@@ -54,12 +54,12 @@ gulp.task('icons', async () => {
54
54
  )
55
55
  .pipe(gulp.dest(folder))
56
56
  .on('finish', () => {
57
- // icon font
57
+ // Icon font
58
58
  gulp
59
59
  .src(`${folder}*.svg`)
60
60
  .pipe(
61
61
  sort({
62
- comparator: function (file1, file2) {
62
+ comparator(file1, file2) {
63
63
  return sortIconFilesNormalized(file1.relative, file2.relative);
64
64
  },
65
65
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-material-styles",
3
- "version": "23.1.0-alpha4",
3
+ "version": "23.1.0-beta3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,7 +39,7 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "@polymer/polymer": "^3.0.0",
42
- "@vaadin/vaadin-themable-mixin": "23.1.0-alpha4"
42
+ "@vaadin/vaadin-themable-mixin": "23.1.0-beta3"
43
43
  },
44
44
  "devDependencies": {
45
45
  "gulp": "^4.0.2",
@@ -48,5 +48,5 @@
48
48
  "gulp-sort": "^2.0.0",
49
49
  "gulp-svgmin": "^4.1.0"
50
50
  },
51
- "gitHead": "aacdb7fe09811894751f0378ff7fb66071892c71"
51
+ "gitHead": "c787ceb8a312f88631c6d429ff320d5f89b1b838"
52
52
  }
package/version.js CHANGED
@@ -5,7 +5,7 @@
5
5
  */
6
6
  class Material extends HTMLElement {
7
7
  static get version() {
8
- return '23.1.0-alpha4';
8
+ return '23.1.0-beta3';
9
9
  }
10
10
  }
11
11