@vaadin/input-container 23.3.3 → 24.0.0-alpha10
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/input-container",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "24.0.0-alpha10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "
|
|
36
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
37
|
-
"@vaadin/vaadin-material-styles": "
|
|
38
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
35
|
+
"@vaadin/component-base": "24.0.0-alpha10",
|
|
36
|
+
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha10",
|
|
37
|
+
"@vaadin/vaadin-material-styles": "24.0.0-alpha10",
|
|
38
|
+
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha10"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@esm-bundle/chai": "^4.3.4",
|
|
42
|
-
"@vaadin/icon": "
|
|
43
|
-
"@vaadin/icons": "
|
|
42
|
+
"@vaadin/icon": "24.0.0-alpha10",
|
|
43
|
+
"@vaadin/icons": "24.0.0-alpha10",
|
|
44
44
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
45
45
|
"sinon": "^13.0.2"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "2e04534d8b47bcd216f89b5f849bafef1a73b174"
|
|
48
48
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2023 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 { html, PolymerElement } from '@polymer/polymer';
|
|
@@ -76,7 +76,6 @@ registerStyles(
|
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
/* Slotted icons */
|
|
79
|
-
::slotted(iron-icon),
|
|
80
79
|
::slotted(vaadin-icon) {
|
|
81
80
|
color: var(--lumo-contrast-60pct);
|
|
82
81
|
width: var(--lumo-icon-size-m);
|
|
@@ -84,7 +83,6 @@ registerStyles(
|
|
|
84
83
|
}
|
|
85
84
|
|
|
86
85
|
/* Vaadin icons are based on a 16x16 grid (unlike Lumo and Material icons with 24x24), so they look too big by default */
|
|
87
|
-
::slotted(iron-icon[icon^='vaadin:']),
|
|
88
86
|
::slotted(vaadin-icon[icon^='vaadin:']) {
|
|
89
87
|
padding: 0.25em;
|
|
90
88
|
box-sizing: border-box !important;
|