@vaadin/vaadin-material-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 +13 -13
- package/mixins/input-field-shared.js +1 -1
- package/package.json +3 -3
- package/version.js +1 -1
package/gulpfile.js
CHANGED
|
@@ -34,23 +34,23 @@ gulp.task('icons', async function () {
|
|
|
34
34
|
svgmin({
|
|
35
35
|
plugins: [
|
|
36
36
|
{
|
|
37
|
-
removeTitle: true
|
|
37
|
+
removeTitle: true,
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
removeViewBox: false
|
|
40
|
+
removeViewBox: false,
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
43
|
cleanupNumericValues: {
|
|
44
|
-
floatPrecision: 6
|
|
45
|
-
}
|
|
44
|
+
floatPrecision: 6,
|
|
45
|
+
},
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
convertPathData: {
|
|
49
|
-
floatPrecision: 6
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
]
|
|
53
|
-
})
|
|
49
|
+
floatPrecision: 6,
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
}),
|
|
54
54
|
)
|
|
55
55
|
.pipe(gulp.dest(folder))
|
|
56
56
|
.on('finish', function () {
|
|
@@ -61,8 +61,8 @@ gulp.task('icons', async function () {
|
|
|
61
61
|
sort({
|
|
62
62
|
comparator: function (file1, file2) {
|
|
63
63
|
return sortIconFilesNormalized(file1.relative, file2.relative);
|
|
64
|
-
}
|
|
65
|
-
})
|
|
64
|
+
},
|
|
65
|
+
}),
|
|
66
66
|
)
|
|
67
67
|
.pipe(
|
|
68
68
|
iconfont({
|
|
@@ -71,8 +71,8 @@ gulp.task('icons', async function () {
|
|
|
71
71
|
fontHeight: 2400,
|
|
72
72
|
descent: 400,
|
|
73
73
|
normalize: true,
|
|
74
|
-
timestamp: 1 // Truthy!
|
|
75
|
-
})
|
|
74
|
+
timestamp: 1, // Truthy!
|
|
75
|
+
}),
|
|
76
76
|
)
|
|
77
77
|
.on('glyphs', function (glyphData) {
|
|
78
78
|
// Store for later use
|
|
@@ -189,7 +189,7 @@ const inputField = css`
|
|
|
189
189
|
const inputFieldShared = [requiredField, fieldButton, helper, inputField];
|
|
190
190
|
|
|
191
191
|
registerStyles('', inputFieldShared, {
|
|
192
|
-
moduleId: 'material-input-field-shared-styles'
|
|
192
|
+
moduleId: 'material-input-field-shared-styles',
|
|
193
193
|
});
|
|
194
194
|
|
|
195
195
|
export { inputField, inputFieldShared };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-material-styles",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "^22.0.
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "^22.0.16"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"gulp": "^4.0.2",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"gulp-sort": "^2.0.0",
|
|
48
48
|
"gulp-svgmin": "^4.1.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "dac6f243594ea700bb796d3b41d7b17736d90be8"
|
|
51
51
|
}
|