@vaadin/vaadin-lumo-styles 22.0.13 → 22.0.16

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
@@ -70,23 +70,23 @@ gulp.task('icons', async function () {
70
70
  svgmin({
71
71
  plugins: [
72
72
  {
73
- removeTitle: true
73
+ removeTitle: true,
74
74
  },
75
75
  {
76
- removeViewBox: false
76
+ removeViewBox: false,
77
77
  },
78
78
  {
79
79
  cleanupNumericValues: {
80
- floatPrecision: 6
81
- }
80
+ floatPrecision: 6,
81
+ },
82
82
  },
83
83
  {
84
84
  convertPathData: {
85
- floatPrecision: 6
86
- }
87
- }
88
- ]
89
- })
85
+ floatPrecision: 6,
86
+ },
87
+ },
88
+ ],
89
+ }),
90
90
  )
91
91
  .pipe(gulp.dest(folder))
92
92
  .on('finish', function () {
@@ -139,8 +139,8 @@ ${createIconset(folder, filenames, 'lumo:')}
139
139
  sort({
140
140
  comparator: function (file1, file2) {
141
141
  return sortIconFilesNormalized(file1.relative, file2.relative);
142
- }
143
- })
142
+ },
143
+ }),
144
144
  )
145
145
  .pipe(
146
146
  iconfont({
@@ -151,8 +151,8 @@ ${createIconset(folder, filenames, 'lumo:')}
151
151
  descent: 150,
152
152
  fixedWidth: true,
153
153
  normalize: true,
154
- timestamp: 1 // Truthy!
155
- })
154
+ timestamp: 1, // Truthy!
155
+ }),
156
156
  )
157
157
  .on('glyphs', function (glyphData) {
158
158
  // Store for later use
@@ -143,7 +143,7 @@ const inputField = css`
143
143
  const inputFieldShared = [requiredField, fieldButton, helper, inputField];
144
144
 
145
145
  registerStyles('', inputFieldShared, {
146
- moduleId: 'lumo-input-field-shared-styles'
146
+ moduleId: 'lumo-input-field-shared-styles',
147
147
  });
148
148
 
149
149
  export { inputField, inputFieldShared };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-lumo-styles",
3
- "version": "22.0.13",
3
+ "version": "22.0.16",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -41,8 +41,8 @@
41
41
  "@polymer/iron-icon": "^3.0.0",
42
42
  "@polymer/iron-iconset-svg": "^3.0.0",
43
43
  "@polymer/polymer": "^3.0.0",
44
- "@vaadin/icon": "^22.0.13",
45
- "@vaadin/vaadin-themable-mixin": "^22.0.13"
44
+ "@vaadin/icon": "^22.0.16",
45
+ "@vaadin/vaadin-themable-mixin": "^22.0.16"
46
46
  },
47
47
  "devDependencies": {
48
48
  "gulp": "^4.0.2",
@@ -51,5 +51,5 @@
51
51
  "gulp-sort": "^2.0.0",
52
52
  "gulp-svgmin": "^4.1.0"
53
53
  },
54
- "gitHead": "0ef3a237a2db4255710aa878debb169eb52a1715"
54
+ "gitHead": "dac6f243594ea700bb796d3b41d7b17736d90be8"
55
55
  }
package/version.js CHANGED
@@ -5,7 +5,7 @@
5
5
  */
6
6
  class Lumo extends HTMLElement {
7
7
  static get version() {
8
- return '22.0.13';
8
+ return '22.0.16';
9
9
  }
10
10
  }
11
11