@vaadin/vaadin-material-styles 22.0.2 → 22.0.3
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/all-imports.js +1 -1
- package/color.js +3 -5
- package/font-icons.js +1 -1
- package/gulpfile.js +1 -1
- package/mixins/field-button.js +1 -1
- package/mixins/helper.d.ts +1 -1
- package/mixins/helper.js +1 -1
- package/mixins/input-field-shared.js +1 -1
- package/mixins/menu-overlay.js +1 -1
- package/mixins/overlay.js +1 -1
- package/mixins/required-field.js +1 -1
- package/package.json +3 -3
- package/shadow.js +1 -1
- package/typography.js +1 -1
- package/version.js +2 -2
package/all-imports.js
CHANGED
package/color.js
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import './version.js';
|
|
7
7
|
import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
|
|
8
8
|
|
|
9
9
|
const colorLight = css`
|
|
10
|
-
:host
|
|
11
|
-
#host-fix {
|
|
10
|
+
:host {
|
|
12
11
|
/* Text colors */
|
|
13
12
|
--material-body-text-color: var(--light-theme-text-color, rgba(0, 0, 0, 0.87));
|
|
14
13
|
--material-secondary-text-color: var(--light-theme-secondary-color, rgba(0, 0, 0, 0.54));
|
|
@@ -106,8 +105,7 @@ const colorLight = css`
|
|
|
106
105
|
registerStyles('', colorLight, { moduleId: 'material-color-light' });
|
|
107
106
|
|
|
108
107
|
const colorDark = css`
|
|
109
|
-
:host
|
|
110
|
-
#host-fix {
|
|
108
|
+
:host {
|
|
111
109
|
/* Text colors */
|
|
112
110
|
--material-body-text-color: var(--dark-theme-text-color, rgba(255, 255, 255, 1));
|
|
113
111
|
--material-secondary-text-color: var(--dark-theme-secondary-color, rgba(255, 255, 255, 0.7));
|
package/font-icons.js
CHANGED
package/gulpfile.js
CHANGED
|
@@ -85,7 +85,7 @@ gulp.task('icons', async function () {
|
|
|
85
85
|
// Write the output to font-icons.js
|
|
86
86
|
let output = `/**
|
|
87
87
|
* @license
|
|
88
|
-
* Copyright (c)
|
|
88
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
89
89
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
90
90
|
*/
|
|
91
91
|
import './version.js';
|
package/mixins/field-button.js
CHANGED
package/mixins/helper.d.ts
CHANGED
package/mixins/helper.js
CHANGED
package/mixins/menu-overlay.js
CHANGED
package/mixins/overlay.js
CHANGED
package/mixins/required-field.js
CHANGED
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.3",
|
|
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.3"
|
|
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": "935ad1ea65a79b0f9ecb10d767689479b36c4e07"
|
|
51
51
|
}
|
package/shadow.js
CHANGED
package/typography.js
CHANGED
package/version.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
class Material extends HTMLElement {
|
|
7
7
|
static get version() {
|
|
8
|
-
return '22.0.
|
|
8
|
+
return '22.0.3';
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
|